Multiple service deployment in Axis

Hi
I am using Axis 2.0 as a web service platform for my application. The following is what I am trying to do.
1) I am generating the server side codes from WSDL using WSDL2Java tool.
2) Then using the generated codes I have developed my application.
3) I then build my application as �.aar� file as to upload in Axis
4) Similarly I am creating another application using the same steps mentioned above.
5) And uploaded the two .aar service files in the axis (which is deployed in Tomcat).
So now I am having two services in axis and whenever I get a request from the client I am having a common servlet which acts as a controller and redirect the request to particular Service based on some value in the request.
As of now I using AxisServlet.java in Axis as my controller where I am reading the request as stream to fetch the particular value and redirecting to appropriate service (based on the URL of the particular service)
But modifying the AxisServlet.java and reading the request as a stream in not the appropriate way. So can you please suggest me an appropriate method in which the above scenario can be implemented.
Thanks in advance.

Thsi combination of line items in Po gets govered by Description of service item text in shopping cart .  so if the text is same for all the lines of shopping cart then a single line will be created . if that text description is made manually differnet then multiple po lines will be created .
@shailesh

Similar Messages

  • Multiple Services in a WSDL

    Actaully i am a newbie to webservices and facing this queer problem.I have a wsdl file which has two services.I follow the normal jaxrpc method of using wscompile and ws deploy. But in the cooked war that is created only one service appears. I dont have a clue to what is happening .Plz help me on this one .THX in advance

    I dont think you can have multiple service tags in a wsdl. You can have multiple bindings which contain single operation def and in the service tag you can define multiple port tags.
    Correct me if i am wrong!
    Raj

  • Interesting Document: Service Deployment  and Service Configuration  within the Internet of Things

    Hi All,
    an interesting document:
              Service Deployment  and Service Configuration  within the Internet of Things
    Best regards,
    Andy.

    Hello Marek,
    I suppose you are not planning to do any kinds of advanced config using several VLANs and multiple SSIDs so let's just make your configuration simple and working.
    In short, you need to remove all references to VLAN 1 and to any subinterfaces possibly related to the VLAN 1. This means in particular (follow these steps in sequence):
    Remove the Dot11Radio0.1 subinterface entirely
    In the Dot11Radio0 section, remove the encryption vlan 1 mode ciphers tkip command
    In the dot11 ssid ciscowifi section, remove the vlan 1 command
    After performing these steps, make sure that the ssid ciscowifi and encryption mode commands are still present in the Dot11Radio0 configuration, and if not, reenter them.
    Best regards,
    Peter

  • How to use ZendAMF with multiple services?

    I followed Mihai Corlan's tutorial (http://corlan.org/2008/11/13/flex-and-php-remoting-with-zend-amf/) to create a remote service with Zend AMF, and it works great.
    But, I can't figure out how to use multiple RemoteObjects. I keep getting the infamous:
               faultCode:Client.Error.DeliveryInDoubt faultString:'Channel disconnected' faultDetail:'Channel disconnected
               before an acknowledgement was received'
    I set up my second RemoteObject the same way that I set up my first one.  But, I can't get it to work.
    Any suggestions? Has anyone seen examples of multiple services being used?
    Thank you!
    -Laxmidi

    I made a stupid php error.
    If you can do a single remote, you can do multiple ones. It's straightforward.
    -Laxmidi

  • Error invoking web service deployed in SOA Suite

    I have implemented a stateful web service in Jdeveloper 10.1.3.2.
    I can test succesfully an operation of the web service from the embedeed oc4j of jdeveloper, but i can not succes when i try do the same from the application server control of soa suite.
    The response of the web service in the second case, is the xml of the request.I can not understand.
    I implemented a web service proxy in jdeveloper that invokes the web service deployed in soa suite.When i run it, it gives me an exception like this:
    unexpected element name: expected={http://orclproject/types/}doLoginResponseElement, actual={http://orclproject/types/}doLoginElement
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:231)
         at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
         at klient7.proxy.runtime.OrclLoginWSSoapHttp_Stub._deserialize_doLogin(OrclLoginWSSoapHttp_Stub.java:1022)
         at klient7.proxy.runtime.OrclLoginWSSoapHttp_Stub._readFirstBodyElement(OrclLoginWSSoapHttp_Stub.java:891)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:333)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
         at klient7.proxy.runtime.OrclLoginWSSoapHttp_Stub.doLogin(OrclLoginWSSoapHttp_Stub.java:484)
         at orclproject.OrclLoginWSSoapHttpPortClient.doLogin(OrclLoginWSSoapHttpPortClient.java:65)
         at orclproject.OrclLoginWSSoapHttpPortClient.main(OrclLoginWSSoapHttpPortClient.java:28)
    where doLogin is the operation of the web service.
    any idea?
    thanks in advance...

    Hi,
    almost 8 months passed since this post, but if still actual then look at BUG: Request XML returned as response when result too large thread. It may be the same problem with large data sets.
    Regards,
    Patrik

  • Jdeveloper WS proxy error while invoking  web service deployed on weblogic

    Hello experts, can you please help me. I have web service deployed on weblogic server.
    I have not set any credential for this web service. I can test the service from SOAPUI without providing any credentials.
    Then I generated WS proxy client using Jdeveloper. When I try to run the client, I do not know why I get security execption (shown below) eventhough I have not secured the web service deployed on weblogic server.
    java.lang.SecurityException: keyStoreFilename is either null or empty string
         at weblogic.wsee.security.util.CertUtils.getCertificate(CertUtils.java:87)
         at pilot1.ContactWSPortTypePortClient.getBSTCredentialProvider(ContactWSPortTypePortClient.java:104)
         at pilot1.ContactWSPortTypePortClient.setPortCredentialProviderList(ContactWSPortTypePortClient.java:78)
         at pilot1.ContactWSPortTypePortClient.main(ContactWSPortTypePortClient.java:46)
    Process exited with exit code 0.
    Here is my client class :
    public static void main(String[] args) {
    try {
    contactWSService = new ContactWSService();
    ContactWSPortType contactWSPortType = contactWSService.getContactWSPortTypePort();
    Map<String, Object> requestContext = ((BindingProvider) contactWSPortType).getRequestContext();
    setPortCredentialProviderList(requestContext);
    // Add your code to call the desired methods.
    // QueryPageInputSecondPage qpisp= new QueryPageInputSecondPage(); //I have commented it in order to resolve security issue
    System.out.println("Inside the client class");
    } catch (Exception ex) {
    ex.printStackTrace();
    Inside the method setPortCredentialProviderList(), I have not provided any credentials, keystores etc. Because weblogic is not setup with SSL and also I have not set up any authorization or authentication for the web service. I do not know why I am able to test it through SOAPUI and why not using WS proxy.
    Appreciate your quick response.
    thanks a lot
    jyothi

    Hello experts, can you please help me. I have web service deployed on weblogic server.
    I have not set any credential for this web service. I can test the service from SOAPUI without providing any credentials.
    Then I generated WS proxy client using Jdeveloper. When I try to run the client, I do not know why I get security execption (shown below) eventhough I have not secured the web service deployed on weblogic server.
    java.lang.SecurityException: keyStoreFilename is either null or empty string
         at weblogic.wsee.security.util.CertUtils.getCertificate(CertUtils.java:87)
         at pilot1.ContactWSPortTypePortClient.getBSTCredentialProvider(ContactWSPortTypePortClient.java:104)
         at pilot1.ContactWSPortTypePortClient.setPortCredentialProviderList(ContactWSPortTypePortClient.java:78)
         at pilot1.ContactWSPortTypePortClient.main(ContactWSPortTypePortClient.java:46)
    Process exited with exit code 0.
    Here is my client class :
    public static void main(String[] args) {
    try {
    contactWSService = new ContactWSService();
    ContactWSPortType contactWSPortType = contactWSService.getContactWSPortTypePort();
    Map<String, Object> requestContext = ((BindingProvider) contactWSPortType).getRequestContext();
    setPortCredentialProviderList(requestContext);
    // Add your code to call the desired methods.
    // QueryPageInputSecondPage qpisp= new QueryPageInputSecondPage(); //I have commented it in order to resolve security issue
    System.out.println("Inside the client class");
    } catch (Exception ex) {
    ex.printStackTrace();
    Inside the method setPortCredentialProviderList(), I have not provided any credentials, keystores etc. Because weblogic is not setup with SSL and also I have not set up any authorization or authentication for the web service. I do not know why I am able to test it through SOAPUI and why not using WS proxy.
    Appreciate your quick response.
    thanks a lot
    jyothi

  • Problem generating stubs for Java EJB web service deployed in OAS

    I created an EJB web service and I've successfully deployed it in my Oracle App Server. Some of the methods work fine but others produce the ff error:
    org.apache.soap.SOAPException - java.lang.IllegalArgumentException: No Serializer found to serialize [classname] using encoding style [encoding]It seems that the objects specified as parameters in the web service methods exposed are the only ones that had stubs generated for them. Other objects I use, which are usually wrapped inside a Vector, did not have generated stubs.
    Example:
         public String loginUser(UserDTO userDTO) throws RemoteException, NamingException, SQLException;
    public String addItems (Vector vecItems) throws RemoteException, NamingException, SQLException; // where vecItems is a collection of ItemDTO objects     In this scenario, stubs were generated for the UserDTO class, but not for the ItemDTO class. In effect, calling the addItems method resulted to the exception I mentioned above.
    I did a workaround wherein I declared a dummy method which accepted all the types of objects I needed as parameters so all the necessary stubs can be generated, but this fix doesn't feel like it's the proper solution to my problem.
    If anyone can help me, it would be greatly appreciated. Thanks!

    Crossposted:
    Problem generating stubs for Java EJB web service deployed in OAS

  • Multiple Service Products in Service Order ?

    Hi,
    I have the follg business process:
    A customer sends, say, 1000 Pieces of a Product A for repair. Problem in each Piece may be different - some may require just cleaning, some may require Parts replacement etc., which is known only after carrying out the repair.
    The Customer has fixed Service Charges based on the nature of repair undertaken (level of repair) and Parts consumed.
    I have created Service Products (Mat Type DIEN) for each level of repair. I created Repair Order (Type RAS) and inwarded the 1000 Pieces.
    Should we have Service Order for each Piece i.e., 1000 Service Orders ? Or is it possible to enter multiple Service Products and Qty ?
    Thanks.
    Raj

    Hi Prasanth,
    The level of Repair (Service Product) is determined based on 'Action Code (code to denote the action taken to rectify the problem in the Product)'. It is also imperative that the Technician should be allowed to select only those Components / Parts allowed for the Service Product.
    Action carried out to repair is codified and is known only after repair. Hence segregating qty for each Service Product in the Repair Order itself is not possible here.
    Is there a better approach to handle this business process ?
    Raj

  • PO With respect to realse order with Multiple Item and Multiple Services

    Dear Guru,
    I am having Issues with BAPI_PO_CREATE1 which i am not able to resolve.
    I am Trying to create a PO with Multiple Line (such as line item 10, 20, 30, 40 )
    and Each line item should contain multiple services in its service line item (such as 10, 20 30, 40)
    The Import parameters i have defined for
    POHEADER is as below: 
    COMP_CODE                      1000
    DOC_TYPE                       RO
    CREATED_BY                     SAIFUR
    PURCH_ORG                      1000
    PUR_GROUP                      102
    CURRENCY                       INR
    DOC_DATE                       05.12.2009
    AGREEMENT                      4700014635
    The Import parameters i have defined for
    POHEADERX is as below:
    COMP_CODE                      X
    DOC_TYPE                       X
    CREATED_BY                     X
    PURCH_ORG                      X
    PUR_GROUP                      X
    CURRENCY                       X
    DOC_DATE                       X
    AGREEMENT                      X
    The Table Parameter I have Defiend For 1st line item
    in POITEM is as below :
    PO_ITEM                        00010
    SHORT_TEXT                     HIRING OF COMPUTER / LAPTOP
    PLANT                          078
    TRACKINGNO                     ITEM1
    QUANTITY                                  1.000
    ITEM_CAT                       9
    ACCTASSCAT                     U
    AGREEMENT                      4700014635
    AGMT_ITEM                      00010
    PREQ_NAME                      127562_B
    PERIOD_IND_EXPIRATION_DATE     D
    PCKG_NO                        0000000001
    The Table Parameter I have Defiend For 2nd line item
    in POITEM is as below :
    PO_ITEM                        00020
    SHORT_TEXT                     HIRING OF LCD
    PLANT                          078
    TRACKINGNO                     ITEM2
    QUANTITY                                  1.000
    ITEM_CAT                       9
    ACCTASSCAT                     U
    AGREEMENT                      4700014635
    AGMT_ITEM                      00020
    PREQ_NAME                      127562_B
    PERIOD_IND_EXPIRATION_DATE     D
    PCKG_NO                        0000000000

    The Table Parameter I have Defiend For 1st line item
    in POSCHEDULE is as below :
    PO_ITEM                        00010
    SCHED_LINE                     0001
    DEL_DATCAT_EXT                 D
    DELIVERY_DATE                  05.12.2009
    QUANTITY                                  1.000
    The Table Parameter I have Defiend For 2nd line item
    in POSCHEDULE is as below :
    PO_ITEM                        00020
    SCHED_LINE                     0002
    DEL_DATCAT_EXT                 D
    DELIVERY_DATE                  05.12.2009
    QUANTITY                                  1.000
    The Table Parameter I have Defiend For 1st line item
    in POSCHEDULEX is as below :
    PO_ITEM                        00010
    SCHED_LINE                     0001
    DEL_DATCAT_EXT                 X
    DELIVERY_DATE                  X
    QUANTITY                       X
    The Table Parameter I have Defiend For 2nd line item
    in POSCHEDULEX is as below :
    PO_ITEM                        00020
    SCHED_LINE                     0002
    DEL_DATCAT_EXT                 X
    DELIVERY_DATE                  X
    QUANTITY                       X
    The Table Parameter I have Defiend For 1st and 2nd line item
    in POSERVICES is as below :
    PCKG_NO     LINE_NO     EXT_LINE     SUBPCKG_NO     QUANTITY     BAS     GR_PRICE     SHORT_TEXT
    1     1     0     2     0          0     HIRING OF COMPUTER / LAPTOP
    2     2     10     0     1     EA     700     PENTIUM COM WITH COL MON & NETWORK COM
    2     3     20     0     1     EA     350     INKJET PRINTER(BLACK&WHITE AND COLOUR)
    2     4     30     0     1     EA     325     SCANNER COLOUR
    5     5     0     5     0          0     HIRING OF LCD
    5     6     10     0     1     HR     400     LCD HIRING PER HOUR
    5     7     20     0     2     HR     200     FOR EVERY ADDITIONAL HOUR

  • BAPI_PO_CREATE1 for Multiple service line items

    Hi Exports,
    I am using BAPI_PO_CREATE1 to create service PO. I am facing problem when each line item(ebelp) has multiple service line items. I am unable to map multiple service line items to a single line item (ebelp) properly.
    Can anyone help.
    Regards,
    Kiran

    Hi ,
    I am able to create service PO when only one service line item is there.
    If multiple service line items are there. then i have to put the below code with in the loop.
    here i am facing the probelm.
            w_poservices-pckg_no    = g_pckg.
            w_poservices-line_no    = g_pckg.
            w_poservices-outl_ind   = c_x.
            w_poservices-subpckg_no = g_pckg + 1.
            w_poservices-service    = w_sdata-srvpos.
         w_poservices-short_text = w_idata-ktext1.
         w_poservices-quantity   = w_idata-menge.
         w_poservices-base_uom   = w_idata-meins.
         w_poservices-gr_price   = w_idata-tbtwr.
         w_poservices-matl_group = w_idata-matkl.
            APPEND w_poservices TO i_poservices.
            CLEAR: w_poservices.
            w_poservices-pckg_no    = g_pckg + 1.
            w_poservices-line_no    = g_pckg + 1.
            w_poservices-ext_line   = 0000000010.
            w_poservices-outl_ind   = c_x.
         w_poservices-subpckg_no = g_pckg + 2.
            w_poservices-service    = w_sdata-srvpos.
            w_poservices-short_text = w_sdata-ktext1.
            w_poservices-quantity   = w_sdata-menge.
            w_poservices-base_uom   = w_sdata-meins.
            w_poservices-gr_price   = w_sdata-tbtwr.
            w_poservices-matl_group = w_idata-matkl.
            APPEND w_poservices TO i_poservices.
            CLEAR: w_poservices.
            w_posrvaccessvalues-pckg_no    = g_pckg + 1.
            w_posrvaccessvalues-line_no    = g_pckg + 1.
            w_posrvaccessvalues-serno_line = 01.
            w_posrvaccessvalues-serial_no  = 01.
            w_posrvaccessvalues-quantity   = w_idata-menge.
            APPEND w_posrvaccessvalues TO i_posrvaccessvalues.
    thank you.
    Regards,
    Kiran

  • Service PO with Multiple service Line Items

    Hi,
    i am working on Service Po Creation by using BAPI BAPI_PO_CREAT1. I am able to create service for multiple line items but the problem is single line item my have multiple service line items in that case my object is not working. Can any one suggest solution for this.Here i am attachng what i written logic
               T_POITEM-PCKG_NO      = V_PACKNO.
            T_POSERVICE-PCKG_NO = V_PACKNO.                    "'0000000001'.
              T_POSERVICE-LINE_NO = V_LINENO.                    "'0000000001'.
              T_POSERVICE-OUTL_IND = 'X'.
              T_POSERVICE-EXT_LINE = '0'.           "V_EXTLIN.                  "'0'.
              T_POSERVICE-OUTL_LEVEL = '0'.           "V_EXTOUT.                "'0'.
              T_POSERVICE-SUBPCKG_NO = V_PACKNO + 1.               "'0000000003'. "(Dummy No.)
              T_POSERVICE-QUANTITY = ITAB-SERV_QUANTITY.
              T_POSERVICE-BASE_UOM = ITAB-BASE_UOM.
              T_POSERVICE-PRICE_UNIT = '1'.
              T_POSERVICE-GR_PRICE = ITAB-GR_PRICE.
              T_POSERVICE-SHORT_TEXT = ITAB-SERV_TEXT.             "'SERVICE TEST'.
              APPEND T_POSERVICE.
              V_LINENO = V_LINENO + 1.
    *          V_PACKNO = V_SUBPACKNO.
              T_POSERVICE-PCKG_NO = V_PACKNO + 1.
              T_POSERVICE-LINE_NO = V_LINENO.
              T_POSERVICE-EXT_LINE = V_EXTLIN + 10.             "'0'.
              T_POSERVICE-OUTL_LEVEL = '0'.                          "V_EXTOUT.                "'0'.
              T_POSERVICE-OUTL_IND  = SPACE.
              T_POSERVICE-QUANTITY = ITAB-SERV_QUANTITY.
              T_POSERVICE-SUBPCKG_NO = '0000000000'.
              T_POSERVICE-BASE_UOM = ITAB-BASE_UOM.
              T_POSERVICE-PRICE_UNIT = '1'.
              T_POSERVICE-GR_PRICE = ITAB-GR_PRICE.
              T_POSERVICE-SHORT_TEXT = ITAB-SERV_TEXT.                            "'SERVICE 1'.
              T_POSERVICE-PLN_PCKG   = V_PACKNO + 1.
              T_POSERVICE-PLN_LINE   = V_LINENO.
    *          T_POSERVICE-MATL_GROUP = '0082'.
              APPEND T_POSERVICE.    
    *          SET PCKG_NO AS SUB_PCKG_NO IN TABLE POSRVACCESSVALUES THIS:
              T_POSERVALUE-PCKG_NO = V_PACKNO + 1.                                       "'0000000003'.
              T_POSERVALUE-LINE_NO = V_LINENO.
              T_POSERVALUE-SERNO_LINE = '01'.                "'01'.
              T_POSERVALUE-SERIAL_NO = '01'.              "   '01'.
              T_POSERVALUE-QUANTITY = ITAB-SERV_QUANTITY.       "'10.000'.
              APPEND T_POSERVALUE.

    by following instructions in 420332 note.

  • Questions in regards to server 2012R2 Remote desktop Service deployment and GPO

    Hi Everyone
    We have a business requirement moving to 2012R2 RDSH server. I have installed a 2012R2 member servers and enabled Remote desktop licensing role. I have activated the licenses. the servers is in operational
    I have deployed 3 windows 2012R2 member server "RDS1" , "RDS2" and "RDS3".
    on RDS1 I ran Add roles and Feature Wizard > Remote Desktop Services installation > Quick Start >Session based desktop deployment to complete the installation.
    On RDS1 Server Manage Dashboard Page Select Remote Desktop Services > Overview. Under RD Licensing I added my 2012R2 license server "2012r2-tslic". Go to task. Edit deployment properties RD license mode to per device and click OK.
    Reboot RDS1
    Check RD Licensing Diagnoser everything is clear
    On RDS2 I did the exact same thing ran Add roles and Feature Wizard > Remote Desktop Services installation > Quick Start >Session based desktop deployment to complete the installation. 
    But With RDS2 I move this server to an OU that link to a GPO with RD licensing details. after reboot the servers check RD Licensing Diagnoser I can see 2012r2-tslic specified as the license servers.  
    Based on this document
    http://blogs.technet.com/b/askperf/archive/2013/09/20/rd-licensing-configuration-on-windows-server-2012.aspx  Are you suppose to configure RD license server via Remote desktop Service deployment ? Not GPO ?
    Here are my questions
    We currently have ten 2008r2 terminal servers in a NLB cluster. each RDSH server have in house application installed on each one of them. User connect to the 2008R2 RDSH servers via RDP connection. we have a restricted GPO apply to those
    RDSH servers. user cannot do anything on RDSH servers apart from running the application and use excel.  On the remote desktop session host configuration we have enable settings like end a disconnected session , Active session limit  ,
    remote control users session , LPT port redirection.
    We push out RD license server detail via GPO to the terminal servers
    Can I use our existing GPO apply the licensing server settings , desktop restriction setting to the 2012R2 RDHS servers or we should be using Remote desktop Service deployment to do the job ? If that is the case how would you transfer the
    current 2008r2 environment to 2012 using Remote desktop Service deployment. is that mean I have to manually configure 1 by 1.
    Please help
    Many thanks

    Hi,
    Please see my response to you in the other thread.  Please contact me via email and I will go over the basic planning and deployment steps with you which will help clear things up and get you started off on the right foot.
    You should only run through the wizard and create a RDS deployment once.  Then you add the various servers (RDSH, RD Licensing, RD Gateway, etc), set Deployment properties, etc.
    Thanks.
    -TP

  • Multiple Service Entry Sheet For PO Line Items and One GR Document

    Dear All,
    We have just migrated from ECC 5.0 System to ECC 6.0 System. We are facing a problem while processing service entry sheets and the GR against them. The scenario is:
    1. We create a maintenance plan
    2. Upon saving the Maintenance Plan, a Purchase Requisition (PR) is generated
    3. The PR's are combined into one Purchase Order
    4. Against the Purchase Orders, multiple service entry sheets are created
    In ECC 5.0 System, we used to accept the service entry sheets and only one material document used to get generated as GR document. But now in ECC 6.0, we observe that with the same configuration, individual material documents are getting generated for individual service entry sheets. Is there a configuration in ECC 5.0, that enables clubbing of service entry sheet items in one GR document?
    Your help will be sincerely appreciated.
    Thanks and Sincere Regards,
    Amitabha

    Hi,
    If this can be of help I can report the list of the programs that                    
    are executed:                                                                               
    Before the popup "FUNCTION POPUP_TO_CONFIRM_STEP" appeares in ML81N,                          
    following programs are executed:                                                                               
    5  FUNCTION POPUP_TO_CONFIRM_STEP SAPLSPO1                                           
    4  FORM SELECTION_CHANGED_PO SAPLMLSR                                                
    3  FORM FCODE_SEL_PO SAPLMLSR                                                        
    2  FORM FCODE SAPLMLSR                                                               
    1  MODULE (PAI) FCODE SAPLMLSR                                                                               
    Unfortunately at this time it is not planned to change the current                   
    functionality.
    Regards,
    Edit

  • Need help calling SOAP service deploy in WebLogic

    Hi bros & sisters,
    My name is veda.
    Need some help in calling a SOAP binding web service deploy in Weblogic, using classic ASP
    After reading this link http://www.aspfree.com/c/a/ASP/Consuming-a-WSDL-Webservice-from-ASP/,
    1. i still do not know what value to pass in for parameter SoapURL. I did try http://invicta.app.vic:8002/RTO/RTOService/getCustomerOffers, but return a negative result.
    2. Am i right to say i cannot do a SoapRequest.Open "GET",
    or SoapRequest.Open "POST", because i only have a SOAP protocol binding instead of HTTP protocol binding.
    I really appreciate any help to enlighten me.
    Below is my complete wsdl. Its quite a small wsdl
      <?xml version="1.0" encoding="utf-8" ?>
    - <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://com.gtr.ma.rto/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://com.gtr.ma.rto/" name="RTOService">
    - <types>
    - <xsd:schema>
      <xsd:import namespace="http://com.gtr.ma.rto/jws" schemaLocation="http://invicta.app.vic:8002/RTO/RTOService?xsd=1" />
      </xsd:schema>
    - <xsd:schema>
      <xsd:import namespace="http://api.interact.coycorp.com/xsd" schemaLocation="http://invicta.app.vic:8002/RTO/RTOService?xsd=2" />
      </xsd:schema>
      </types>
    - <message name="getCustomerOffers">
      <part xmlns:ns1="http://com.gtr.ma.rto/jws" name="parameters" element="ns1:getCustomerOffers" />
      </message>
    - <message name="getCustomerOffersResponse">
      <part xmlns:ns2="http://com.gtr.ma.rto/jws" name="parameters" element="ns2:getOffersResponse" />
      </message>
    - <message name="endCustomerSession">
      <part xmlns:ns3="http://com.gtr.ma.rto/jws" name="parameters" element="ns3:endCustomerSession" />
      </message>
    - <message name="endCustomerSessionResponse">
      <part xmlns:ns4="http://com.gtr.ma.rto/jws" name="parameters" element="ns4:endCustomerSessionResponse" />
      </message>
    - <portType name="RTOImpl">
    - <operation name="getCustomerOffers">
      <input message="tns:getCustomerOffers" />
      <output message="tns:getCustomerOffersResponse" />
      </operation>
    + <operation name="endCustomerSession">
      <input message="tns:endCustomerSession" />
      <output message="tns:endCustomerSessionResponse" />
      </operation>
      </portType>
    - <binding name="RTOImplPortBinding" type="tns:RTOImpl">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    - <operation name="getCustomerOffers">
      <soap:operation soapAction="" />
    - <input>
      <soap:body use="literal" />
      </input>
    - <output>
      <soap:body use="literal" />
      </output>
      </operation>
    - <operation name="endCustomerSession">
      <soap:operation soapAction="" />
    - <input>
      <soap:body use="literal" />
      </input>
    - <output>
      <soap:body use="literal" />
      </output>
      </operation>
      </binding>
    - <service name="RTOService">
    - <port name="RTOImplPort" binding="tns:RTOImplPortBinding">
      <soap:address location="http://invicta.app.vic:8002/RTO/RTOService" />
      </port>
      </service>
      </definitions>

    Use a proper Java web service client stack that will make your life easier.

  • BPM Studio call web service deployed by R12 Intergration Repository error

    Hi, I encountered a problem when calling a web service deployed by R12 Intergration Repository (SOA Gateway) w/ username/password authentication.
    It seems that the BPM Studio can not pass the security information to the web service. But using SoapUI it's quite easy to call the service with no error, just set the username and password, and set the password type to PasswordText.
    Under the External Resources catalog, I've set fileds in the Security tab with "Plain" Username Token, "sysadmin" Username and "sysadmin" Password, then changed the Authentication Type to "Username Token Profile". Then create a participant named sysadmin, and use this participant to run the process, but it just can't work.
    Anybody can help? My colleague also posted a topic here: processRemoteException when invoke  webservice from Oracle E-Business Suite but nobody answered. It would be very appreciated if sb. can fix this.

    I've encounter something similar to you're problem and it was resolved by manually creating the object using the web service constructor and inputting user credentials. If you manually instantiate your web service wrapper object and set a a security profile token, it may solve your problem. You can also pass in the web service endPoint URL, if you want.
    Fuego.WebServices.UsernameTokenProfileSecurityPolicy
    I'm not sure how to use UsernameTokenProfileSecurityPolicy, but try something like this:
    Fuego.WebServices.UsernameTokenProfileSecurityPolicy policy = UsernameTokenProfileSecurityPolicy();
    policy.username ="mark";
    policy.password = "password";
    tws = YourWebService();
    response = tws.callWebServiceMethod();
    I realize the security profile isn't tied anywhere to the web service, but try it anyway.
    There is also some fields on the webservice, tws.setRequestHeader() that may allow you to set the username and password on the request, but this doesn't make sense to me. It shouldn't be that hard.
    Edited by: Mark Peterson on Mar 19, 2010 9:14 AM
    Edited by: Mark Peterson on Mar 19, 2010 9:20 AM

Maybe you are looking for

  • CREATING IMAGE FILE

    Hi there, I have an "java.awt.Image" object with me. I am trying to create a file by using this "Image" object. Please help me by showing some code or by giving some tip. thanks in advance sudhakar

  • Lightroom VS Photoshop Elements for Beginners

    Hey Everyone! I am creating a website for beginners on computers and other home electronics and I am going to do a post about what the best program is to get for a beginner at photo editing. I have seen so many people using Photoshop Elements to star

  • MBP very slow to pick up signal after waking from sleep

    my MBP 2.33 takes about a minute after wake-up is complete to pick up a signal from the extreme N station (sits right next to it).....my old G3 ibook takes about 5sec....does anyone have a fix? the same problem? it is really annoying....it takes almo

  • Photos, is it possible to browse by "EVENTS" like in iPhoto 08

    Hello, the question is in the title : *For the pictures in the iPod Touch, is it possible to browse by "EVENTS" like in iPhoto 08* Thanks à lot.

  • Will the iPod 4th gen receive any further updates since it cannot have IOS 7.

    Will the iPod 4th gen receive any further updates since it cannot have IOS 7. Just to keep the existing software updated and running correctly without crashing. My concern now is that as new games/apps come out i am going to get a lot more NOT SUPPOR