Issue in invoking the siebel service

Hi,
    Here i am poll the data from DB adapter as Requabcs  and sent to Siebel services through ProvABCS and i am using after read option is "Delete the Row(s)that were Read" in DB Adapter.When i put the data in DB the DB Adapter polling is working but in ProvABCS it 's always it gives "invokepanding...... ".and it does't give any error .and data also not deleted in DB in EM Instance State shows "completed " .and siebel end services are up.
when come to SOA server i seen this error please any body help on this.
[soa_server1] [ERROR] [] [oracle.soa.bpel.system] [tid: Workmanager: , Version: 0, Scheduled=false, Started=false, Wait time: 0 ms\n] [userId: <anonymous>] [ecid: 6a64a370db9cb4a0:2c2ed1ee:14108249193:-8000-00000000000039b0,0] [APP: soa-infra] [composite_name: EcoAddresDBAdapter] [component_name: EcoAddresBDAdapter] [component_instance_id: 9A3AB3901A2411E3BFC00FAC4AF8BE7D] [composite_instance_id: 130085] Error while invoking bean "cube delivery": Cannot access instance.[[
The action "update action" cannot be performed on the instance "130043" because of its current state ("unknown").
The current instance state did not allow the requested action to be performed.
Consult the product documentation for a list of all the permissible actions that can be performed on an instance when it is in the "unknown" state.
ORABPEL-02041
Cannot access instance.
The action "update action" cannot be performed on the instance "130043" because of its current state ("unknown").
The current instance state did not allow the requested action to be performed.
Consult the product documentation for a list of all the permissible actions that can be performed on an instance when it is in the "unknown" state.
    at com.collaxa.cube.engine.CubeEngine.checkIfCanAccess(CubeEngine.java:4373)
    at com.collaxa.cube.engine.CubeEngine.checkIfCanAccess(CubeEngine.java:4415)
    at com.collaxa.cube.engine.CubeEngine.finalizeActivity(CubeEngine.java:2923)
    at com.collaxa.cube.engine.CubeEngine.checkBlockConditions(CubeEngine.java:3811)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2712)
    at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1190)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1093)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessage
Thank you,
Ram

To call restful service from rest client try the below.
Its working for me..
http://www.soapui.org/REST-Testing/getting-started.html
Let us know if you have any issue with the above.
Thanks,
Vijay

