Using predefined WSDL for synchronous client gives error

Generated a new BPEL project and attached our own WSDL (channelInterface.wsdl) to the client partner link. Specified the one and only operation in the receive and reply activities and auto created the variables in each. All simple stuff and the 'validate' reports 0 errors but upon a Project 'make' the following errors are reported.
Rather surprised as this seems to be very simple but the generated code does not seem to auto resolve the types. Any help much appreciated.
Error(19): [Error ORABPEL-10007]: unresolved messageType [Description]: in line 19 of "C:\temp\bpel\Test\BPELProcess1\BPELProcess1.bpel", WSDL messageType "{http://xmlns.oracle.com/BPELProcess1}BPELProcess1RequestMessage" of variable "inputVariable" is not defined in any of the WSDL files. [Potential fix]: Make sure the WSDL messageType "{http://xmlns.oracle.com/BPELProcess1}BPELProcess1RequestMessage" is defined in one of the WSDLs referenced by the deployment descriptor.
The generated .bpel code is:
<process name="BPELProcess1" targetNamespace="http://xmlns.oracle.com/BPELProcess1" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ns1="http://channel.abi.ukps.sbs" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:client="http://xmlns.oracle.com/BPELProcess1" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"><!-- ================================================================= --><!-- PARTNERLINKS --><!-- List of services participating in this BPEL process --><!-- ================================================================= -->
<partnerLinks><!--
The 'client' role represents the requester of this service. It is
used for callback. The location and correlation information associated
with the client role are automatically set using WS-Addressing.
-->
<partnerLink name="ch" partnerLinkType="ns1:ChannelInterface_PL" myRole="ChannelInterface_Role"/>
</partnerLinks><!-- ================================================================= --><!-- VARIABLES --><!-- List of messages and XML documents used within this BPEL process --><!-- ================================================================= -->
<variables><!-- Reference to the message passed as input during initiation -->
<variable name="inputVariable" messageType="client:BPELProcess1RequestMessage"/><!-- Reference to the message that will be sent back to the
requester during callback
-->
<variable name="outputVariable" messageType="client:BPELProcess1ResponseMessage"/>
<variable name="Receive_1_SubmitApplication_InputVariable" messageType="ns1:AbISubmissionRequestMessage"/>
<variable name="Reply_1_SubmitApplication_OutputVariable" messageType="ns1:AbISubmissionResponseMessage"/>
</variables><!-- ================================================================= --><!-- ORCHESTRATION LOGIC --><!-- Set of activities coordinating the flow of messages across the --><!-- services integrated within this business process --><!-- ================================================================= -->
<sequence name="main"><!-- Receive input from requestor.
Note: This maps to operation defined in BPELProcess1.wsdl
--><!-- Asynchronous callback to the requester.
Note: the callback location and correlation id is transparently handled
using WS-addressing.
-->
<receive name="Receive_1" partnerLink="ch" portType="ns1:ChannelInterface" operation="SubmitApplication" variable="Receive_1_SubmitApplication_InputVariable" createInstance="yes"/>
<reply name="Reply_1" partnerLink="ch" portType="ns1:ChannelInterface" operation="SubmitApplication" variable="Reply_1_SubmitApplication_OutputVariable"/>
</sequence>
</process>
The deployment descriptor (bpel.xml) is:
<?xml version = '1.0' encoding = 'UTF-8'?>
<BPELSuitcase>
<BPELProcess id="BPELProcess1" src="BPELProcess1.bpel">
<partnerLinkBindings>
<partnerLinkBinding name="ch">
<property name="wsdlLocation">ChannelInterfaceRef.wsdl</property>
</partnerLinkBinding>
</partnerLinkBindings>
</BPELProcess>
</BPELSuitcase>

when you create a new process (and not choose empty type) we create input and output variables for you
<variable name="inputVariable" messageType="client:BPELProcess1RequestMessage"/>
and those still point to the old messagetypes ..
The easiest way is on you left down side in jdev, when the bpel process is opened in the diagram mode you should see the structure (structure pane).. expand variables node and edit those 2 variables, within them right click on the part named payload and choose the new messagetype it is supposed to have
hth clemens

