Starting a BPM Process - Where is the Service?

Hi,
I build a small test process and tested it, everythings working fine, but now I want to start with an application from portal. Unfortunately I haven't found the service to start the process.
Can anybody help me?
Regards,
Felix

Hello Sinh,
what error occurs on deployment?
Be sure not only to remove the output operation via the "Design"-View with NWDS embedded WSDL Editor.
Also have a look at the source of your WSDL and remove:
All <xsd:element>-tags/blocks within <wsdl:types> that have been assigned to your output/response operation
The <wsdl:message> that stay in context to your response
All <wsdl:output>-tags within <wsdl:portType> -> <wsdl:operation>
The <wsdl:output>-block within <wsdl:binding> - > <wsdl:operation>
See a minimal example WSDL attached that just has an input-operation with one field named "NewValue" of type string:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.example.org/NewWSDLFile/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="NewWSDLFile" targetNamespace="http://www.example.org/NewWSDLFile/">
  <wsdl:types>
    <xsd:schema targetNamespace="http://www.example.org/NewWSDLFile/">
      <xsd:element name="NewOperation">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="NewValue" type="xsd:string"/>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>
  </wsdl:types>
  <wsdl:message name="NewOperationRequest">
    <wsdl:part element="tns:NewOperation" name="parameters"/>
  </wsdl:message>
  <wsdl:portType name="NewWSDLFile">
    <wsdl:operation name="NewOperation">
      <wsdl:input message="tns:NewOperationRequest"/>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="NewWSDLFileSOAP" type="tns:NewWSDLFile">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="NewOperation">
      <soap:operation soapAction="http://www.example.org/NewWSDLFile/NewOperation"/>
      <wsdl:input>
        <soap:body use="literal"/>
      </wsdl:input>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="NewWSDLFile">
    <wsdl:port binding="tns:NewWSDLFileSOAP" name="NewWSDLFileSOAP">
      <soap:address location="http://www.example.org/"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
Hope that helps.
Have a nice day!
Michael