Similar Messages

  • Issue: BPEL invoking Axis web service

    Hi
    We are calling a Axis web service from BPEL.. The web service has been defined to be a request only 1 way service. The axis service takes around 3-5 minutes to complete the job( data insertion in DB).. But seems like when BPEL invokes the web service; BPEL thread is waiting (thread is not released) and the BPEL process does not move forward until the web service completes the job....
    Any pointers on how the deal with the issue will be helpful!!
    Thanks

    Hi Lovenish,
    Goto console-> select domain> Configuration->JTA
    Check timeout seconds.
    2. i don't know what kind of partner link you are invoking.
    check composite.xml, is there any property like retry.interval .
    3. ◦SyncMaxWaitTime: The maximum time a request and response operation takes before timing out.
    The maximum time a request/response operation will take before it times out. The default value is 45 seconds.
    Regards,
    Padmanabham

  • Oracle EBS throwing exception while invoking the web service

    Hi,
    When I try to invoke the web service through SOAPUI it is working perfectly fine. however when I try to call it using a .net client. I am getting the below exception:
    oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: System ErrorServiceGenerationError: Error in Creating Response MessageServiceGenerationError: Error in getting translated error messagenull.
    Please help me.
    Thanks,
    Manish

    Hi Manish,
    Please check notes:
    R12.1.1: ISG BPEL Calls Results in java.net.sockettimeoutexception & oracle.apps.fnd.soa.util.SOAException (Doc ID 1103755.1)
    "Error in getting translated error messagenull" When Invoking a web service from SOAP UI (Doc ID 1507313.1)
    Thanks &
    Best Regards,
    Asif

  • Problem in invoking the web services

    Hi all,
    I am new to java web services
    i develoed a simple webservices here i am posting the code
    i generated every thing using wstools of Jboss4.0.5AS
    package com.javasrc.webservices.age;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface Age extends Remote
    public String age( String name, Integer age ) throws RemoteException;
    package com.javasrc.webservices.age;
    public class Age_Imp
         public String age( String name, Integer age )
              return name + " is " + age + " years old!";
    when i am invoking using the client progrmme i am getting nullpointer exception
    ie.
    java.lang.NullPointerException
         at org.apache.axis.client.Call.getTypeMapping(Call.java:2402)
         at org.apache.axis.client.Call.setReturnType(Call.java:1230)
         at org.apache.axis.client.Call.setOperation(Call.java:1412)
         at org.apache.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:369)
         at $Proxy0.age(Unknown Source)
         at com.javasrc.webservices.age.AgeClient.main(AgeClient.java:35)
    Exception in thread "main"
    **this is my client programm**
    package com.javasrc.webservices.age;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceFactory;
    import com.javasrc.webservices.age.Age;
    import javax.xml.namespace.QName;
    import java.net.URL;
    public class AgeClient
    public static void main( String[] args ) throws Exception {
    if( args.length < 3 )
    System.out.println( "Usage: AgeClient urlstr name age" );
    System.exit( 0 );
    String urlstr = args[ 0 ];
    String argument = args[ 1 ];
    String argument2 = args[ 2 ];
    System.out.println( "Contacting webservice at " + urlstr );
    URL url = new URL(urlstr);
    QName qname = new QName("http://age.webservices.javasrc.com/",
    "AgeService");
    ServiceFactory factory = ServiceFactory.newInstance();
    Service service = factory.createService( url, qname );
    Age age = ( Age ) service.getPort( Age.class );
    System.out.println( "age.age(" + argument + ", " + argument2 + ")" );
    String result = age.age(argument,new Integer( argument2 ));//here i am getting error
    System.out.println( "output:" + result );
    pls help in resolving this

    Assuming this is for Oracle BPM 11g.
    I'm a novice at this and sure others will have infinitely better ideas (have I lowered your expectations enough?), but here are two thoughts. Both of these ideas assume that your child process was invoked by an Oracle BPM parent process.
    When you expose a process as a web service and invoke it asynchronously from a parent process, there is a call back service available. I've yet to figure out exactly how to get it to work, but if you look at the "Start" event's property in the composite (it's the service) you will see the callback information in the bottom dropdown. I believe what this means is that from your child process, you can use a Service activity to invoke a service that invokes the callback service back to the parent process's Service activity.
    My other idea (you're not going to like this one) would be to to invoke the subprocess using a Message Start Event activity instead of the Service activity you're currently using. If you go this route, then you could have your parent process kick off the child subprocess using a Message Start Event activity and then immediately after this have a Message Catch Event activity. The child process could have a Message Throw Event activity immediately after its Start Message Event activity that sends a notification to the parent process. The good part about this is that I've actually gotten this to work.
    You can send argument information back to the parent process, but (sorry) I don't yet know how to capture the process id.
    Wish I could be of more help and hope this helps a little.

  • Error during invoking the web service

    hi,
    i am using axis 1.2.1 & tomcat-5.0.28
    when i am trying to invoke the web service i am getting the error.
    i am passing all the parameters..then also it is giving the error.i have used the wsdl file to generate the stubs (using wsdl2java tool).the web service is in remote system.
    anybody knows Please let me know the soln.
    thanks in advance
    the error:
    Exception in thread "main" AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
    faultSubcode:
    faultString: JAXRPCTIE01: caught exception while handling request: deserialization error: java.lang.NumberFormatException: For input string: ""
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace:JAXRPCTIE01: caught exception while handling request: deserialization error: java.lang.NumberFormatException: For input string: ""

    1. Does your network have a proxy ? - if so, configure the proxy details in the SOAP adapter.
    2. Does the WS expect any credentials? - if so configure the same in the adapter.
    More: /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009

  • How to specify file name while invoking the GET_ZIP_BUNDLE service

    Hello.
    The GET_ZIP_BUNDLE service by default generate zip file with name "Bundle". I wanted to change this name runtime, that is while invoking this service. How can I do it?
    The class ziprenditions.ZipRenditionsHandler most probably handle this service by the method createRenditionBundle.
    There I saw a line:
    downloadName = LocaleResources.getString("csZipRenditionBundleName", this.m_service);I have tried to print the value of csZipRenditionBundleName and I got "Bundle". I am wondering is there any way to set a value to this message key?
    I have tried this idoc function:
    <$createRenditionBundle='some_name'$>before invoking the service. But this didn't work.
    Also I have tried to change it from Java class, and for that I have defined a custom service and did:
    LocaleUtils.encodeMessage("csZipRenditionBundleName", null, "JYM");But this also not working.
    What I want is to get the zip file with the name which is the same to the files it is archiving.
    For more information, here is how I am invoking the GET_ZIP_BUNDLE service:
    I have defined a form element:
    <form action="/cs/idcplg" method="POST" id="zipBundleForm" name="zipBundleForm">
       <input type="hidden" value="GET_ZIP_BUNDLE" name="IdcService">
       <input type="hidden" value="pkg:dDocName,pkg:dID,pkg:Rendition,pkg:RevisionSelectionMethod,pkg:AuxRenditionType" name="bundleKeys">                            
    </form>And I have a button with id downloadContent and I have attached the following JavaScript with it:
    $('#downloadContent').click(function (event){
       event.preventDefault();
       var formId = "zipBundleForm";
       var counter = 0;
       var renditionType = "";
       $("#zipBundleForm").find(":hidden").each(function() {
          if($(this).attr("name").startsWith("pkg:"))
             $(this).remove();     
       $("#downloadContentForm").find('input:checkbox:checked').each(function() {
          renditionType = $(this).val();
          $(".thumbnails").find('input:checkbox:checked').each(function() {
             if($(this).attr('data-type') == 'image'){
                createHiddenInputElement(formId, "pkg:dDocName" + counter, $(this).attr("name"));
                createHiddenInputElement(formId, "pkg:dID" + counter, $(this).attr("id"));
                createHiddenInputElement(formId, "pkg:Rendition" + counter, renditionType)
                createHiddenInputElement(formId, "pkg:RevisionSelectionMethod" + counter, "Specific");                                             
                counter++;     
       $("#zipBundleForm").submit();     
    var createHiddenInputElement = function(formId, elementName, elementValue){
       var newElement = document.createElement("input");
       newElement.setAttribute("type", "hidden");
       newElement.setAttribute("name", elementName);
       newElement.setAttribute("value", elementValue);
       $("#"+formId).append(newElement);
    }Thanks in advance.

    if you want a fixed bundle name other than "bundle", you can override the localization string entry 'csZipRenditionBundleName' in a component.

  • How can I invoke the web service manually in websphere?

    Hi
    I've developed a webservice application using Rational Application Developer (RAD). I deployed it in a websphere 6.1 application server, using the administration console to import the war file that I had previously exported with RAD.
    My webservice application is listed in the "Enterprise Applications" section of websphere's administration console as started.
    My question is: how can I invoke the web service manually? Is there some kind of websphere generated webpage that I can use to call it manually?
    I tried http://<server:port>/<contextroot> and http://<server:port>/<contextroot>/<servicename> in a webbrowser, but it doesn't work. Is it possible to invoke the web service manually, or do I need to develop a client?
    Thanks in advance
    Pedro

    Hi Bo Wang,
        Go to the Portal -> System Administration -> System Configuration
                               -> Portal Content folder
                               -> Open Visual Composer folder
        There you can see the Webservice Systems you have created through VC.
    You can delete the unwanted system here.
    Regards,
    Shemim

  • Detail; The fault returned when invoking the web service operation

    Hi,
    We are getting below errors from Coldfusion, I am not a coldfusion expert engg. so unable to trace it futher..kindly suggest some move to get this resolve.
    Detail; The fault returned when invoking the web service operation is:<br> <pre>AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultSubcode: faultString: java.lang.reflect.UndeclaredThrowableException faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace:java.lang.reflect.UndeclaredThrowableException at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:221) at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:128) at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:10 87) at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch( Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(U... ''</pre>
    Message: Cannot perform web service invocation getStudentByNRIC.
    StackTrace: coldfusion.xml.rpc.ServiceProxy$ServiceInvocationException: Cannot perform web service invocation getStudentByNRIC. at coldfusion.xml.rpc.ServiceProxy.invokeImpl(ServiceProxy.java:230) at coldfusion.xml.rpc.ServiceProxy.invoke(ServiceProxy.java:143) at 

    I expected something like:
    http://localhost:8500/opensource/QBWC_Shell.cfc?wsdl
    Apart from that, your code looks right.

  • Browser closes on invoking the Forms Services 10g.

    Hi All ,
    When I invoke the forms services using the following url in the browser , the browser window closes :-
    http://<IP-address>/forms/frmservlet
    Could anyone let me know what could be the reason for this and how to resolve it.
    Thanks,

    Apologies if I'm stating the obvious, but it couldn't be something as simple as
    http://<IP-address>/forms/frmservlet, where i don't see port's number?
    That is:
    http://<IP-address>: <port_number>/forms/frmservlet

  • Error while invoking the WSDL service of EBS from BPEL process

    Hi Team,
    when we are calling webservice client to call WSDL service which is published in Oracle EBS integrated SOA Gateway from BPEL process.
    After invoking, we are getting the below error
    <bpelFault><faultType>0</faultType><remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>FND_SOA_SERVICE_EXECUTION_ERR:oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Error while executing the service Exception returned from JCA Service Runtime. Exception returned from JCA Service Runtime. null :Please see service monitor logs for full error trace</summary></part><part name="detail"><detail>oracle.j2ee.ws.client.jaxws.JRFSOAPFaultException: Client received SOAP Fault from server : FND_SOA_SERVICE_EXECUTION_ERR:oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Error while executing the service Exception returned from JCA Service Runtime. Exception returned from JCA Service Runtime. null :Please see service monitor logs for full error trace</detail></part><part name="code"><code>{http://schemas.xmlsoap.org/soap/envelope/}Server</code></part></remoteFault></bpelFault>
    API Name : OE_ORDER_PUB.PROCESS_ORDER
    could you please let me know the exact problem and provide the solution.
    Thanks
    Phani Ch.

    Hi Phani,
    Are you able to reproduce issue as below:
    1. Login to Application as sysadmin.
    2. Navigate to Intergrated SOA Gateway > Integration Repository.
    3. Click on search on right hand side of the page.
    4. In the Internal Name type "FND_USER_PKG" and click Go.
    5. Click on the User link.
    6. Under the "Web Service - SOA Provider", click in the "View WSDL". Copy the complete URL "http://test:8003/webservices/SOAProvider/plsql/fnd_user_pkg/?wsdl"
    7. Open the soapUI.
    8. Click File > new soapUI Project.
    9. Test the web service.
    If yes,
    I think you might be need to execute a patch:
    solution:
    To implement the solution, please execute the following steps:
    1. Download and review the readme and pre-requisites for iAS Patch 18855074.
    Note: Above Merge Label Request (MLR) is build for EBS 12.1.3 having OC4J 10.1.3.5.
    2. Enable the profile option "EBS Adapter for BPEL, Function Security Enabled".
    a. Login as SYSADMIN user and Navigate to System >Profile  and Search for "EBS Adapter for BPEL, Function Security Enabled" (Internal name :EBS_ADAPTER_FUNCTION_SEC_ENABLED)
    b. Set the Value to 'Y' at SITE level . This means  function security feature is enabled and all API calls for PL/SQL APIs, Oracle e-Commerce Gateway, and concurrent programs will be checked for user security before they are invoked.
    3. Retest the issue by Generating and Deploying the required package.
    4. Migrate the solution as appropriate to other environments.
    Thanks
    Ranjan

  • Issues in invoking a web service from a JAVA/BPEL client...

    We are trying to invoke a web service from a JAVA/BPEL client using org.apache.soap classes. But everytime we are running into issues of IllegalAccessError or InvalidClassError or IncompatibleClassError based on different jars we are trying to include in our project. Attached is a simple BPEL project which tries to invoke a web service through JAVA embedding (no supporting jars need to be included explicitly). It erros with following trace:
    Class org/apache/soap/Envelope violates loader constraints
         Invalid class: org.apache.soap.Envelope
         Loader: soap:10.1.3
         Code-Source: /slot/ems1508/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar
         Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in /slot/ems1508/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/oc4j.jar
         Dependent class: org.apache.soap.rpc.RPCMessage
         Loader: soap:10.1.3
         Code-Source: /slot/ems1508/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar
         Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in /slot/ems1508/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/oc4j.jar
    Could you please help us out or provide any pointers. Any help would be highly appreciated

    Because you weren't told what to get, perhaps you already have it eh?
    What you want to read up about is JAX-WS, which is the webservice API bundled by default with your JDK (Java 6 and up). You'll find the wsimport tool in the bin directory of your JDK. I recommend you explore that directory and read up about all the executables you can find there, to be more prepared in the future. Know the tools you work with and all that. Most tools have a manual on this website:
    http://www.oracle.com/technetwork/java/javase/tech/index.html
    (under tools and utilities). Not wsimport, that is part of the jax-ws documentation. Better you look for jax-ws tutorials using Google, it will be quicker.

  • XA Exception while invoking the Web Service

    I'm getting the following exception frequently while invoking the webservice hosted in OC4J:
    -4972682009633467115com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error in transaction: javax.transaction.xa.XAException: Commit (onePhase) failed.
    at ProvisionCBCMRemote_StatelessSessionBeanWrapper2206.setObjectDetails(ProvisionCBCMRemote_StatelessSessionBeanWrapper2206.java:151)
    at ae.co.etisalat.cbcm.web.soh.provisioncbcm.ProvisionCBCMController.ProvisionCBCM(ProvisionCBCMController.java:76)
    at ae.co.etisalat.cbcm.web.soh.provisioncbcm.__ProvisionCBCMControllerStatelessWrapper.invokeMethod(__ProvisionCBCMControllerStatelessWrapper.java:100)
    at oracle.j2ee.ws.InvocationWrapper.invoke(InvocationWrapper.java:121)
    at oracle.j2ee.ws.RpcWebService.doPost(RpcWebService.java:342)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:792)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Nested exception is:
    javax.transaction.xa.XAException: Commit (onePhase) failed.
    at com.evermind.sql.DriverManagerXAResource.ThrowXaErr(DriverManagerXAResource.java:249)
    at com.evermind.sql.DriverManagerXAResource.commit(DriverManagerXAResource.java:73)
    at com.evermind.server.TransactionEnlistment.commit(TransactionEnlistment.java:251)
    at com.evermind.server.ApplicationServerTransaction.singlePhaseCommit(ApplicationServerTransaction.java:746)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:691)
    at com.evermind.server.ApplicationServerTransaction.end(ApplicationServerTransaction.java:1036)
    at ProvisionCBCMRemote_StatelessSessionBeanWrapper2206.setObjectDetails(ProvisionCBCMRemote_StatelessSessionBeanWrapper2206.java:147)
    at ae.co.etisalat.cbcm.web.soh.provisioncbcm.ProvisionCBCMController.ProvisionCBCM(ProvisionCBCMController.java:76)
    at ae.co.etisalat.cbcm.web.soh.provisioncbcm.__ProvisionCBCMControllerStatelessWrapper.invokeMethod(__ProvisionCBCMControllerStatelessWrapper.java:100)
    at oracle.j2ee.ws.InvocationWrapper.invoke(InvocationWrapper.java:121)
    at oracle.j2ee.ws.RpcWebService.doPost(RpcWebService.java:342)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:792)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Anyone can help fixing this issue will be highly appreciated. thanks in advance !!

    Please help me on this !!!

  • Registry issue when invoking the save_business operation

    When, I invoke the save_business operation on the UDDI_Publication_PortType I get the stack trace below. This really puzzles me because I've sent in a few different messages that validate against the uddi_v3.xsd.
    Anybody know how to determine which element or attribute it's choking on?
    org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException: Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.Save_businessDeserializer.deserialize (Save_businessDeserializer.java:77)
    at org.systinet.uddi.client.v3.serialization.Save_businessDeserializer.deserialize(Save_businessDeserializer.java:187)
    at com.idoox.wasp.serialization.xml.XMLBasicConstructDeserializer.deserialize (XMLBasicConstructDeserializer.java:168)
    at com.idoox.wasp.serialization.xml.XMLSimpleDeserializer.deserialize(XMLSimpleDeserializer.java :80)
    at com.idoox.wasp.serialization.SerializationHelper.deserializeElement( SerializationHelper.java:437)
    at com.idoox.wasp.serialization.WaspSerializationHelper.deserialize(WaspSerializationHelper.java:220)
    at com.systinet.wasp.server.adaptor.JavaInvoker.fillCallParamsXml(JavaInvoker.java :1223)
    at com.systinet.wasp.server.adaptor.JavaInvoker.beginInvoke(JavaInvoker.java:492)
    at com.idoox.wasp.server.adaptor.JavaAdaptorImpl.beginInvoke (JavaAdaptorImpl.java:63)
    at com.idoox.wasp.server.AdaptorTemplate.javaInvocation (AdaptorTemplate.java:514)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java:395)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch (AdaptorTemplate.java:328)
    at com.idoox.wasp.server.ServiceConnector.dispatch (ServiceConnector.java:393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerImpl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch (ServiceManagerImpl.java:473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service( HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java :711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java :368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest (HttpRequestHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind.server.http.HttpRequestHandler.run (HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run (ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java :239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java :34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java :303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException : org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException : org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException: Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.Save_businessDeserializer.deserialize (Save_businessDeserializer.java:156)
    at org.systinet.uddi.client.v3.serialization.Save_businessDeserializer.deserialize(Save_businessDeserializer.java:67)
    ... 31 more
    Caused by: org.idoox.xmlrpc.MessageProcessingException : org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException : Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.BusinessEntityDeserializer.deserialize(BusinessEntityDeserializer.java:77)
    at org.systinet.uddi.client.v3.serialization.Save_businessDeserializer.deserialize (Save_businessDeserializer.java:131)
    ... 32 more
    Caused by: org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException : Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.BusinessEntityDeserializer.deserialize(BusinessEntityDeserializer.java:319)
    at org.systinet.uddi.client.v3.serialization.BusinessEntityDeserializer.deserialize (BusinessEntityDeserializer.java :67)
    ... 33 more
    Caused by: org.idoox.xmlrpc.MessageProcessingException: org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException: Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.DescriptionDeserializer.deserialize(DescriptionDeserializer.java:77)
    at org.systinet.uddi.client.v3.serialization.BusinessEntityDeserializer.deserialize(BusinessEntityDeserializer.java :183)
    ... 34 more
    Caused by: org.idoox.xmlrpc.MessageProcessingException: org.systinet.uddi.InvalidParameterException: Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.serialization.DescriptionDeserializer.deserialize (DescriptionDeserializer.java:141)
    at org.systinet.uddi.client.v3.serialization.DescriptionDeserializer.deserialize(DescriptionDeserializer.java:67)
    ... 35 more
    Caused by: org.systinet.uddi.InvalidParameterException : Length is too small. The minimal allowed length is 1.
    at org.systinet.uddi.client.v3.struct.Description.setValue(Description.java:84)
    at org.systinet.uddi.client.v3.serialization.DescriptionDeserializer.deserialize (DescriptionDeserializer.java:127)
    ... 36 more

    Hi,
    Try seeing the log messages after doing the following setup in the instance :-
    1. Telnet to environment
    1. In $INST_TOP/ora/10.1.3/j2ee/oafm/config/oc4j.properties
    1. Add following property at the end of the file : SOA_ENABLE_STANDALONE_LOGGING=TRUE
    2. Bounce oafm container using script $ADMIN_SCRIPTS_HOME/adoafmctl.sh
    3. Perform any SOA specific action like generate.
    SOA specific log would be created at : $INST_TOP/soa/SOALog.log
    This file should show you the exact error happening.
    Thanks,
    Sai.M

  • How to change the endpoint url of the siebel service ?

    Hi All,
    JDev : 11.1.1.5
    I am fetching data from the siebel webservice. I created the proxy client from the Siebel WSDL in the JDeveloper. It was working fine.
    Now the endpoint URL(Server) is changed. This service fails to connect to that server. The service name is same.
    I want to fetch the end point urls from a property file, so that, even again if the server is changed, i have to change it in my property file.
    How to change the End point URL at runtime before calling the service ?
    This is my endpoint URL.
    http://oa8181.us.oracle.com:10800/eai_enu/start.swe/#%7Bhttp%3A%2F%2Fpolicing.oracle.com%2F%7DPolicing_spcQuery_spcIncidents_spcWF?wsdl?SWEExtSource=WebService&SWEExtCmd=Execute&UserName=AUSTINP&Password=AUSTINP
    Now it is pointing to this
    http://oa8023.us.oracle.com:7777/eai_enu/start.swe/#%7Bhttp%3A%2F%2Fpolicing.oracle.com%2F%7DPolicing_spcQuery_spcIncidents_spcWF?wsdl?SWEExtSource=WebService&SWEExtCmd=Execute&UserName=AUSTINP&Password=AUSTINP
    Give me some solution.

    See if this helps:
    http://kingsfleet.blogspot.co.uk/2008/12/controlling-what-service-proxy-uses-at.html

  • Invoking the web service

    I'm trying to call the web service with automatically built service client, the code is like this:
    Dispatch<Source> sourceDispatch = null;
                sourceDispatch = service.createDispatch(portQName, Source.class, Service.Mode.PAYLOAD);
                Source result = sourceDispatch.invoke(new StreamSource(new StringReader(req)));where req is String variable containing whole xml message.
    but after running I have an error:
    Unsupported Content-Type: text/html; charset=UTF-8 Supported ones are: [text/xml]
    com.sun.xml.internal.ws.server.UnsupportedMediaException: Unsupported Content-Type: text/html; charset=UTF-8 Supported ones are: [text/xml]
    at com.sun.xml.internal.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:116)
    at com.sun.xml.internal.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:280)
    How to change the content-type of the message ? or maybe deal with that in better way ?
    I've tried to call the service by using generated object too, this is the code
    PersonManagementServiceSync_Service service = new PersonManagementServiceSync_Service();
                PersonManagementServiceSync port = service.getPersonManagementServiceSyncSoap();
                // TODO initialize WS operation arguments here
                CreatePersonRequest parameters = new CreatePersonRequest();
                SyncRequestHeaderInfo headerInfoRequest = new SyncRequestHeaderInfo();
                javax.xml.ws.Holder<CreatePersonResponse> response = new javax.xml.ws.Holder<CreatePersonResponse>();
                javax.xml.ws.Holder<SyncResponseHeaderInfo> headerInfoResponse = new javax.xml.ws.Holder<SyncResponseHeaderInfo>();
                ...parameters setup .....
                port.createPerson(parameters, headerInfoRequest, response, headerInfoResponse);but that's generates another error:
    Unable to create StAX reader or writer
    Does anybody know how to fix that ??? I'm using NetBeans 6.5 to build the client

    Please help me on this !!!

Maybe you are looking for