Similar Messages

  • HT1212 iPhone diabled, tried to use iTunes to restore, but iTunes gives error message (0XE8000084). Now what to try to reset iPhone?

    iphone disabled, tried to use iTunes to restore, but iTunes gives error message (0XE8000084). How to restore iPhone?

    Try here   =   http://support.apple.com/kb/TS3221

  • Whenever i put my iphone for restoration itunes gives error that disk is full what do i do?

    whenever i put my iphone for restoration itunes gives error that disk is full what do i do?

    Is your PC disk full?

  • WSDL for asynch service with error message

    Hi,
    can anybody provide a example of a wsdl which is asynchronous and defines a fault message, if the service fails?
    Thanks...

    In principle, the way you define a SOAP Fault is by adding the faults that could be emitted for a given operation at the binding and portType level. Here is an example:
    <wsdl:message name="echoFaultMessage">
         <wsdl:part name="fault" element="xsd1:EchoFault"></wsdl:part>
    </wsdl:message>
    <wsdl:portType name="EchoWithFault">
         <wsdl:operation name="echo">
              <wsdl:input message="tns:echoWithFault" />
                    <wsdl:fault name="fault" message="tns:echoFaultMessage"></wsdl:fault>
           </wsdl:operation>
    </wsdl:portType>
    ...That said, it may not be wise to try to convey error back to the caller using SOAP Fault for async processing, as you have no guaranty that the client calling the one-way service will process the fault, as they may be using the "fire & forget" style of invocation.
    It's better to convey any processing error to the caller on the back channel.
    Hope it helps,
    -Eric

  • Connectionstring to be used in ASP for instant client ??

    Hi,
    I'm trying to use oracle instant client for one of my projects.
    I have installed basic, sqlplus and ODBC for instant client.
    I have set all the environment variables. I have the tnsnames.ora and sqlnet.ora
    So far I have succeeded in connecting to a DB Server through sqlplus. I also created a DSN successfully using the driver "Oracle in instantclient10_2" which gets installed when I install instant client ODBC. These indicate that mos tof settings are right. It is good so far.
    Now I'm trying to use a connection string in ASP which connects to a DB server using this instant client.
    I need one DSN connection string and one DSN-less connection string.
    So far I have tried the following:-
    1)
    Driver={Oracle in instantclient10_2};Server=<Service Name>;Uid=<UserID>;Pwd=<Password>;
    This resulted in the error:-
    Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    [Oracle][ODBC][Ora]ORA-12560: TNS:protocol adapter error
    2)
    StrCon.Open "Driver={Oracle in instantclient10_2};Dbq=<Server IP address>:<port>/<serviceName>", "UserID", "Password"
    This resulted in the error:-
    Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    [Oracle][ODBC][Ora]ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Can you please help me out with these?
    Thanks in advance
    Jai

    Hello,
    I tried to use either of the 2 connections you gave but I still get an error:
    DSN
    Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    Specified driver could not be loaded due to system error 5 (Oracle in instantclient10_2).
    DSN-less Connectionstring:
    Specified driver could not be loaded due to system error 5 (Oracle in instantclient10_2).
    Thanks in advance,
    Do you have an idea as why this happens?

  • Using Adobe forms for multiple clients

    Hi
    I have several of my clients using html web based forms and would like to update them to Adobe forms.
    Question is, would i need to setup an account for each client, or can i use one account and manage all my clients from that account?
    Many thanks

    Adobe Acrobat Pro account.
    https://www.acrobat.com/en_us/products/formscentral/subscribe.html
    Thanks

  • Multicasting using TCP/IP for Multiple clients

    Hello
     i have been watching in Find example Vi's in labview  there is are UDP multicasting receiver and sender Vi's Is there
    any available for TCP/IP for multiple clients. or any other way to broadcast the messages from server to many clients 
    Regards

    madd wrote:
     i have been watching in Find example Vi's in labview  there is are UDP multicasting receiver and sender Vi's Is there
    any available for TCP/IP for multiple clients. or any other way to broadcast the messages from server to many clients 
    OK, you are possibly confusing things. UDP is part of TCP/IP. Could it be you are trying to multicast using TCP?
    This is not possible. TCP is a connection based protocol, meaning any connection is established between exactly two partners, starting out with the three-way handshake, the data transmission and acknowledgments, and the connection tear down. This ensures complete delivery verification of all communications at the expense of the protocol overhead. (similar to a classic phone connection between two people: First you verify the right person picks up, then you talk, then say goodbye)
    UDP is a connectionless protocol, meaning any packets are simply placed on the wire and the protocol itself does not ensure any verification of delivery (similar to e.g. a radio broadcast). Any two-way communication needs to be done by the program, e.g. the receiver could send another UDP packet back to notify the sender that a packet was received.
    Broadcast and multicast packets must be connectionless. There is no way around it. You can use UDP for broadcasts and TCP for for data at the same time in the same program, but you cannot combine the two into a single connection. They don't mix.
    Maybe I misunderstood. If I did, please clarify what you had in mind. More details!
    LabVIEW Champion . Do more with less code and in less time .

  • How can I use Adobe Muse for a client as a CMS System?

    If I build a Website for a Client, how can the Client after then making changes in his/her Website?

    You can grab Adobe Muse as single app, without going for complete creative cloud package.
    Web design software | Download free Adobe Muse CC trial
    Go to the above link, scroll to the end of the page, you should see the option
    Also, you should be able to see all the related information about Muse here Learn Adobe Muse, get help and support | Adobe Muse CC

  • Installing telnet client gives error 0x800f0922 on window 8

    I've tried using the control panel and Dism.exe and both return errors of 0x800f0922.  Best I can tell it's a registry error and I should run dism /online /cleanup-image /restorehealth.  But
    that returns "Error: 14091" for which I can find no fix.  I've been at this for about two hours now with no luck.  I have several pieces of server software running on my machine so I'm trying to avoid even a restart at all costs.

    Hi,
    Have a look at this post with the same issue:
    http://social.technet.microsoft.com/Forums/windows/en-US/db4e92a2-8638-4966-a95c-13978d8c469d/windows-error-code-0x800f0922
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer
    MCSE:Server Infrastructure, MCSE:Desktop Infrastructure, MCSA Server 2012, Citrix CCIA & CCEE, Cisco CCNA, VMware VCP 3/4/5 Twitter: @dnyvandam http://www.dannyvandam.net

  • Problems with using sample code for WebService client

    Hi <br /><br />Ive downloaded the sample code from the Adobe <br />website but when i run the client i get an error which i dont understand:<br /><br />client side:<br />ERROR: java.lang.NullPointerException<br />AxisFault<br /> faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException<br /> faultSubcode: <br /> faultString: java.lang.NullPointerException<br /> faultActor: <br /> faultNode: <br /> faultDetail: <br />     {http://xml.apache.org/axis/}hostname:GRFNZTS1SRV<br /><br />java.lang.NullPointerException<br />     at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)<br />     at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)<br />     at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:10 87)<br />     at weblogic.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1411)<br />     at weblogic.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator.java:16 13)<br />     at weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumen tScanner.java:1174)<br />     at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:399 )<br />     at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1138)<br />     at weblogic.xml.jaxp.WebLogicXMLReader.parse(WebLogicXMLReader.java:135)<br />     at weblogic.xml.jaxp.RegistryXMLReader.parse(RegistryXMLReader.java:133)<br />     at javax.xml.parsers.SAXParser.parse(Unknown Source)<br />     at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)<br />     at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)<br />     at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)<br />     at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62) <br />     at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)<br />     at org.apache.axis.client.Call.invokeEngine(Call.java:2784)<br />     at org.apache.axis.client.Call.invoke(Call.java:2767)<br />     at org.apache.axis.client.Call.invoke(Call.java:2443)<br />     at org.apache.axis.client.Call.invoke(Call.java:2366)<br />     at org.apache.axis.client.Call.invoke(Call.java:1812)<br />     at com.adobe.livecycle.samples.pdfgenerator.axis.PdfGenSoapBindingStub.getConfigurationXML(P dfGenSoapBindingStub.java:373)<br />     at com.adobe.livecycle.samples.pdfgenerator.webserviceclient.WebServiceClient.generatePDF(We bServiceClient.java:174)<br />     at com.adobe.livecycle.samples.pdfgenerator.webserviceclient.WebServiceClient.main(WebServic eClient.java:95)<br /><br />and on the server side:<br /><Error> <com.adobe.idp.um.businesslogic.authentication.AuthenticationManagerBean> <000000> <UserM:GENERIC_ERROR:     [Thread: ExecuteThread: '58' for queue: 'default', hc: 735284715 ]No Auth Providers found > <br /><Sep 17, 2007 8:27:43 PM IDT> <Warning> <com.adobe.idp.common.errors.exception.IDPLoggedException> <000000> <UserM:GENERIC_WARNING:     [Thread: ExecuteThread: '58' for queue: 'default', hc: 735284715 ]| [AuthenticationManagerBean] errorCode:12801 errorCodeHEX:0x3201 message:No Auth Providers found in Config>

    i get this exception
    C:\Program Files\JMF2.1.1e\bin\video>javac FrameAccess.java
    C:\Program Files\JMF2.1.1e\bin\video>java FrameAccess C:\Program Files\JMF2.1.1e
    \bin\video\gtrevor.avi
    Failed to create a processor from the given url: javax.media.NoProcessorExceptio
    n: Cannot find a Processor for: C:\Program
    how to solve it

  • 9i Jdeveloper for Oracle Applications gives error when running hello world

    The following is the error
    Exception Details.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.apps.jtf.cache.CacheLoaderNotFoundException; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at OAErrorPage.jspService(OAErrorPage.jsp:35)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:119)
         at com.evermind.server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:547)
         at com.evermind.server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:518)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:72)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
         at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
         at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
         at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1293)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
         at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
         at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
         at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1293)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:873)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:858)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:827)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:686)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:846)
         at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:351)
         at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at test_fwktutorial._jspService(test_fwktutorial.jsp:45)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    THe following is the OAFramework version
    OA Framework Version InformationOA Framework Version 11.5.10.5RUP.
    MDS Version 9.0.5.4.89 (build 555)
    UIX Version 2.2.24.1.0
    BC4J Version 9.0.3.13.97
    I use JDeveloper that comes with the patch 4725670
    The project settings for Oracle applications, the dbc file, userid/password, responsibility details are correctly set.
    Data base connection is also defined.
    I tried the patch 6012619 as well. No change and the same error
    Any clues please.

    user589898 ,
    Search on old threads before posting issues. Search on keyword CacheLoaderNotFoundException and you will find this issue has been discussed earlier.
    --Shiv                                                                                                                                                                                                                                                                                                                                                           

  • Rank function used in Evaluate-aggr in RPD gives error

    Hi,
    In RPD, in my fact table for a logical column in BMM, I have, EVALUATE_AGGR(‘RANK() OVER (PARTITION BY %2 ORDER BY %1 DESC)’ AS INTEGER,”main”.”proj_date”,”main”.”project_id”)
    but in answers when I use this as a filter and say equal to 1, I am getting the following error ‘Window Functions are not permitted’
    Thanks for your time and help.

    hi,
    your syntax seems to be wrong not sure.Try with sum function
    EVALUATE_AGGR('DB_Aggregate_Function(%1)',{comma separated Expression})
    Windows functions : http://developer.postgresql.org/pgdocs/postgres/tutorial-window.html
    Thanks,
    saichand.v

  • CS6 upgrade for photoshop CS5 gives errors

    I recently purchased your Photoshop CS6 upgrade.  I had been using Photoshop CS5 previously.  When I entered my serial number I got a message stating that no qualifying product can be found on my computer.  In the product drop down box I found and selected CS5 but when I enter the serial number of my CS5 Master Collection (which Photoshop was part of it) I get a error saying that serial number is not for a qualifying product.
    What should I do?

    You cannot upgrade a component of a Creative Suite to the next version - which is what it sounds like you're attempting.
    e.g. you cannot upgrade to Photoshop CS6 using the Photoshop CS5 from Master Collection CS5.
    http://www.adobe.com/products/creativesuite/faq.html#upgrade-eligibility
    "Am I eligible for upgrade pricing from an earlier Creative Suite edition to an individual CS component?
    No. Adobe does not offer upgrade pricing for customers wishing to move from a suite edition to an individual CS component. For complete upgrade information for the product you are interested in, consult the upgrade eligibility chart on that product's buying guide page."
    From Master Collection CS5, you can only upgrade to a CS6 Suite (does not have to be Master Collection CS6).
    If Photoshop CS6 is all you want then either purchase a full version of CS6 or consider joining the Cloud.

  • Building Dll for labVIEW RT gives errors

    Hi All
    Does building dll for labVIEW RT using CVI require labview runtime engine to be installed?
    becuase i get some errors of unsatisfied referances to some library while building the dll with target selceted to "labVIEW real time only".
    Regards
    Arun

    Hello Arun,
    You don't need to have LabVIEW Run Time installed on your machine. Please check the link below to see the function that are supported by exporting the LabWindows/CVI LabVIEW RT Engine
    http://digital.ni.com/public.nsf/websearch/D3EFE7C6F073384886256FDD005FBCDA?OpenDocument
    Ame G.
    National Instruments

  • How to Enable Remote services using the GPO for the Client Machines

    How to enable remote Access services on Client machines using the Group Policy. After enable how to access with out switching the users  remote as administrator

    Hi,
    If you use windows server 2003, we can refer to the following link to enable remote access services on Client machines using the Group Policy:
    Enable or disable Remote Desktop
    http://technet.microsoft.com/en-us/library/cc727977(v=WS.10).aspx
    If you use windows server 2008 and later version, we can refer to the following link to enable remote access services on Client machines using the Group Policy:
    How to Enable or Disable Remote Desktop via Group Policy Windows 2008
    http://social.technet.microsoft.com/wiki/contents/articles/4980.how-to-enable-or-disable-remote-desktop-via-group-policy-windows-2008.aspx
    After you enable
    Allow users to connect remotely using Remote Desktop Services policy setting, users who are members of the Remote Desktop Users group on the target computer can connect remotely to the target computer by using Remote Desktop Services.
    So if you want users to access computer remotely, you need add users as members of the Remote Desktop Users group on the target computer.
    About how to add users to the Remote Desktop Users group, please refer to the following link:
    Configure the Remote Desktop Users Group
    http://technet.microsoft.com/en-us/library/cc743161.aspx
    Best Regards,
    Erin

