In Portal , iView of type WebService Not working.

hi all ,
I am working on O4s SP7,
I am trying an example where i want to access a web service using EP.
i have made the proxy settings that are required..
In system configuration , under Visual Composer i created a new Model from System Template of type Web Serice and gave the below url
<a href="http://www.webservicex.net/ConvertTemperature.asmx?WSDL">http://www.webservicex.net/ConvertTemperature.asmx?WSDL</a>
I gave User Mapping Type as admin,user.
then when i test it it says,
Retrieval of default alias successful
<b>Connection failed. Make sure user mapping is set correctly and all connection properties are correct.</b>
Can anyone tell me what might be the reason ?
i ignored it and gave that system an alias.
Then i went to Content development and under VC created a new Model of type Iview, again web service one ,gave some name, used the system alias as  described  above , and when i clicked next ,
it says <b>"Could not connect to back-end application. Check your system. The server may be down or there may be an error in a system parameter."</b>
Has any one faced this problem earlier ?

moved a little forward, created a system as follows.
System Administration, syste configuration , Visual composer, models and created a new system from template of type Web Service System using WSDL URL.
i used the followig URL
<a href="http://www.webservicex.net/ConvertTemperature.asmx?WSDL">http://www.webservicex.net/ConvertTemperature.asmx?WSDL</a>
However whn i test it it says....
Retrieval of default alias successful
<b>Connection failed. Make sure user mapping is set correctly and all connection properties are correct.</b>
what does this mean..
i ignored it and continued with creation of my iView and used this system Alias , <b>however these too it says
"Could not connect to back-end application. Check your system. The server may be down or there may be an error in a system parameter "</b>
what might be the reason..
<b>my aim is to call a web service using this iview</b>
please also let me know if i am moving in right direction

