Implementing Multiple operations in a web service in JCAPS 5.1.3

Hi,
I am using JCAPS 5.1.3 and have a requirement where in I have to implement multiple operations and expose them as a webservice.
The complexity of operations is medium, they have to log the input message into database.
In order to achieve this I have come up with two models:
Model-1:1.Create a Business process in eInsight and use event based decisons and implement various operations.
2.Create jcd operations in order to log messages into database.
3.Expose the business process as a webservice
Model-2:1.Create a jcd for each operation and make it Callable as an External SOAP web service.
2.Expose each jcd as a webservice
I would like to know which of these models gives better performance for the webservice .I see eInsight in earlier versions was low in performance.
Please let me know if you have any ideas on this.
Thanks in advance.
Regards,
Nag
Edited by: Nag4.5.3 on Jun 10, 2008 12:02 PM

I'd try the idea #1 first. EInsight performances could be an issue only for very CPU-intensive operations, but as you need to interact with a database usually this I/O is going to be the real bottleneck. Instead, you should avoid eInsight not mainly because of hypothetical performance issues but when you foresee the need to write very complex logic, which is much easier to code and maintain in Java within JCDs than in BPEL. However remember that JCDs exposed as WS need the latest ESR Rollup to work properly, if I well recall they were single-threaded in plain JCAPS 5.1.3.
By the way, if your WSDL describes multiple operations you could probably implement them one by one by distinct eInsight BPs if you need to distribute them differently, you are not forced to use a single BP with event-based decisions, it is a matter of your taste and requirements. In my experience however in the past I had some annoying issues with WSDL exposing multiple operations and eInsight, hopefully those are gone with the latest Rollup but do some quick test yourself before betting all your money on it.