Similar Messages

  • Problem start a BPM process, No ADF binding is defined for the service.

    Hi,
    I am trying to use oracle.soa.management.facade.Service.request method to start a BPM process.
    The service works fine while being tested using Enterprise Manager. But while I am trying to invoke the service from a java client, exception occurs.
    The Service toString:
    Service {
    name = TechDocModifyProcess.service
    properties = {}
    bindings = [Binding {
    Name = WSBinding
    Type = ws
    Mode = entryPoint
    Properties = null
    WSDL URL = /TechDocModifyProcess.wsdl
    WSDL URL = http://eis-bpm-server.eis.smec-cn.com:8001/soa-infra/services/default/TechDocModifyProject!0.2*soa_fee2a899-b630-4c7c-8bbb-c740d37a1b03/TechDocModifyProcess.service?WSDL
    Below is the java code I used to call the service.
    try {
    NormalizedMessage input = new NormalizedMessageImpl();
    String uuid = "uuid:" + UUID.randomUUID();
    input.addProperty(NormalizedMessage.PROPERTY_CONVERSATION_ID,
    uuid);
    // payload is the partname of the process operation
    input.getPayload().put("creator", "jcooper");
    input.getPayload().put("notificationId", 1L);
    input.getPayload().put("title", "test");
    // process is the operation of the employee service
    NormalizedMessage res = null;
    try {
    svc.post("operation", input);
    } catch (Exception e) {
    e.printStackTrace();
    } catch (ProcessMetadataServiceException e) {
    e.printStackTrace();
    } catch (Exception e) {
    e.printStackTrace();
    Below is the exception stack trace:
    oracle.fabric.common.FabricInvocationException: java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.RuntimeException: No ADF binding is defined for the service.!
         at oracle.soa.management.internal.facade.ServiceImpl.post(ServiceImpl.java:178)
         at com.smec.eis.bpm.api.SOASvcProvider.main(SOASvcProvider.java:84)
    Caused by: java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.RuntimeException: No ADF binding is defined for the service.!
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
         at oracle.soa.management.internal.ejb.impl.FacadeFinderBean_4vacyo_FacadeFinderBeanImpl_1035_WLStub.executeServiceMethod(Unknown Source)
         at oracle.soa.management.internal.ejb.EJBLocatorImpl.executeServiceMethod(EJBLocatorImpl.java:837)
         at oracle.soa.management.internal.facade.ServiceImpl.post(ServiceImpl.java:174)
         ... 1 more
    Caused by: java.lang.RuntimeException: No ADF binding is defined for the service.!
         at oracle.soa.management.internal.ejb.impl.FacadeFinderBeanImpl.executeServiceMethod(FacadeFinderBeanImpl.java:982)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:94)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:81)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:112)
         at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:105)
         at sun.reflect.GeneratedMethodAccessor2129.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy411.executeServiceMethod(Unknown Source)
         at oracle.soa.management.internal.ejb.impl.FacadeFinderBean_4vacyo_FacadeFinderBeanImpl.__WL_invoke(Unknown Source)
         at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
         at oracle.soa.management.internal.ejb.impl.FacadeFinderBean_4vacyo_FacadeFinderBeanImpl.executeServiceMethod(Unknown Source)
         at oracle.soa.management.internal.ejb.impl.FacadeFinderBean_4vacyo_FacadeFinderBeanImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:668)
         at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    fusion order demo to the rescue ..
    specify binding.adf within the <service> in composite.xml and you are good to go ..

  • Start a BPM process programmatically

    Hi Experts,
    I am trying to start my BPM process using a button event from WD JAVA. I have created a Web service and I have assigned it with my start step of process. But, problem is in WS Navigator I am able to see that service in Local JAVA AS but not in my central server. Can any body please tell me how to publish web service in central server or any other alternative to start BPM from WD JAVA.
    Regards
    Pranav

    Thanks for replying again Arafat. I am not getting any deploy or build error. What i have done till now is
    1. Expand the process modeling
    2. Expand service interfaces
    3. Right click on WSDL Files folder and selected new WSDL.
    4. Followed all the steps.
    5. Deploy local development
    Not getting any error here. But when i tried testing it in WS navigator i am not able to see my service there in providedsystems.
    please suggest some thing.
    Regards
    Pranav

  • How to  Instantiate Oracle BPM Process Webservice from the OSB

    Hi,
    In our project we have one requirement i.e Instantiate Oracle BPM Process Webservice from the OSB.After register BPM service in to OSB I am creating one Message flow to instantiate BPM Process.
    first call to startSession Operation, then use response of startSession operation is used as reqest for BPM process operation.
    Can u tell me how do we use response of startSession operation to the request of BPM process.
    Thanks in Advance.

    An easier way of instantiating a BPM process via a WS call is to set the authentication type to 'Username Token Profile' on your web service operation in BPM studio and then redeploy it. If you use this type of security on your bpm process operations you can start the process in one call instead of having to get a session first and then starting the process.
    Once you've updating the process, re-register the new process WSDL and business service with OSB (or import it manually) and you can just call the start process operation in one request (passing a username and password using the WS-UsernameToken method) without having to get a session first.
    Hope this all make sense,
    Mike.

  • Instantiate Oracle BPM Process Webservice from the OSB.

    Hi,
    In our project we have one requirement i.e Instantiate Oracle BPM Process Webservice from the OSB.After register BPM service in to OSB I am creating one Message flow to instantiate BPM Process.
    first call to startSession Operation, then use response of startSession operation is used as reqest for BPM process operation.
    Can u tell me how do we use response of startSession operation to the request of BPM process.
    Thanks in Advance.

    An easier way of instantiating a BPM process via a WS call is to set the authentication type to 'Username Token Profile' on your web service operation in BPM studio and then redeploy it. If you use this type of security on your bpm process operations you can start the process in one call instead of having to get a session first and then starting the process.
    Once you've updating the process, re-register the new process WSDL and business service with OSB (or import it manually) and you can just call the start process operation in one request (passing a username and password using the WS-UsernameToken method) without having to get a session first.
    Hope this all make sense,
    Mike.

  • Where is the Services folder?

    I did a release build but in the build there is no Services Folder like in the debug build? Where is the Services folder and where do I put it?
    Sorry, new to Flex and FB .... ;-)
    Brad Lawryk
    Adobe Community Professional: Dreamweaver
    Northern British Columbia Adobe Usergroup: Manager
    My Adobe Blog: http://blog.lawryk.com

    About the site you sent, I think it’s a bad sql being executed, the error that I got was this
    >>
    MySQL Error - 1047: Unknown command
    #0 /homepages/35/d280850650/htdocs/auroragraphix/quotes/services/QuotesService.php(59): QuotesService->throwExceptionOnError()
    #1 : QuotesService->getAllQuotes()
    #2 : ReflectionMethod->invokeArgs(Object(QuotesService), Array)
    #3 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Server/Reflectio n/Function/Abstract.php(368): call_user_func_array(Array, Array)
    #4 : Zend_Server_Reflection_Function_Abstract->__call('invokeArgs', Array)
    #5 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(3 56): Zend_Server_Reflection_Method->invokeArgs(Object(QuotesService), Array)
    #6 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(5 50): Zend_Amf_Server->_dispatch('getAllQuotes', Array, 'QuotesService')
    #7 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(6 26): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
    #8 /homepages/35/d280850650/htdocs/auroragraphix/quotes/gateway.php(69): Zend_Amf_Server->handle()
    #9
    <<
    About the documentation, can you check this http://help.adobe.com/en_US/flashbuilder/using/WS6f97d7caa66ef6eb1e63e3d11b6c4d0d21-7f99.h tml#WSbde04e3d3e6474c4590ecaa71247398d84f-8000
    Thanks
    -Sunil

  • Where is the Services Folder placed in my mac?

    How can I get into the Services 'menu' Folder (Finder Menu/Services). I mean, where is the "Services menu" Folder placed in my mac?
    Thanks.

    If you are looking for a way to edit the items that appear in the Services menu... there is not a specific directory that controls the list.
    However there is a lovely (donationware) Application called Service Scrubber that enables editing of the menu. You can download it at: http://www.manytricks.com/servicescrubber/
    Cheers.
    Rodney

  • Why does a BPM Process fail at the Start Activity?

    Hello All,
    We're currently working on a Dev environement (WLS 10.3), where we're experiencing issues with BPM Processes that fail at the start node. The error observed is a "Null Pointer Exception" despite there definteily being parameters passed into the process.
    I've observed the trace in the EM after invoking the process and notice that the process fails as soon as it enters the start activity.
    One of the possible explanations could be an out of memory issue. Has anyone experienced this before?
    BPM : SOA Suite 11g.
    Thank you.

    If you have memory - issues, you should look at the Weblogic-logs.

  • Getting error while Startting a BPM process programmatically

    Hi Experts,
    I am getting an error while trying to start the BPM process programmatically. What i have done till now is
    1. Created a WS in process composer
    2. Binded this ws with start of the process
    3. Created input parameters
    4. Testing it in WS Navigator
    I am following this doc /people/arafat.farooqui/blog/2009/08/13/introduction-to-sap-netweaver-bpm-part-4
    and I am getting error while testing in WS Navigator. I am getting error at the last step i.e. in result step and the error is
    Web Service returned an error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Client" Fault String: "No operation found using soap keys [], [cn_comments]. InterfaceMapping Object class: com.sap.engine.services.webservices.espbase.mappings.InterfaceMapping mappings: (BindingType=Soap, SEIName=NewWSDLFile, BindingQName=(http://www.example.org/NewWSDLFile/)NewWSDLFileSOAP, PortTypeQName=(http://www.example.org/NewWSDLFile/)NewWSDLFile, SoapVersion=SOAP11, Galaxy_SDO=true, InterfaceMappingID=45ffb27c:1237f972cd8:-7d7e)."
    If possible can any one help me out.
    Thanks and regards
    Pranav

    Hi Arafat,
    Thanks for replying. Yes i have completed the output mapping. Input parameters i need for this service are :
    1. cn_comments
    ca_comments
    2. cn_planningGroup
    ca_account
    ca_serialnumber
    and few more attributes
    Now, what i did was i have created a complex type and added elements in it. But to my surprise i was not able to get these nodes and elements in output mapping. So, i changed the type of "parameter" from "new operation" to my complex type. By doing this i was able to get my nodes and elements in output mapping. Now i tested the entire thing in WS Navigator and i got that error.
    Please suggest how o proceed.
    Regards
    Pranav

  • How to start a BPM process from ERP system

    Hi,
    I created a process in Netweaver Developer Studio with the Process Composer in SAP CE 7.1 BPM, now I want to automatically start the process by saving a SAP document like purchase requisition or purchase order. Therefore I think about implementing a UserExit / Badi or something else.
    The following systems are available in my Landascape:
    - PI 7.1
    - ERP 2005
    - CE 7.1 EHP1 with ESR
    Does someone have an idea how to start the BPM Process or how to trigger start event?
    Greetings,
    Christian

    the process by saving a SAP document like purchase requisition or purchase order.
    Based on your business process, you will have to decide what data should be sent to other system. It could be in the form of Idoc trigger or an RFC calls. If there are non-SAP systems involved, you should be using PI 7.1 too. In that case, you can communicate using Abap proxy call too. For this you may either call an RFC internally in a report and schedule it.
    Regards,
    Prateek

  • BPM Process As a Web-Service Username and Password

    Hi all,
    We have exposed a Process as a Web-Service WSDL to another system . We use Username Token Profile to enter the username and password to connect to the Web-Service..
    Now what we do is we have a role in our project and we create a dummy Web-Service user and add the role to that user and then use its password and username to call the Web-Service.
    Can we change this?
    Can we have a dummy username and password not associated with any role in BPM used in our Web-Service?

    Did you use PAPI code inside your web service or did u just use PAPI Web Services ( like did u just pressed the button Launch PAPI Web Services ) and it created the WSDL for you and u used it to create the client?
    I am using the latest version of OBPM..
    Oracle 10.3.10
    Can you let me know what do u mean by PAPI interface.. Is it the PAPI code of is the PAPI Web Service which is built by BPM automatically and could be used?
    Edited by: user8707382 on Sep 10, 2009 9:00 AM

  • JNDI Error when Oracle BPM Process invokes an EJB Service Adapter

    Hi All,
    I am trying to invoke an EJB Service from my Oralce BPM process/workflow. I have provided the JNDI name in EJB service adapter in Jdeverloper also. Even though I have configured the JNDI in weblogic server properly, i am getting some JNDI invocation error (FabricInvocationException) as below.
    Can somebody help me on this.
    Non Recoverable System Fault :
    *<bpelFault><faultType>0</faultType><remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>oracle.fabric.common.FabricInvocationException: Exception creating jndi context for ejb invocation:</summary></part><part name="detail"><detail>Unable to resolve 'XXXXXXInterfaceRemote'. Resolved ''</detail></part><part name="code"><code>null</code></part></remoteFault></bpelFault>*
    Edited by: 920456 on Apr 2, 2013 2:09 AM

    Hi All,
    Still i am facing the above stated challenge, i am getting a JNDI error when i am trying to call it from Oracle BPM process.
    can somebody tell me Does Oracle SOA Suite - EJB Adapter version 3.0 has any runtime bugs ? etc.
    Bcoz in the below link it is given something like EJB Version 2 Are Not Supported During Runtime. So, i want to check whether any bugs.
    [Oracle SOA EJB Adapter Version bugs|http://www.oracle.com/technetwork/middleware/docs/aiasoarelnotesps5-1455925.html#intadapt]
    Regards,
    Satya

  • Can you advice us where is the service center in Saudi Arabia – Jeddah

    Good Morning
    i would like to know that where is your service center located in JEDDAH ( Saudi Arabia )
    thanks
    Mohamed Rizwan Marzook
    Mob : +966 502748923

    The charger is covered under the warranty.  Contact Apple support, http://support.apple.com/kb/HE57 or try the ExpressLane at https://expressslane.apple.com and see what support they will give.  They often will ship a part such as a charger and you ship yours back within a specified time.

  • Where is the service impl referenced with JaxRpcPortProxyFactoryBean

    I have an "ad hoc" web service (not using standard listener infrastructures) in WLS 8.1.4. The business logic of the service is implemented with Spring. I'm looking at my options for porting this to WLS 9.2.
    I see the JaxRpcPortProxyFactoryBean as perhaps the standard way to define a web service interface in Spring. What confuses me is that I don't see where in this bean definition you specify what class actually implements the business logic for the service. The example I saw in the Spring documentation seems to gloss over this.

    Hi Elad,
    As per you ques <b><When I'm looking for this service in business service list I'm not found any service with this name></b>
    Make sure if you are using the business service or business system?
    For both the cases you can find it in ID as given below:
    Under TAB <b>Objects </b> -
    > <b>Service Without Prty</b> -
    > <b>Business System/Business Service</b>
    Once you find it (service/sysem) you can delete the CC from it by right clicking on CC & pressing Delete option.
    Regards,
    Sarvesh

  • N97 - Where is the Services Integration and Proper...

    Well have had the N97 for a good couple of months now, and I am surprised at the lack of intuitiveness within the phone out of the box. It all points to poor implementation of the services if this is the case.Where is the ability to click on a contact and view is twitter, MySpace, MSN or a Facebook status at a glance from a contact?  I have completed the MSN and facebook contact details in the contact application, but when I click on these details within contacts the N97 does absolutely nothing......what’s the point? 
    In this modern day and age of integrated services software within mobile phones, are these N97 contact details for information only whilst other lesser makes of phones contacts can take you directly to a conversation, widget or service straight from this kind of contact detail. If this is all the functionality that N97 has then we are far behind the rest, unless of course I'm missing something. 
    It all points to poor implementation of the services within the N97 if this is the case.
    If the N97 and the N97mini remain like this then they seem to be real failed experiments in my opinion.

    About the site you sent, I think it’s a bad sql being executed, the error that I got was this
    >>
    MySQL Error - 1047: Unknown command
    #0 /homepages/35/d280850650/htdocs/auroragraphix/quotes/services/QuotesService.php(59): QuotesService->throwExceptionOnError()
    #1 : QuotesService->getAllQuotes()
    #2 : ReflectionMethod->invokeArgs(Object(QuotesService), Array)
    #3 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Server/Reflectio n/Function/Abstract.php(368): call_user_func_array(Array, Array)
    #4 : Zend_Server_Reflection_Function_Abstract->__call('invokeArgs', Array)
    #5 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(3 56): Zend_Server_Reflection_Method->invokeArgs(Object(QuotesService), Array)
    #6 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(5 50): Zend_Amf_Server->_dispatch('getAllQuotes', Array, 'QuotesService')
    #7 /homepages/35/d280850650/htdocs/auroragraphix/ZendFramework/library/Zend/Amf/Server.php(6 26): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
    #8 /homepages/35/d280850650/htdocs/auroragraphix/quotes/gateway.php(69): Zend_Amf_Server->handle()
    #9
    <<
    About the documentation, can you check this http://help.adobe.com/en_US/flashbuilder/using/WS6f97d7caa66ef6eb1e63e3d11b6c4d0d21-7f99.h tml#WSbde04e3d3e6474c4590ecaa71247398d84f-8000
    Thanks
    -Sunil

Maybe you are looking for