Similar Messages

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Standard Leave iView of ESS does not work... What to do?

    Hi Experts,
    We are implementing ESS / MSS. Most of the iViews of ESS are working fine. However, iView of Leave Request is not working.
    1) Is it possible that during the portal installation due to some error, some of the components needed for Leave Request has not got installed properly.
    2) If yes, can we take the dump / par / WD file of other SAP EP system and import it in my portal.
    3) If no, what is the remedy for the solution.
    Please suggest. I am getting following message while running application in web dynpro content administration :
    An object with ID portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.ess.employee_self_service/com.sap.pct.erp.srvconfig.lea/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.LeaveRequest does not exist.
    Regards,
    Gary

    Hi Pinki,
    Case 1:
    From content admin --> portal content > Content Provided by SAp>End User Content > Employee Self-service> Iviews--> working time I am getting following error message:
    iView : The initial exception that caused the request to fail, was:
       com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name base
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.createAttrSetLayersList(AdminBaseiView.java:357)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getAttrSetLayersList(AdminBaseiView.java:205)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getCustomImplementation(AdminBaseiView.java:148)
        at com.sap.portal.pcm.admin.PcmAdminBase.getImplementation(PcmAdminBase.java:530)
        at com.sapportals.portal.ivs.iviews.IviewServiceObjectFactory.getObjectInstance(IviewServiceObjectFactory.java:442)
        ... 40 more
    Case 2:
    From Content Admin> Webdynpro> Deployed content (int he left side panel) >sap.com> sap.com/ess~lea I am getting following error message:
    An object with ID portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.ess.employee_self_service/com.sap.pct.erp.srvconfig.lea/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.LeaveRequest does not exist.:
    com.sap.xss.config.FPMInconsistentObjectException: An object with ID portal_content/com.sap.pct/srvconfig/com.sap.pct.erp.srvconfig.ess.employee_self_service/com.sap.pct.erp.srvconfig.lea/com.sap.pct.erp.srvconfig.fpmapplications/com.sap.pct.erp.srvconfig.LeaveRequest does not exist.
    Thanks
    Gary
         at com.sap.xss.config.pcd.PcdObjectBroker.retrieveObjectInternal(PcdObjectBroker.java:90)
         at com.sap.xss.config.pcd.PcdObjectBroker.retrieveObject(PcdObjectBroker.java:47)
         at com.sap.xss.config.domain.PersistentObjectManager.retrieveObjectInternal(PersistentObjectManager.java:106)
         at com.sap.xss.config.domain.PersistentObjectManager.retrieveObject(PersistentObjectManager.java:80)
         at com.sap.xss.config.FPMRepository.retrieveObjectInternal(FPMRepository.java:83)
         at com.sap.xss.config.FPMRepository.retrieveObject(FPMRepository.java:66)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcd.initializeConfiguration(FcXssPcd.java:816)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcd.loadConfiguration(FcXssPcd.java:250)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcd.loadConfiguration(InternalFcXssPcd.java:178)
         at com.sap.pcuigp.xssutils.ccpcd.FcXssPcdInterface.loadConfiguration(FcXssPcdInterface.java:138)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcdInterface.loadConfiguration(InternalFcXssPcdInterface.java:148)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalFcXssPcdInterface$External.loadConfiguration(InternalFcXssPcdInterface.java:240)
         at com.sap.pcuigp.xssutils.ccpcd.CcXssPcd.loadConfiguration(CcXssPcd.java:282)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcd.loadConfiguration(InternalCcXssPcd.java:184)
         at com.sap.pcuigp.xssutils.ccpcd.CcXssPcdInterface.loadConfiguration(CcXssPcdInterface.java:115)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcdInterface.loadConfiguration(InternalCcXssPcdInterface.java:124)
         at com.sap.pcuigp.xssutils.ccpcd.wdp.InternalCcXssPcdInterface$External.loadConfiguration(InternalCcXssPcdInterface.java:184)
         at com.sap.xss.essservices.cc.ccesspcd.CcEssPcd.loadConfiguration(CcEssPcd.java:268)
         at com.sap.xss.essservices.cc.ccesspcd.wdp.InternalCcEssPcd.loadConfiguration(InternalCcEssPcd.java:169)
         at com.sap.xss.essservices.cc.ccesspcd.CcEssPcdInterface.loadConfiguration(CcEssPcdInterface.java:115)
         at com.sap.xss.essservices.cc.ccesspcd.wdp.InternalCcEssPcdInterface.loadConfiguration(InternalCcEssPcdInterface.java:124)
         at com.sap.xss.essservices.cc.ccesspcd.wdp.InternalCcEssPcdInterface$External.loadConfiguration(InternalCcEssPcdInterface.java:202)
         at com.sap.pcuigp.xssutils.ccxss.CcXss.loadConfiguration(CcXss.java:209)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXss.loadConfiguration(InternalCcXss.java:153)
         at com.sap.pcuigp.xssutils.ccxss.CcXssInterface.loadConfiguration(CcXssInterface.java:112)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXssInterface.loadConfiguration(InternalCcXssInterface.java:124)
         at com.sap.pcuigp.xssutils.ccxss.wdp.InternalCcXssInterface$External.loadConfiguration(InternalCcXssInterface.java:184)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:187)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)

  • Customer Support Portal to report problems is not working

    The Customer Support Portal at: https://www.adobe.com/cfusion/support/index.cfm?event=portal&loc=en_us
    Is not working.
    I called into installation help.  The person said he could not help me and I needed to report the problem through the Customer Support Portal.
    When I go there I sign in.
    I select Installation Help
    I select Your Products
    A drop down box appears
    It says Select Your Product.
    The problem is it doesn't show any products to select.
    Thanks,
    Docfxit
    PS:  How can I report an installation problem to the developers?

    Hi Docfxit
    What product are you trying to install? Acrobat? Reader? PhotoShop? LiveCycle........? Are you an enterprise customer?
    If you are an enterprise customer you should have been given an email address for support
    If not you can always post the questrion on the forums and we'll try to help from there.
    This forum is for the online service hosted at Acrobat.com
    The forum for the desktop application Adobe Acrobat (Standard / Pro / Pro Extended) is http://forums.adobe.com/community/acrobat
    Tai

  • New WebService not working

    I have a WebService defined in the mxml (see below). I want
    the <mx:request> to be dynamic (based on user input); the
    request gets its text from an AS TextInput control. However, it
    does not work. Any idea what I might be missing? If I hardcode the
    TextInput text to be 'System-1', it works OK.
    <mx:WebService id="requestStatus_ws"
    wsdl="..../process/GeneralStatusProcessWS?wsdl"
    fault="requestStatus_fault(event);"
    <mx:operation name="GeneralStatusProcessWS"
    resultFormat="e4x" result="requestStatus_complete(event);">
    <mx:request format="xml"
    xmlns:xs="http//www.w3.org/2001/XMLSchema" xmlns="">
    <rootSys>
    <systemId>{requestStatus_input.text}</systemId>
    </rootSys>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:TextInput id="requestStatus_input" text="Input
    Request Here"/>
    Also, since the above was not working, I tried to manually
    build the new WebService (see below). How can I define the
    'request' info within the ActionScript, where 'request' contains
    the user defined info?
    statusWebService = new WebService();
    statusWebService.addEventListener("load",
    requestStatus_load);
    statusWebService.GeneralStatusProcessWS.resultFormat =
    "e4x";
    statusWebService.GeneralStatusProcessWS.addEventListener("fault",
    requestStatus_fault);
    statusWebService.GeneralStatusProcessWS.addEventListener("result",
    requestStatus_complete);
    statusWebService.GeneralStatusProcessWS.request.format =
    "xml";
    statusWebService.loadWSDL();
    Thanks in advance...Paul

    Tracy, I'm not sure what I am really after. I want to pass a
    user defined piece of data to a WebService (dynamically). I finally
    did get it to work by removing the mx:request's format="xml" part.
    I'll try your recommendation in a bit. thank you very much for your
    reply.
    Paul

  • Container-Managed Transaction Type Attributes not working as expected

    I am having a problem with the container-managed transactions not working as expected. I have 2 methods that work as follows:
    MethodA{
    for(a lot)
    call MethodB;
    @Transaction Type = RequiresNew
    MethodB{
    EntityManager Persist to database
    I want the code in MethodB to be committed to the database when methodB returns. The problem is that I am running out of memory and MethodA is failing. When methodA fails after numerous calls to MethodB nothing is persisted to the database.
    It is my understanding that when using requires new transactions that a new transaction is started for each call to the method and ends when the method returns while the calling method transaction is suspended.
    How am I misunderstanding the requiresNew transaction attribute. What can I do to make a batch insert into my database that will not run out of memory (commit when a methodB returns)?
    Thanks in advance.

    The problem is that EJB invocation semantics for security, container-managed transactions, etc.
    only apply when an invocation is made through an EJB reference. In your case, you are directly
    invoking the implementation method from within the bean. The EJB container has no idea that's
    happening. It's no different than invoking a utility method.
    In order to get the behavior you'd like, you need to retrieve a reference to your own bean and invoke
    through that. You can use SessionContext.getBusinessObject() to get the EJB reference for the
    business interface through which the method in question is exposed.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • UNION for Columns of CLOB data type does not work

    Hi,
    I have two tables Encounter & Encounter_History. They have same columns. One column is of type CLOB. My requirement is to retrieve all the distinct records from both the tables with order by a date column. But problem is, UNION does not work in case of CLOB data type.
    I know it will work if I use UNION ALL, but it returns duplicate records.
    Please give me suggestion, how to solve this problem.
    For example: The following query does not work since column1 is a CLOB data type
    select column1 from table1
    union
    select column1 from table2
    Thanks

    But for sufficiently small clobs you can try:
    michaels>  SELECT TO_CLOB ('abc') cl
      FROM DUAL
    UNION
    SELECT TO_CLOB ('abc')
      FROM DUAL
    Error at line 1
    ORA-00932: inconsistent datatypes: expected - got CLOB
    michaels>  SELECT TO_CHAR (TO_CLOB ('abc')) cl
      FROM DUAL
    UNION
    SELECT TO_CHAR (TO_CLOB ('abc'))
      FROM DUAL
    CL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
    abc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    1 row selected.

  • Cfform type="flash" not working in safari

    Yes, I know that only a developer would be using Safari with
    windows, (firefox has been a little buggie lately)...
    However, it appears that flash is not working. I get a
    picture that looks like a blue lego.
    The strange thing is that when I go to the adobe website, the
    flash presentation on the main page appears to be working...

    I have the same (unresolved) problem as the original poster. This occurred following an install of Lion Dev Preview 2 on top of 10.6.7 on my Macbook Air (3, 2). The Java / Missing Plug-in errors go beyond Safari, though. I've logged a good 4-5 hours of support calls with Apple, but all the many rounds of uninstalling/reinstalling of the plug-ins, the OS, Safari, and so on has not been helpful.
    Actually at first Mail would not open at all because Mail 5 had been installed and simply putting 10.6.4 from the SL USB didn't fix that until I deleted all traces of Mail then re-re-installed SL. I am having this problem with iPhoto as well, but I imagine that if I can find an iLife disk then that problem is solvable. This simultaneously also screwed up some iPhone/iPad related features but, again the Java / Flash issues seem MUCH more of a mystery and, combined. I think I've tried every combination of preferences in Safari, as well as uninstalling and reinstalling Java/Flash at least 50 times in slightly different ways...
    Thanks for any potential insight or speculation!!
    Various details follow below...
    Hardware Overview:
    Model Name: MacBook Air
    Model Identifier: MacBookAir3,2
    Processor Name: Intel Core 2 Duo
    Processor Speed: 1.86 GHz
    Number of Processors: 1
    Total Number of Cores: 2
    L2 Cache: 6 MB
    Memory: 2 GB
    Bus Speed: 1.07 GHz
    Boot ROM Version: MBA31.0061.B01
    SMC Version (system): 1.66f54
    Serial Number (system): C0***1
    Hardware UUID: 7F8348B0-F1F5-5803-B2CE-91638E107C3D
    The Java messages take the form of "Cannot launch Java Preferences [etc] No compatible version of Java 1.5+ is available"
    <Edited by Host>

  • Infopath webservices not working

    Dear all,
    In Infopath, web-services are not working when published. For example, user-profile service is working in preview and once published not working. Not only user-profile service, even all web-services are not working. How to fix this issue? thanks!

    Hi Sam,
    How doesn't it work? Could you please elaborate your issue?
    What is the error message (e.g. 5566 error) from IE browser, and ULS log?
    Here are two articles about 5566 issue, configuration and troubleshooting suggestions, you can take a look.
    http://support.microsoft.com/kb/981684
    http://blogs.technet.com/b/rajbugga/archive/2013/08/07/infopath-over-claims-authentication-sharepoint-2010-amp-2013.aspx
    Thanks
    Daniel Yang
    TechNet Community Support

  • DMS Connector to Portal Issue – PDF files does not work

    I have a general issue regarding PDF files from DMS, these files are all defect when opened through the portal (works fine through backend access), but other document types works fine (like .doc;.ppt, *.xsl etc..).
    It is possible to download the file to your local pc, but still the same error occurs.
    When Adobe Reader opens a info box shows “The file is damaged and could not be repaired”.
    I have tried to update Acrobat Reader without any luck.      
    Any ideas on how to solve this issue?
    Thanks in advance
    John

    I will never understand why but in the end I rebuilt my 32 bit dell laptop from scratch and the pdf files can now be searched.
    I cannot search them on a mapped drive as I was able to with Windows XP because now they must be indexed and windows 7 will seems not to allow a mapped location to be indexed which must be done to make the pdf files searchable so I have had to move the files to the local drive.
    My Windows 7 64 bit systems can search the mapped drives just fine without needing to be indexed. Again I will never understand why this works and the 32 bit machine does not.

  • Surface pro type cover not working

    I just installed arch on my surface pro and the touch screen works well, as does the stylus, but the type cover/touchpad doesn't type or function at all. On startup two error messages are shown:
    hid-multitouch 0003:045E:07A9:0005: HID_DG_INPUTMODE out of range
    hid-multitouch 0003:045E:07A9:0005: No inputs registered, leaving
    lsusb shows this:
    Bus 004 Device 005: ID 045e:0794 Microsoft Corp.
    Bus 004 Device 004: ID 03eb:8209 Atmel Corp.
    Bus 004 Device 003: ID 045e:07a9 Microsoft Corp.
    Bus 004 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 003: ID 045e:0795 Microsoft Corp.
    Bus 003 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 002: ID 0bda:0307 Realtek Semiconductor Corp.
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 004: ID 1286:2044 Marvell Semiconductor, Inc.
    Bus 001 Device 002: ID 040b:2000 Weltrend Semiconductor
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    I'm not really sure how to debug this, so any help to get me in the right direction would be great,
    Thanks!

    As far as I can tell, the answer is buried in this thread: http://ubuntuforums.org/showthread.php?t=2183946

  • Text paramter with data type sting, not working

    Hi Guys,
    Im using BIP Standalone 10.1.3.4, and have come across a unusual problem.. probably a bug.
    Ive created a report with a parameter. The parameter type is text, and datatype String. (this problem only seems to occur if the string value is a combination of numerals and alphabels)
    the problem i face is that when i run the report, it runs fine with the dafault paramter value the first time. Subsequently if i change the template or the output type, or the parameter value and again click on view, it says "Invalid parameters specified".
    this report is mainly called through a hyperlink and is a lower level of a dill down report. when called by the hyperlink, which contains the parameters in the URL it works fine, but only the first time. A subsequent click on "view" or "Export" returns the error- Invalid parameters specified!!
    Ive changed the parameter type from text to menu.. and created a LOV query... it works fine with this. However, when i call the report via the hyperlink, although the report runs fine the first time using the parameter from the hyperlink URL, the menu parameter at the top shows the default value returned from the LOV, not the parameter called via the URL, so a subsequent cliick on view or export, will consider the default parameter, rather than the one was was specified in the hyperlink URL.
    Frustrating ... it seems to be ill have to work around this by creating separate hyperlinks for different output types from the main report ;-(
    Was wondering if anyone else has faced this issue, and hopefully has some solution
    Thanks in Advance
    -Domnic

    Solved.. apparently the database stored the data with a couple of leading spaces, which were getting eaten up when stored as a parameter.. workaround is to set parameter type to text, and as the user to put in a couple of spaces, if they want to rerun the report, as opposed to running it from its hyperlinked url...

  • Output Type ZNEU not working for PO document type ZNB

    Hi all,
    I have copied from standard the document type ZNB, and also the output type ZNEU, (from NB and NEU), I have made and checked all the setting on NACE (condition records, procedures, output types and sequence) everything is same as standard, I have also mantained in the "Fine-Tuned Control: Purchase Order" the indicators 1 and 2 (for new and change) for ZNEU, and mantained in MN05 the entry for ZNB Doc Type with VN media=1, date/Time=4  so for me these is the only setting needed but for some reason I am not getting the message automaticaly, but if I create manually the message while creating the PO then it works fine.
    For Doc type NB and Output type NEU the system gererates correcly the message so I don't know what could be happening here.
    The reason I created these copies (ZNB and ZNEU) it's because I have a different plant in a different company code which need to issue PO's and need a different number range and also different FORM (with the logo of the other plant/Company)
    Any ideas on how to correct this??
    Regards

    The problem was that in spanish, the function partner VN and CP are PR and PR so this was confusing and the records were crossing each other, thanks to every one

  • File Type Icons Not Working

    Hey everyone, the issue I'm haveing is not just with Photoshop, but sense I couldnt find a general CS5 forum, and Photoshop was the last CS5 application I noticed this for I'm hoping to find some answers here.
    So on to the issue....
    I have noticed that on other computers (Macs for sure) that Illustrator, Photoshop, Dreamweaver etc... are set as the default handlers of certain file types that are associated with each application, and as such, give each filetype there own little icons reflecting such. (see screenshot)
    However on my system (Windows 7 Ultimate x64) this does not seem to be the case. I can go in and set them as default manually, which I have done for the filetypes I use most frequently, but I do not get to enjoy the nice icons that are made for each filetype, i just get a bland, default icon that is the same for every filetype.
    As you can see, some of the file icons are working just fine (the .ai, .eps and .php) but the files I have had to set manually (.html and .psd) give me the default windows association icon that is simply the applications icon on top of a blank file. To clear up any confusion as to what icons I'm talking about, the icons in the "Change Icon" menu are the ones that should be shown, but are not.
    Is there a way to fix this issue?
    Thanks for you help.

    This may help. not sure.
    http://www.sevenforums.com/customization/69163-changing-icons-image-files-jpg-png.html

  • Middle Eastern type/Hebrew not working in CC 2014

    Hebrew used to work for me in CC. Now in cc 2014 it's not. I have Hebrew installed in windows, middle eastern type engine selected, and middle eastern text options available. When right-to-left is selected, it still types left-to-right. I've tried pasting in text and it reversed; and I tried freehand typing it in, and it didn't type right-to-left.

    I also had problems with my extensions.
    I followed the following steps.
    1. Closed Dreamweaver
    2. Updated Extension Manager CC using the Creative Cloud desktop app.
    3. Renamed C\Users\Joe Dempsey\AppData\Roaming\Adobe\DreamweaverCC\en_US\Configuration to C\Users\Joe Dempsey\AppData\Roaming\Adobe\DreamweaverCC\en_US\Configuration-backup
    4.Deleted and re-installed the extensions using the Extension Manager.
    5. Started Dreamweaver.
    There may be a more efficient method; the above worked for me.

Maybe you are looking for