Similar Messages

  • Following error occours when running a BI Publisher report in Siebel: Operation ' ? ' of Web Service ' ? . ? ' at port ' ? ' failed with the following explanation: " ? ".(SBL-EAI-04308)

    I am installing a new reporting server.
    When running a report I get the above error:
    Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308)
    Any ideas?

    Have a look here for Oracle's guidelines on troubleshooting such errors:
    http://download.oracle.com/docs/cd/E14004_01/books/Reports/ReportsTroubleshoot.html

  • BIP Error: SBL-EAI-04308: Operation ' ? ' of Web Service ' ? . ? ' at port

    Hi Gurus,
    We are setting up new sandbox environment with Siebel 8.1.1.5 s/w and BIP 10.1.3.4.1. Siebel 8.1.1.5 is successfully installed and configured. Followed all the installation steps mentioned in the BIP Guide. I can login to BIP Console (http://[Server]:9704/xmlpserver) without any issues. However when clicked on "Upload Files" button in Administration - BI Publisher Reports > Reports - Standard Templates view I am getting the below error:
    SBL-EAI-04308: Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".
    ObjMgrBusServiceLog     InvokeMethod     4     000000024ebd1d18:0     2011-11-11 10:07:19     Business Service 'XMLP Adapter Service' invoke method 'UploadReport' Execute Time: 2.062 seconds.
    ObjMgrBusServiceLog     InvokeMethod     4     000000024ebd1d18:0     2011-11-11 10:07:19     End: Business Service 'XMLP Adapter Service' invoke method: 'UploadReport' at 15fb7688
    ObjMgrBusServiceLog     Delete     4     000000024ebd1d18:0     2011-11-11 10:07:19     Business Service 'XMLP Adapter Service' (address: '15fb7688')was unregsitered at model '5f29f30' for session ''
    If anyone have got the similar issue please provide me your input. Thanks in advance.
    Edited by: user5741133 on Nov 11, 2011 7:41 AM

    Have a look here for Oracle's guidelines on troubleshooting such errors:
    http://download.oracle.com/docs/cd/E14004_01/books/Reports/ReportsTroubleshoot.html

  • Need assistance invoking a Web Service from JCaps 5.1.2.

    Hello,
    I am working with web services for the first time ever, and am having some trouble invoking one from with JCaps 5.1.2. Basically, the business process is validating fine, and will run up to the Invoke procedure, at which time it throws a log file error:
    HTTP Status-Code 404: Not Found - /wsTestInvoke and the associated fault container is not available.
    However, I have already tested this same wsdl in SoapUI, from the same server which is running the domain. SoapUI runs this wsdl without any errors.
    As stated, this is the first time I have ever tried to use web services. I�m at a loss right now as to what steps to take to even try to debug this. My guess is that something in the JCaps setup needs updated, but I�m not sure what, or where to begin looking.
    FYI, I have created a web service that I am hosting, and it can be invoked fine from SoapUI. My SoapHTTP Client and Server are both configured the same right now, and I know at least the Server is working, since I can host a WS. I just can't seem to invoke one.
    Has anyone seen this error when working with Web Services in JCaps 5.1.2, and any ideas of where to look to start debugging this?
    Any info is appreciated.
    Thanks,
    Alan

    I figured this out myself, and just want to post the resolution in case anyone else runs into this.
    This issue was that I was setting the port and server in the HTTP Client External System config, to be the JCaps domain server and HTTP port. I found that you need to leave the external system properties blank in the HTTP Client, and when you build the code, the environment items then get auto-populated from the wsdl.
    Problem solved.

  • Passing multiple table entries to web service

    Hi,
    I have a requirement (in Offline Scenario) to pass multiple rows in a Table(Dynamic) data from Adobe forms to a Web Service.
    Multiple rows are added in the Form, but only the first row is getting passed to the Web service tables parameter.
    Please suggest.
    Regards,
    Jayapal.

    Hi,
    if you warp the proxy class in a JavaBean and expose this JavaBean as a datacontrol then you could have a method that takes username and password to set it on the proxy. This way you can pass the connect information through the binding layer
    e.g.
    OperationBinding oper = (OperationBinding ) bindings.get(myAuthMethod);
    oper.getParamMap("username",username);
    oper.getParamMap("password",password);
    oper.execute();
    Note that the method arguments can also be bound to EL in th epageDef file so they read directly from the session scope
    Frank

  • Return multiple values from a Web Service

    Hi,
    I'm learning JAX-WS web services and I'm wondering, how do I return multiple data like, say multiple rows from a table through a web service? I understand that I can use Holders, but those are for JAX-RPC if I'm not mistaken, and I'd like to know the alternative for JAX-WS(if there is any).
    Any help would be much appreciated.

    Debojit Sinha wrote:
    A greeting service where the client types a string(preferably a name), and the service returns "Hello, " followed by that name. I faced the error with returning objects when I tried to return the results of a query with a set of serialized JavaBeans passed into an arraylist. I don't have the complete error log with me now, but the error was generated when deploying with JDeveloper 11g, and it was something about JAXB content model error. Also, There was an error regarding javax.naming.Name saying that JAXB couldn't handle interfaces.yes, you can't return any interfaces. so, instead of returning a List, you have to return an ArrayList. if you use xjc to generate types from a schema, then it will normally generate a "wrapper" class around any collections (which will in turn hold a List).

  • How to view multiple output parameters from web services

    I have used the Labview tool to create a .NET assembly from a WSDL file.
    In the WSDL file the service has been defined to return 2 output parameters.
    In Labview, when I invoke the method for this service the first output parameter ends up as the return value of the method.  I can create an indicator for this and it gets updated properly when I run the VIS to use the web service..  The indicator is an integer value but recognizes the type defined within the WSDL file. 
    The second output parameter shows up as an output value.  When I right click on it and create an indicator for it I get a .NET icon on the front panel rather than an integer value. 
    How can I view the value for this second output parameter after running the web service?
    Is there a difference in how multiple output parameters handled in newer versions of Labview (I am using verison 7.1)?

    scrooge wrote:
    You can try this link .
    the link is dead... or i dont have access..

  • Unknown operation calling a Web Service

    I have a problem writting a Web Service client. I've tried with Stubs and Dynamic Proxy but both give me the same error when I call the WS method named 'Saluda' located in class DorsalSEI :
    Unknown Operation: {urn:Dorsal/wsdl}Saluda
    at org.WS.server.DorsalSEI_Tie.peekFirstBodyElement(DorsalSEI_Tie.java:84)
    at com.sun.xml.rpc.server.StreamingHandler.handle(StreamingHandler.java:218)
    at com.sun.xml.rpc.server.http.JAXRPCServletDelegate.doPost(JAXRPCServletDelegate.java:443)
    at com.sun.enterprise.webservice.JAXRPCServlet.doPost(JAXRPCServlet.java:50)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    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:585)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:184)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:653)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:534)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doTask(ProcessorTask.java:403)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:55)
    |#]
    I'm using jwdsp1.5, Java Application Server 8.1 and NetBeans 4.1.
    Any help ?�??
    Thanks in advance!

    My conection works but I dont know how to pass a xsd:complexType parameter to a method that is complexType. The parameter is this
    and my code is:
              var myProxy = Net.SOAP.connect("http://localhost:8080/gsitmi/services/SsoSessionService?wsdl");
              // Invoke the echoString web service
                   var myStringObject = {
                   soapType: "xsd:string",
                   soapValue: "000000000300000002#6768E0673201665B0B0862A52FC03ED0"
              var result = myProxy.getSsoCompleteSession(myStringObject);
              // Display the response in the console:
              //console.println("Result is " + result);
    i get a soaperror. Not eought parameters

  • F-44  ZBAPI MULTIPLE LINE SELECTIONS FOR WEB SERVICES

    HI TO ALL,
              I HAVE WRITTEN ZBAPI FOR POSTING MULTIPLE LINE SELECTIONS FOR TCODE F-44, THE ZBAPI  CONSIST OF BDC PROGRAM, WHICH IS WORKING IN SAP SYSTEM PERFECTLY BUT WHEN I AM USING IT IN WEB SERVICES IT IS THROWING A  ERROR MESSAGE.
                     PLEASE CAN ANY ONE TELL ME DOES THIS PROCESS WILL WORK OR NOT, IF YES HOW IS IT POSSIBLE

    Hi Gabriel,
    Let me try to answer some of your questions:
    1) The "Requires Secure Access" attribute of a resource handler controls whether this handler must be accessed/consumed only over SSL (HTTPS). Oracle Database Cloud Schema Service is only offered over SSL, so this attribute does not have any effect on RESTful services deployed in this environment (because secure access is always required and there is no other way). That said, if you want to access such web service from your own APEX instance, your instance must have Oracle Wallet configured with appropriate SSL certificate.
    2) The URI parameters are not required. If your web service returns data for many entities (for example, list of employees in employees/), you may not need a parameter. If your web service returns data for one specific entity (for example, details of one employee in employees/{id}), you may want to identify that entity with a URI parameter.
    3) You can have many URI parameters, for example: customers/{id}/orders/{order_id}.
    4) Yes, these are the same HTTP methods/verbs you would use from PHP.
    5) If you are trying this POST example from your own APEX instance (not Oracle Database Cloud Schema Service) and you are trying to access a web service over SSL, then it is likely that the Oracle Wallet used by your instance does not include the required SSL certificate(s), or the Oracle Wallet is not configured at all.
    6) I recommend to check RESTful Web Services for the Oracle Database Cloud white paper and Oracle REST Data Services Developers Guide. Oracle REST Data Services is the technology that enables RESTful services in the Oracle Database Cloud Schema Service.
    You can certainly create your own web services in the Oracle Database Cloud Schema Service and consume them from the same environment.
    Vlad

  • Specifying multiple books in WS2 web services query

    Hi,
    I am wondering if anybody has managed to use web services to query data and restrain by more than 1 book of business. According Oracle Support this can be done though the use of searchspec to determine the Book. I have tried this with no success
    Here is a SOAP message with just a single Book reference. It returns no results?
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
    <ContactQueryPage_Input xmlns="urn:crmondemand/ws/ecbs/contact/">
    <ListOfContact xmlns="urn:/crmondemand/xml/Contact/Query">
    <Contact searchspec="([ContactFirstName] = 'John') AND ([BookId] = 'AHIA-N3S58')"><Id />
    </Contact>
    </ListOfContact>
    </ContactQueryPage_Input></soap:Body></soap:Envelope>
    For multiple books the searchspec would be
    <Contact searchspec="([ContactFirstName] = 'John') AND ([BookId] = 'AHIA-N3S58') AND ([BookId] = 'AHIA-N3S76')"><Id />
    Any guidance is appreciated.
    Edited by: user10730659 on 11-Nov-2012 20:59

    Hi Christina,
    Thanks for your response. I had a typo in my initial description the searspec should have read:
    <Contact searchspec="([ContactFirstName] = 'John') AND (([BookId] = 'AHIA-N3S58') OR ([BookId] = 'AHIA-N3S76'))"><Id />
    Have you been able to specify the BookId in the searchspec successfully?
    I dont get an error thrown just no results returned - when I just specfiy 1 book. I normally set the book Id in the query but when using multiple books this won't work, hence why I am looking to use the searchspec...

  • Publish ABAP utility implemented on PI system as Web service via PI itself.

    Hello Experts,
    We have a requirement where we might need to publish a feature related to user management from ABAP stack of PI as a web service via PI itself.
    So scenario might look like
    SOAP Client -> PI -> PI (ABAP functionality)
    I have seen some blogs on SDN which suggest publishing FM directly using menu options in SE37 (Utilities (M) u2192 More Utilities u2192 Create Web Service u2192 From the Function Module). But then this interface will not be under PI and will be exception to general architecture of having all web services published via PI.
    May be its a very simple scenario and I am thinking of solution in complex ways. Any quick inputs from experts on what would be the best way to implement this , will be a great help for me to start quickly.
    Can we implement a normal SOAP to Proxy(ABAP) scenario for PI as we do while exposing services on ECC or any other ABAP system as a SOAP service?
    Or is there any smart way of handling this scenario?
    Kind Regards,
    Abhijeet.

    Thanks Raja & Greg for quick suggestions & your valuable time.
    Appropriate points rewarded.
    Greg, thanks for suggesting names of standard BAPI, it will save us from reinventing the wheel by using custom codes.
    I will work out on SOAP to RFC scenario & close the thread when scenario works.
    Just to Share: Yesterday, just out of curiosity I tried to use proxy scenario where PI system itself was Receiver in our sandbox, the message goes in a kind of infinite loop and keeps processing the message again and again till it turns out to error.
    I  tried it using the existing Business system for PI where it is configured as Integration Server & I have also tried to create a new business system for a different client on PI system with role as "Application System", but still the result was same.
    Kind Regards,
    Abhijeet.

  • Operation Timeout on Web Services Tutorial

    Trying to run the DEPT/EMP Web Service from the tutorial at: http://otn.oracle.com/tech/webservices/htdocs/series/free/content.html
    Just installed JDeveloper 9.0.3 via Quickstart guide. Connection tested successfully.
    Getting this timeout error. Wondering if site is down or if it matters that my install was under a path that has spaces in it.
    Thanks.
    mypackage1.IOTNDeptEmpStub
    [SOAPException: faultCode=SOAP-ENV:IOException; msg=Operation timed out: connect; targetException=java.net.ConnectException: Operation timed out: connect]

    I checked at 6:30 PM PST and it is up. With a recent re-deployment the endpoint uri in the stub that gets generated is now pointing at:
    http://otn.oracle.com:7790/ws/deptemp
    which is surfacing the Web server behind the scenes. This works, but the correct endpoint is:
    http://otn.oracle.com/ws/deptemp
    This may also resolve the problem.
    I am working on getting the services re-deployed as there is also a bug in the Push/Mobile service noted in another note this week that is a serious bug. Hopefully early next week these two should be resolved. Sorry for any inconvenience.
    Mike.

  • New operation for existing web service...please help!

    Hello,
    I created a web service using "Create Web Service" wizard from SE37 for my function group - ZTEST. There are total 2 function modules in this function group - ZTEST1 and ZTEST2. It has been deployed under SOAP runtime. The service is active and tested successfully. In SOAMANAGER, I see ZTEST1 and ZTEST2 as different operations. Now I have created a new function module ZTEST3 under function group ZTEST and want it to be available as third operation in my existing web service. How can I do that?

    Under "Internal View" tab of service definition right click and select "Modify Operation" it will give you option to chose other FMs.
    Regards,
    Gourav

  • Implementation oF messageQ in java web services

    Hi All,
    Can any one tell me how one can implement MSMQ in java for handling web service request and response.
    Thanks in Advance
    Harshal

    I am really thankful, for your response.
    Ans
    1) Web services are implementted in java using apache cxf 2.2.3 framework and It is running on weblogic werver 10.3 and 10.3.4.
    2) No, I know your according to call back service concept but instead of this we are having WSDL URL where we need to send response back.
    3) Yes, currently we are processing in thread based processing (i.e. for each request we are creating one thread which will process it completely), Which may causes database dead lock, so to remove this we are willing to process requests sequentially.(using MessageQ)
    For my knowledge, I am having little confusion that Is MessageQ and JMS are same?
    Thanks,
    Harshal

  • How to implement the odata model with web service

    hi dear all,
    i am trying to expose the web service as odata service in gwpa (not the NW Gateway) and i want to deploy it into smp 3.0
    but cannot find any helpful materials on it.
    could you give me some guide?
    thank you very much
    best regards
    lawrence

    Hi Lawrence,
    There are plenty blogs available. You can check either
    Marvin Hoffmann
    How to use Integration Gateway with SMP 3.0 (Part 1)
    Let me know if you face any issues.
    Rgrds,
    Jitendra

Maybe you are looking for