Error invoking CFC

I have got this code for a html cfgrid.
<cfgrid
name="Foods"
format="html"
pagesize="10"
selectmode="browse"
insert="Yes"
delete="yes"
bind="cfc:applications.Kost.cfc.Foods.getAllFoods({cfgridpage},
{cfgridpagesize}, {cfgridsortcolumn}, {cfgridsortdirection})"
>
But the bind cannot find my CFC.
I have got a virtual directory called Application. Her is my
program located beneath the folder Kost. Then I have got my cfc in
a cfc directory.
c:/Applications/Kost/cfc/
I have alos tried to use cfc.Foods but this cannot find the
cfc either.
If I take my cfc and deploy it to my C:\Inetpub\wwwroot
directory.
Then it works with a bind like this cfc:Foods.getAllFoods()
can't I use mapped directories?
I would prefere to have my cfc's located bebeath the right
applications and not in the root.
I user CF8

I had the exact same issue when I was doing some preliminary
playing with spry . From what I have read, you can not use bind
with a mapped directory, and a virtual directory is a "mapped"
directory also.
I was going to try (have not yet though) using
ExpandPath(myCFC) to assign the full path to a variable and then
use the variable in the bind statement.
If you try it before I do and it works, I would like to
know.

Similar Messages

  • Error Invoking CFC... but it's there! I see it!

    Greetings all -
    I'm hoping someone can help explain why this following attempt at binding a CFC is not working:
    1. I set up a CF Server Mapping to my cfc folder:
    Logical path = /testcfc
    Physical path = E:\ColdFusion8\Components\testcfc
    2. I set up a virtual directory to my cfc folder:
    Virtual path: /testcfc
    Physical path: E:\ColdFusion8\Components\testcfc
    3. If I use CFINVOKE to call the CFC, it works as expected.
    <cfinvoke component="testcfc.testRequests" method="get_Clients" returnvariable="var">
    <cfinvokeargument name="fiscal_year" value="#year(now())#">
    </cfinvoke>
    <cfdump var="#var#">
    4. If I attempt to bind the CFC, I get the error "Error Invoke CFC /testResults.cfc: Not Found"
    <cfselect name="tstClientID" id="tstClientID" bind="cfc:testcfc.tstRequests.get_Clients('#year(now())#')" bindonload="true" value="client_id" display="client_name" />
    Debugging the error, I see that CF is attempting to find the CFC in the root directory of the app... it is disregarding the directory path ("testcfc") specified entirely. Why??
    The bizarre thing is, I've set up the same structure on my PC/dev environment, and it works fine.
    How can I further debug this issue? It's got to be a mapping problem, but can;t see what I've done wrong. Any help truly appreciated!
    Doug

    I recently stumbled upon this post:
    http://www.codersrevolution.com/index.cfm/2008/9/10/ColdFusion-CFC-Binding-Ajax-Proxy-and- Updater-1#comments
    Sure enough, my prod environment is running 8.0.0. I'm going to apply to apply the patch to 8.0.1 and see if that corrects the issue. I hope.
    Doug

  • Error invoking CFC for gateway

    Am getting the following error while invoking the event
    gateway
    "Error invoking CFC for gateway myGateway: Event Handler
    Exception. An exception occurred when invoking a event handler
    method from Application.cfc The method name is: onRequestStart."
    Please advice

    I am getting an error like this when my eventgateway gets invoked for directorywatch:
    Error invoking CFC for gateway watchInboundFiles: null {GATEWAYTYPE={FileWatcher},ORIGINATORID={},CFCMETHOD={onDelete},DATA={{FILENAME={/Users/y oosafabdulla/Sites/bahuvlintbeaches-staging/int/core/internationalBeaches/iptv/dw/1_vod_xm l.cfc},TYPE={DELETE}}},CFCPATH={/Users/yoosafabdulla/Sites/bahuvlintbeaches-staging/int/co re/internationalBeaches/iptv/dw/directory_watch.cfc},GATEWAYID={watchInboundFiles}}.
    I just want to dump the cfevent data into a text file.

  • Administrato CF 10 error invoking cfc after update.

    went through our update cycle for our CF 10 admin for the latest updates.  We are now receiving the following error:
    "Error invoking CFC /CFIDE/Administrator/updates/download.cfc:
    internal server error [enable debugging by adding 'cfdebug' to your URL parameters to see more information]"
    Now the issue here is that even when ?cfdebug is added nothing comes up but the error.
    We have a non-standard configuration for our administrator, it does not reside in the the root as it kept making our compliance scans fail.  to resolve we had to move the administrator to our c:<newfolder>, so that the administator would not fail our scans because of the password being passed in plain text.
    Per the error we have checked to make sure that the download.cfc is in the proper location and has the proper permissions and access.
    After the updates we now receive the above mentioned errors. any assistance in resolving would be great.
    thanks in advance.

    Steve, as Adam said in his post in Nov ’12, you should be able to resolve things by putting them back as they should be, and then use other means to protect your admin. Have you tried that?
    If you remain stumped with either getting that working, or getting things working the way you want them to, I’ll just note that you don’t need to suffer this. Either problem should be solvable in less than an hour of direct remote consulting assistance, which I could provide.
    I know it stinks to see a “sales pitch” here, but since you’re doing things non-standard, there could be a few things that would make it hard to resolve purely here in the forums. And if you’ve been suffering this for more than a year, it just seems worth offering you an option to get this solved perhaps very quickly. More on the consulting page at carehart.org.
    /charlie

  • Error invoking cfc from url variable

    I am using a url with a variable tacked on it. When I call a file with to create a cfgrid the cfc it uses gives an error. It tells me the variable is undefined. This is a problem since I need to use it in the sql to create the grid. Seems like this is not the right way to get the variable to the sql statement but I dont know how else to do it since I have to use a url to invoke the grid. Thanks in advance for your help.

    this is link to editable grid
    <a href="participantgrid.cfm?course_id=#getresults.procourse_id#">#procourse_course#</a>
    <!---participantgrid.cfm --- below--->
    <cfform>
    <cfinput name="course_ID" value="#url.course_id#" type="hidden"> 
        <cfgrid name="protrainparticipants"
                format="html"
                pagesize="10"
                striperows="yes"
                selectmode="edit"
                delete="yes"
                bind="cfc:participantcomp.getparticipants({cfgridpage},
                                            {cfgridpagesize},
                                            {cfgridsortcolumn},
                                            {cfgridsortdirection}, {course_id})"
                onchange="cfc:participantcomp.editparticipant({cfgridaction},
                                                {cfgridrow},
                                                {cfgridchanged})">
            <CFGRIDCOLUMN NAME="proparticipant_course_id"
                WIDTH=2
                DISPLAY="no">
            <CFGRIDCOLUMN NAME="proparticipant_id"
                HEADER="Paricipant ID"
                WIDTH=10
                ITALIC="NO"
                HEADERALIGN="center"
                HEADERITALIC="NO"
                HEADERBOLD="YES"
                DISPLAY="no">
            <CFGRIDCOLUMN NAME="proparticipant_firstname"
                HEADER="First Name"
                WIDTH=120
                ITALIC="NO"
                HEADERALIGN="center"
                HEADERITALIC="NO"
                HEADERBOLD="YES"
                DISPLAY="YES"
                SELECT="YES">
            <CFGRIDCOLUMN NAME="proparticipant_lastname"
                HEADER="Last Name"
                WIDTH=120
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_p_country"
                HEADER="Country"
                WIDTH=80
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_email"
                HEADER="Email"
                WIDTH=160
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_phone"
                HEADER="Phone"
                WIDTH=100
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_fax"
                HEADER="Fax"
                WIDTH=100
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_projid"
                HEADER="Project ID"
                WIDTH=80
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
                <CFGRIDCOLUMN NAME="proparticipant_agency"
                HEADER="Agency"
                WIDTH=80
                ITALIC="No"
                HEADERALIGN="center"
                HEADERITALIC="No"
                HEADERBOLD="Yes"
                BOLD="Yes"
                DISPLAY="Yes">
        </cfgrid>
    </cfform>
    <!---- participantcomp.cfc--below --->
    <cfcomponent output="false">
    <cfset THIS.dsn="protraining">
    <!--- Get participants --->
    <cffunction name="getparticipants" access="remote" returntype="struct">
      <cfargument name="page" type="numeric" required="yes">
      <cfargument name="pageSize" type="numeric" required="yes">
      <cfargument name="gridsortcolumn" type="string" required="no" default="">
      <cfargument name="gridsortdir" type="string" required="no" default="">
      <cfargument name="course_id" type="numeric" required="yes" default="#course_id#">
      <!--- Local variables --->
      <!--- Get data --->
      <CFQUERY NAME="Chkcourse2" DATASOURCE=#THIS.dsn#>
                SELECT procourse_id, procourse_course
                FROM    afrreg38.tblProcourse
                WHERE   procourse_id = #arguments.course_id#
                </CFQUERY>
      <cfset current_course_id = #chkcourse2.course_id#>
      <cfquery name="qrygetparticipants" datasource="#application.dsn#">
      select   pp.proparticipant_id, pp.proparticipant_course_id, pp.proparticipant_firstname, pp.proparticipant_lastname, pc.procourse_course, pp.proparticipant_p_country, pp.proparticipant_email, pp.proparticipant_phone, pp.proparticipant_fax, pp.proparticipant_projid, pp.proparticipant_agency, pc.procourse_id
                              FROM    afrreg38.tblProparticipant_3 pp, afrreg38.tblProcourse pc, afrreg38.tblproparticipant_course_test_2 pct
                              WHERE  pp.proparticipant_id = pct.proparticipant_participant_id
                              and pp.proparticipant_course_id = pc.procourse_id
                              and pc.procourse_id = #variables.current_course_id#
                              <cfif ARGUMENTS.gridsortcolumn NEQ ""
                              and ARGUMENTS.gridsortdir NEQ "">
                              ORDER BY #ARGUMENTS.gridsortcolumn# #ARGUMENTS.gridsortdir#
                              </cfif>
                  </cfquery>
      <!--- And return it as a grid structure --->
      <cfreturn QueryConvertForGrid(qrygetparticipants,
                                ARGUMENTS.page,
                                ARGUMENTS.pageSize)>
    </cffunction>
    <!--- Edit an artist --->
    <cffunction name="editparticipant" access="remote">
      <cfargument name="gridaction" type="string" required="yes">
      <cfargument name="gridrow" type="struct" required="yes">
      <cfargument name="gridchanged" type="struct" required="yes">
      <!--- Local variables --->
      <cfset var colname="">
      <cfset var value="">
      <!--- Process gridaction --->
      <cfswitch expression="#ARGUMENTS.gridaction#">
        <!--- Process updates --->
        <cfcase value="U">
        <!--- Get column name and value --->
        <cfset colname=StructKeyList(ARGUMENTS.gridchanged)>
        <cfset value=ARGUMENTS.gridchanged[colname]>
        <!--- Perform actual update --->
        <CFQUERY name="updateparticipant_data" datasource="#THIS.dsn#">
                     UPDATE afrreg38.tblProparticipant_3
                     SET #colname# = '#value#'
                     WHERE proparticipant_id = #ARGUMENTS.gridrow.proparticipant_id#
                    </CFQUERY>
        <!---  <cfquery datasource="#THIS.dsn#">
                     UDPATE afrreg38.tblproparticipant_course_test_2
                    SET #colname# = '#value#'
                    </cfquery> --->
        </cfcase>
        <!--- Process deletes --->
        <cfcase value="D">
        <!--- Perform actual delete --->
        <cfquery datasource="#THIS.dsn#">
                    DELETE FROM afrreg38.tblProparticipant_3
                    WHERE proparticipant_id = #ARGUMENTS.gridrow.proparticipant_id#
                    </cfquery>
        </cfcase>
      </cfswitch>
    </cffunction>
    </cfcomponent>

  • Error in CFC - message to Flex

    I am sending messages to a flex program via a CFC reading
    messages off of a socket (gateway is called asocket - the flex
    gateway is ows35_example4 via LCDM).
    The messages are getting to the flex program but errors are
    showing up in cfserver.log, eventgateway.log and exception.log that
    says:
    Error invoking CFC for gateway asocket: Unable to locate the
    body entry in the outgoing message structure..
    once for each message that is sent. The enclosed code shows
    the CFC running the asocket gateway - which definitely has a "body"
    entry.
    How do I stop this error ? Is there something wrong with the
    CFC ?
    Using Coldfusion 8.0.0.1786276
    -thank you

    Ugh .... I figured this out.
    I was using HTTP comments "<!-- -->" (that I did not
    include in the source above) instead of the CF comments "<!---
    --->".
    What you don't see is that there is another
    SendGatewayMessage that was (I thought) commented out using the
    messageObject Struct for the message. It doesn't have a body part
    so it makes sense that the error happened.
    I changed the HTTP comments to CF comments and the errors
    went away.
    Note to self ... be careful of your comments.

  • Error message "Unable to invoke CFC"

    Purchased Adobe Acrobat Pro XI and cannot download.
    Disabled firewall (Norton) after getting "Error 100" message.
    Now am getting the following:
    "Unable to invoke CFC - The method login was not found in component tdrc.tdrcfacade."

    Moving this discussion to the Acrobat Installation & Update Issues forum.

  • Error executing CFC. Parameter index out of range (2 number of parameters, which is 1)

    Hi,
    My CFC component is defined as:
    <cffunction name="updateNote" output="false" access="remote"  returntype="void" >
         <cfargument name="notedetails" required="true" type="string" >
         <cfargument name="notename" required="true" type="string" />
         <cfquery name="qupdateNote" datasource="notes_db">
               UPDATE
                   notes
               SET
                   notes.notedetails=<CFQUERYPARAM CFSQLTYPE="CF_SQL_VARCHAR" VALUE="#ARGUMENTS.notedetails#">,
               WHERE
                   notename="<CFQUERYPARAM CFSQLTYPE="CF_SQL_VARCHAR" VALUE="#ARGUMENTS.notename#">"
        </cfquery>
    </cffunction>
    In Flash builder when I test the operation I get this error:
    "There was an error while invoking the operation. Check  your server settings and try invoking the operation again.
    Reason:  Server error Unable to invoke CFC - Error Executing Database Query. Parameter  index out of range (2 > number of parameters, which is 1)."
    Im really quessing that this is something small but right now its causing me to pull my hair out of my head!! Argg. Tried a bunch of things but I know thik im stuck.
    Help would be very very appreciated.
    Thanks

    Create test.cfm along these lines:
    <cfset myObj = createObject("component", "dotted.path.to.cfc.file")>
    <cfset myResult = myObj.myMethod(arg=value1, etc)>
    <cfdump var="#myResult#">
    Or, really, you could just browse to this:
    http://your.domain/path/to/your.cfc?method=yourMethod&arg1=value1 [etc]
    Although I dunno which of those two approachs will give you a better error message (indeed, it might be the same).
    Try both.
    Adam

  • Invoking CFCs that extend mapped CFCs through the flex2gateway

    Hello all,
    I’ve run into an issue with my CFCs and I’m hoping someone can tell me why this is happening.
    Here is my setup in this scenario:
    I have a mapping for my CFCs on my local CF Server where Logical Path /CFC maps to C:\ColdFusion8\common\CFC
    The folder C:\ColdFusion8\common\CFC contains one file test.cfc.  The file test.cfc is an empty component (<cfcomponent></cfcomponent>)
    I have a proxy CFC in my webroot’s proxy folder at C:\ColdFusion8\wwwroot\proxy\pxTestMapping.cfc  pxTestMapping.cfc extends CFC.Test which uses the logical path CFC referenced above pointing specifically to the file test.cfc. 
    I have created a service in Flex that works with pxTestMapping.cfc  On load of the application I run a method HelloWorld from pxTestMapping.cfc.  The helloWorld method just returns the string “Hello World”.  I have a button that you can click to see the resulting string in Flex.
    I can load the method directly in the browser and it works, I can also test and confirm that the Flex application works and the expected string does alert when the button is clicked.  If I then go into the pxTestMapping.cfc file and update the string returned to read “Hello World Updated” and hit save, the CFC will error the next time I run the flex application.  The error message states “Unable to invoke CFC – Could not find the ColdFusion Component or Interface CFC.Test”.  If I then run the Hello World Method directly in the browser (http://localhost:8500/proxy/pxTestMapping.cfc?method=HelloWorld) The component does not error, instead it returns the expected string.  From that point forward the flex app will also work, until I make another change to pxTestMapping at which time I will receive the above message until I manually access the webservice through a web browser.  I have duplicated this issue on both my local development environment and on my staging server.
    How can I get the CFC to invoke correctly after modification without having to directly access the webservice in my browser?
    Thanks,
    Christine

    I started with an empty Data/Services view and clicked the link "Connect to Data/Service"  I selected ColdFusion, browsed to the CFC in the ColdFusion Component section and used the default service name and package that it created.  I clicked next, entered my login information and clicked Finish on the screen that showed the operations in the service.
    I tried this with the original beta SDK, 4.0.0.10434 and 4.0.0.4904
    The original issue described used the original beta SDK
    4.0.0.4904 & 4.0.0.10434 errored with VerifyError #1014: Class IVisualELement could not be found, ReferenceError: #1065: Variable CrossFade_CrossFadeShaderClass is not defined,  ReferenceError: #1065: Variable Wipe_WipeShaderClass is not defined, and ReferenceError: Error #1065: Variable _2e124f77eedc07babaa6f5d7b8f173c364f54221c2a0cd01c6886c90f93a6fbf_flash_display_Sprite is not defined.  Additionally, every time I edited anything, the Flash Builder app returned an error that said "An internal build error has occurred.  Right-click for more information" which seems to require a restart of Flash Builder to resolve.
    I didn't have time to continue trying to figure out what about my code, setup or plugin was causing all those problems with the SDKs, so I gave up with testing in them.
    I attached the MXML file I used and the cfc I used in my tests.
    Thanks!
    Christine

  • Unable to invoke CFC when trying to connect Adobe Download Assistant

    I am running Mac OS X (10.10.2).
    When Trying to connect Adobe Download Assistant with my regular Adobe-ID credentials I see following error message:
    unable to invoke CFC - The method login was not found in component tdrc.tdrcfacade.
    Is there a way to "repair" Download Assistant or to install the recent version?
    Thanks in advance
    Enrico

    Hi Jeff,
    that's the catch.
    Uninstall and installing a product worked.
    I am doing a test on Acrobat.
    Thanks a lot.
    Enrico

  • Unable to Sign in (unable to invoke CFC)

    When i try to sign in my adobe account onto Adobe Download Assistance, it shows error of (unable to invoke CFC, cannot decode string......)
    What should i do?

    Windows 7..... security software is Avast.
    when i try to login via the adobe download assistant it comes up with......Unable to invoke CFC-"
                                                                                                              Can not decode string
                                                                                                               "ZmVOZXJvdGljaXNoQGhv....etc etc

  • Error invoking populateXRefRow:oracle.tip.xref.exception.RepositoryExceptio

    Hi All,
    I created an XREF table using XREF commandline utility. Table was successfully created and columns were also successfully added. But I am getting the following error while using populateXRefRow function in assign activity in BPEL. I have XREF_DATA table is present in oraesb schema.
    SOA suite version 10.1.3.4
    JDev version 10.1.3.4
    OS - Windows XP.
    Basic Installation with Oracle lite database.
    Caused by: oracle.xml.xpath.XPathException: Extension function error: Error invoking 'populateXRefRow':'oracle.tip.xref.exception.RepositoryException: Unable to access Cross Reference Values from Database.The SQL Exception is: "JDBC 2.0 feature is not yet implemented"
    Please ensure that the database is accessible. If accessible, please look at the stack trace and fix the issue. If unable to fix contact Oracle Support '
         at oracle.xml.xslt.XSLStylesheet.flushErrors(XSLStylesheet.java:1846)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:612)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:548)
         at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:333)
         at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:460)
         ... 91 more
    oracle.xml.xpath.XPathException: Extension function error: Error invoking 'populateXRefRow':'oracle.tip.xref.exception.RepositoryException: Unable to access Cross Reference Values from Database.The SQL Exception is: "JDBC 2.0 feature is not yet implemented"
    Please ensure that the database is accessible. If accessible, please look at the stack trace and fix the issue. If unable to fix contact Oracle Support '
         at oracle.xml.xpath.XSLExtFunctions.callStaticMethod(XSLExtFunctions.java:118)
         at oracle.xml.xpath.XPathExtFunction.evaluateMethod(XPathExtFunction.java:337)
         at oracle.xml.xpath.XPathExtFunction.evaluate(XPathExtFunction.java:266)
         at oracle.xml.xslt.XSLValueOf.processAction(XSLValueOf.java:120)
         at oracle.xml.xslt.XSLNode.processChildren(XSLNode.java:480)
         at oracle.xml.xslt.XSLTemplate.processAction(XSLTemplate.java:205)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:581)
         at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:548)
         at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:333)
         at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:460)
         at com.collaxa.cube.xml.xpath.functions.xml.GetElementFromXSLTFunction.transform(GetElementFromXSLTFunction.java:335)
         at com.collaxa.cube.xml.xpath.functions.xml.GetElementFromXDKXSLTFunction.transform(GetElementFromXDKXSLTFunction.java:38)
         at com.collaxa.cube.xml.xpath.functions.xml.GetElementFromXSLTFunction.evaluate(GetElementFromXSLTFunction.java:144)
         at com.collaxa.cube.xml.xpath.functions.xml.GetElementFromXSLTFunction.call(GetElementFromXSLTFunction.java:89)
         at com.collaxa.cube.xml.xpath.BPELXPathFunctionWrapper.evaluate(BPELXPathFunctionWrapper.java:50)
         at oracle.xml.xpath.JXPathContext$JXFunction.invoke(JXPathContext.java:147)
         at oracle.xml.xpath.JXPathContext$JXFunction.invoke(JXPathContext.java:116)
         at oracle.xml.xpath.XPathExtFunction.evaluate(XPathExtFunction.java:254)
         at oracle.xml.xpath.JXPathExpression.evaluate(JXPathExpression.java:181)
         at com.collaxa.cube.xml.xpath.BPELXPathUtil.evaluate(BPELXPathUtil.java:189)
         at com.collaxa.cube.engine.ext.wmp.BPELAssignWMP.evalFromValue(BPELAssignWMP.java:679)
         at com.collaxa.cube.engine.ext.wmp.BPELAssignWMP.__executeStatements(BPELAssignWMP.java:143)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:199)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3698)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1655)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:217)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:314)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5765)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1087)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:133)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:162)
         at sun.reflect.GeneratedMethodAccessor91.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:693)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at CubeEngineBean_LocalProxy_4bin6i8.syncCreateAndInvoke(Unknown Source)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:547)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:464)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:133)
         at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:95)
         at sun.reflect.GeneratedMethodAccessor139.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
         at com.evermind.server.ThreadState.runAs(ThreadState.java:693)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at DeliveryBean_RemoteProxy_4bin6i8.request(Unknown Source)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processNormalOperation(SOAPRequestProvider.java:451)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processBPELMessage(SOAPRequestProvider.java:274)
         at com.collaxa.cube.ws.soap.oc4j.SOAPRequestProvider.processMessage(SOAPRequestProvider.java:120)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Please help me to resolve the above error.
    - Sam

    Hi Sam,
    This error is because JDBC 2.0 feature is not completely implemented in Oracle Lite database.
    So, you might want to go for an SOA Advanced Install with 10.2.0.3 oracle database to resolve your issue.
    Hope this helps!
    Cheers
    Anirudh Pucha

  • Error Invoking Web Service Action: Status (500): null

    Hi forum
    I am getting an "Invoking Web Service Action: Status (500): null" error  when invoking a web service action block .  The BLS transaction used as a web service outputs a text string which I tested using an xacute query . while executing the transaction as a web service the tracer tells me that there is no output .
    Best regards,
    Antonio
    I am using an xMII 11.5 installation  .
    [INFO ]: Execution Started At: 04:17:46
    [DEBUG]: 00000.01600 Begin Transaction 'TMP45B360D9-0E02-2CF7-C4B4-F3C0B41C29E0'
    [DEBUG]: 00000.01600 Begin Sequence Sequence : ()
    [DEBUG]: 00000.01600 Begin Action WebService_0 : ()
    [ERROR]: Error Invoking Web Service Action: Status (500): null
    [ERROR]: ACTION FAILED: End Action WebService_0 : ()
    [DEBUG]: 00000.11000 Begin Sequence Sequence_0 : ()
    [DEBUG]: 00000.11000 Begin Action Tracer_0 : ()
    [INFO ]:
    [DEBUG]: 00000.11000 End Action Tracer_0 : ()
    [DEBUG]: 00000.11000 End Sequence Sequence_0 : ()
    [DEBUG]: 00000.11000 End Sequence Sequence : ()
    [DEBUG]: 00000.11000 End Transaction 'TMP45B360D9-0E02-2CF7-C4B4-F3C0B41C29E0'
    [INFO ]: Execution Completed At: 04:17:46 Elapsed Time was 94 mS

    Jamie,
    Yes Indeed, I was calling inside a web service action another BLS transaction .  Now ,  I am using a call to the transaction using the runner . It worked fine .
    Thanks,

  • Error invoking 'set_xslt_locale':'java.lang.IllegalAccessError

    I am running seeded sourcing pages. I am getting following exception when i try to print an RFQ from JDeveloper:
    Error invoking 'set_xslt_locale':'java.lang.IllegalAccessError: tried to access class oracle.apps.fnd.i18n.common.text.DigitList from class oracle.apps.fnd.i18n.common.text.ExcelNumberFormat'
    Re: XML Publisher common user interface document viewer
    In the above thread, i found below steps to resolve this:
    Cause:
    Essentially the problem is caused by incompatible versions of classes in the oracle.apps.fnd.i18n.* package held in the file jdevbin\jdev\appslibrt\aolj.jar versus the classes used by the BI Publisher libraries. The 'set_xslt_locale' method was introduced in BI publisher version 5.6.3 so if you have upgraded to this version on the server it is likely that you will get this error in JDeveloper.
    Solution:
    1) You will first need to copy the following file to your local JDev install and add it as a library via Project Settings --> Libraries :
    $FND_TOP/java/3rdparty/stdalone/xdoparser.zip
    2) Next fetch the latest version of the oracle.apps.fnd.i18n.* classes from $OA_JAVA. Create a zip file of these files (i.e. i18n.jar), copy to your local JDev install and add it as a library as you did with the xdoparser.zip.
    3) Copying these files alone will not solve the problem because JDeveloper will use the oracle.apps.fnd.i18n.* classes located in the jdevbin\jdev\appslibrt\aolj.jar file before using the ones located in the file added in step 2 (i18n.jar). To get round this, ensure that the the library you have added for the i1n8.jar file is higher in the list (under Project Settings  Libraries) than the libraries “FND Libraries” & “OA Developer Libraries” (if selected). This will ensure that the files in i18n.jar are used prior to those in jdevbin\jdev\appslibrt\aolj.jar. If this does not work (some users have found this approach not to work), make a backup of the file jdevbin\jdev\appslibrt\aolj.jar and then manully remove all files in the oracle.apps.fnd.i18n package from the file.
    4) In addition to the above copy the file $OA_HTML/xdo_doc_display.jsp to your local OA_HTML directory (usually jdevhome\jdev\myhtml). You should also set the temporary directory of the XML Publisher (under Admin) to a directory that exists on your PC (eg. /var/tmp on your PC will be c:\var\tmp).
    I am new to Java/JDeveloper/OAF.
    Can someone please help me with the above steps?
    I am unable to post anything in OA Framework forum.

    Yes, the OA Framework forum is "broken"
    However, that is the best place to get help for this question.

  • Error invoking 'set_xslt_locale':'java.lang.NoSuchMethodError:

    I need to generate PDF report using xml pub java APIs and RTF template and trying to call in OA Page.
    I am getting this error any idea ?
    52807_053618359][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [052807_053618359][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [052807_053618359][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [052807_053618359][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\Jdeveloper\jdevbin\jdk1.4.2\jre\lib\ext]
    [052807_053618390][][EXCEPTION] [DEBUG] [oc4j.iiop.keyStoreLoc]:[keystore.jks]
    [052807_053618390][][EXCEPTION] [DEBUG] [user.dir]:[C:\Jdeveloper\jdevhome\jdev\system9.0.3.5.1312\oc4j-config]
    [052807_053618390][][EXCEPTION] [DEBUG] [CACHENODBINIT]:[true]
    [052807_053618390][][EXCEPTION] [DEBUG] [line.separator]:[
    [052807_053618390][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [052807_053618390][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBClass]:[com.oracle.iiop.server.OC4JORB]
    [052807_053618390][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [052807_053618640][][EXCEPTION] [DEBUG] [java.specification.version]:[1.4]
    oracle.xml.parser.v2.XPathException: Extension function error: Error invoking 'set_xslt_locale':'java.lang.NoSuchMethodError: oracle.apps.fnd.i18n.common.text.DateFormatter.setCalendar(Loracle/apps/fnd/i18n/common/util/Calendar;)V'
         at oracle.xml.parser.v2.XSLExtFunctions.callStaticMethod(XSLExtFunctions.java:113)
         at oracle.xml.parser.v2.XPathExtFunction.evaluateMethod(XPathExtFunction.java:199)
         at oracle.xml.parser.v2.XPathExtFunction.getValue(XPathExtFunction.java:131)
         at oracle.xml.parser.v2.XSLVariable.getValue(XSLVariable.java:206)
         at oracle.xml.parser.v2.XSLStylesheet.processVariables(XSLStylesheet.java:591)
         at oracle.xml.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:466)
         at oracle.xml.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:448)
         at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:246)
         at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:136)
         at oracle.xml.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:173)
         at oracle.apps.xdo.common.xml.XSLTClassic.transform(XSLTClassic.java:307)
         at oracle.apps.xdo.common.xml.XSLTClassic.transform(XSLTClassic.java:184)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:161)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1015)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:968)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:209)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1561)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:951)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5975)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614)
         at oracle.apps.xdo.oa.common.DocumentHelper.getOutputURL(DocumentHelper.java:635)
         at oracle.apps.xdo.oa.common.webui.XDOCommonRnCO.processRequest(XDOCommonRnCO.java:258)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:518)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:328)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:575)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:328)

    Check Re: Error invoking 'set_xslt_locale':'java.lang.NoSuchMethodError:
    --Shiv                                                                                                                                                                                                           

Maybe you are looking for

  • Transport Management in SOlution Manager

    Hello All, We are currently running a Conf. Room Pilot for our customer. As part of the CRP, the customer has created a new template project in Solman and have also a created a new sandbox as a copy of their production for the CRP where we have got f

  • Help Needed for NETWORKDAYS formula

    I am trying to write a simple formula tracking the amount of business days used to complete an assignment. The first column is the date a project was requested and the second column is the date the project was completed. The third column is a simple

  • No accounting document goods issue movement 551

    Hi Friends, I used t-code MB1A to scrap materials using 551 GI scrapping. For somehow, there is no accounting document when I check the scrap material document. Where could I've missed. Thanks in advance, Linda

  • How and Where to change ESS payslip property as READ only Mode

    Hi,   We are SAP ECC5.0 and using EP6 for ESS payslip. We have a problem launching ESS payslip for those employees who have Acrobat Editor and Reader installed. One can actually change the payslip information via Acrobat Editor when click onto PRINT

  • I can't upload dokuments to icloud?

    I have numbers on my Mac and my Iphone 4. I cannot upload my documents into the cloud. At first when I downloaded the app it works but now no more. I switched "use Ioud" in all phones an macs. Can it happened while the update to IOs 5. 01?