Maybe you are looking for

  • Unable to hear audio

    From both Microsoft Windows 2000 Advanced Server SP4 as well as Microsoft Windows XP Professional SP2, whenever some video or audio is played from the iTunes store (iTunes) or from the movie trailers (iTunes for H264 content or Quicktime) there is no

  • Unable to send fax from computer

    Hi, I'm unable to send faxes from my computer (e.g, from Word). I get a message: "The device is disconnected or powered off", which is not true. The printer is an HP  LaserJet 1536dnf MFP. The OS is Windows 7 Ultimate, 64-bit, with 8 GB RAM. I have u

  • Appending spaces after a CHAR field

    Hi, We are generating a fixed width pipe delimited flat file in our project and hence to keep the width constant for every record, we need to append spaces after the individual values in the records. Some of these infoobjects are not ALPHA converted.

  • Quiz captions overlap in Captivate 4

    Hi all, Just a short questions, hope somebody of you had the same problem (and solution) already. I created a quiz with Captivate 4. And theres is one question (out of 10) were sometimes the answers seem to overlap (-> See attached Screenshot) The an

  • When I edit music info it is not saved.

    I've formated my mac a few weeks ago. I've imported my lybrary with Time Machine and it works perfectly. The only problem is that I can not edit any song's info. Nor title, artist, lyric, front cover..nothing! When I press OK all the new data I've wr