WSDL for PI 7.1 wsdl:service

Hi ALL,
i have a sender SOAP to receiver ABAP proxy scenario.
i got the WSDl file from sender agreement menu Display WSDL option and gave the WSDL to the to the .Net team..
they are telling me the WSDL file has some <wsdl:service name="XI_c23f13a4efbc3a7fad8fa18b9ad71bcc_Service"> and this is a ramdon number ..is this a issue .. ?
is there any other method better than this to Create WSDL for them ..? is i create WSDL using any other method this random number will not come ..?
thanks
Souz

It seems problem is not with WSDL.
If you want to generate WSDL from another way (other than from sender agreement), you can get it from ID -> Tools -> Display WSDL
In the URL provide following URL:-
http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel
Where
host - server host name/ip
port - Server port number
party - Name of party for sender service(if any)
service - Sender service
channel - soap sender comm channel
Select the appropriate interface and service name in subsequent screens.
Finally you will get WSDL generated for your interface.

Similar Messages

  • Jdeveloper- web service- can't produce wsdl for java List

    Hi-
    I think this is a jdeveoper bug. It looks like the same bug as #4706306 in Jdeveloper 10g bugs.
    There is a workaround suggest to use additional classes in the web service. But it does not work on 11g.
    Details of the problem ........
    I am trying to create a web service and client using jdeveoper 11g.
    For some reason, the wsdl generated from the jdeveoper is incorrect. My java classes used List.
    Apparently, jdeveoper does not like List . I can reproduce the problem using three files as attached.
    the files are 1)Baby.java, 2)Papa.java, and 3)MyCall.java. The webservice is MyCall Class and the web method is getPapa().
    After I created the web service and its wsdl, I then used the wsdl to create a client. then files are generated from the
    wsdl for client . One of the file as in 4)Papa.java has a wrong List<Object>. It should be List<Baby>.
    I can't move forward because of this problem. If any one can help, I'll be very appreciated.
    Thanks!
    Jason
    1) ---- Baby.java-------------------
    package yexp;
    public class Baby
    private String name;
    public void setName(String name)
    this.name = name;
    public String getName()
    return name;
    2) Papa.java ---------------------
    package yexp;
    import java.util.List;
    import java.util.ArrayList;
    public class Papa
    List<Baby> babyList;
    public List<Baby> getBabyList()
    return babyList;
    public void setBabyList(List<Baby> babyList)
    this.babyList = babyList;
    3) MyCall.java ------------------------------------------------
    package yexp;
    import java.util.List;
    import java.util.ArrayList;
    public class MyCall
    public Papa getPapa()
    Baby baby = new Baby();
    baby.setName("mmmBaby");
    List<Baby> babyList = new ArrayList<Baby>();
    babyList.add(baby);
    Papa papa = new Papa();
    papa.setBabyList(babyList);
    return papa;
    4) Papa.java from client ---------------
    aquilo#cat Papa.java
    package z;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for papa complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * &lt;complexType name="papa">
    * &lt;complexContent>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    * &lt;sequence>
    * &lt;element name="babyList" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/>
    * &lt;/sequence>
    * &lt;/restriction>
    * &lt;/complexContent>
    * &lt;/complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "papa", propOrder = {
    "babyList"
    public class Papa {
    @XmlElement(nillable = true)
    protected List<Object> babyList; //??????? PROBELM should be List<Baby> babyList
    * Gets the value of the babyList property.
    * <p>
    * This accessor method returns a reference to the live list,
    * not a snapshot. Therefore any modification you make to the
    * returned list will be present inside the JAXB object.
    * This is why there is not a <CODE>set</CODE> method for the babyList property.
    * <p>
    * For example, to add a new item, do as follows:
    * <pre>
    * getBabyList().add(newItem);
    * </pre>
    * <p>
    * Objects of the following type(s) are allowed in the list
    * {@link Object }
    public List<Object> getBabyList() {
    if (babyList == null) {
    babyList = new ArrayList<Object>();
    return this.babyList;
    Edited by: jchen8996 on Apr 5, 2010 8:17 AM

    Try using Collection instead of list so:
    Collection<Baby> babyList = new ArrayList<Baby>();

  • Getting complete WSDL for the web services created in J2EE

    Hi,
    I have created a web service using Netweaver developer studio for a J2EE project (complete EJB, WEB and Appln Project) similar to CAR rental application.
    I also have tested the web service in web service perspective and it is working fine. Now i want to call this web service from XI. Therefore i need the WSDL for the same. The testing screen also gives the WSDL for the web service. But it has got number of links inside in the forms of import.
    Editing all those documents and forming the complete wSDL is very difficult..
    How do i do it??
    Abhijeet

    Hi,
    When I opened the wsdl it has number has a wsdl:import location tag..which refers to binding.
    when opened this import location we have one more import location for porttypes.
    When combined all thhree e.g. service, binding and porttype we get the complete WSDL which i could comofortably import in XI and further process.
    This way i coudl succesfully call a web service from XI.
    I used Stylus studio for editing WSDL.
    Thanx

  • Proxy Service giving "Cannot Compute Effective WSDL for: Proxy Service"

    Hi,
    After updating the wsdl and schema, our proxy service is complaining with error : "Cannot Compute Effective WSDL for: Proxy Service " <ProxyService_Location_Name> when I launch a test console or access the Proxy Endpoint on IE.
    Proxy and Business Services are pointing to the same WSDL. From Business Service, I am able to launch the test console. . Before updating the wsdl and schema, it was working fine. We tried to check in JDeveloper to see whether there are any issues with WSDL or Schema, but they are working fine.
    Security Settings on Proxy Service are : Basic Authentication, User-Name Token Policy and also applied Transport Access Control. Security worked fine earlier before update.
    From log file :
    Root cause of ServletException.
    java.io.IOException: Can not compute effective WSDL for : ProxyService ********
    at com.bea.wli.sb.transports.http.ResourceRequestProcessor.securedInvoke(ResourceRequestProcessor.java:93)
    at com.bea.wli.sb.transports.http.ResourceRequestProcessor.process(ResourceRequestProcessor.java:65)
    at com.bea.wli.sb.transports.http.generic.RequestHelperBase.handleMetadataRequest(RequestHelperBase.java:181)
    at com.bea.wli.sb.transports.http.generic.RequestHelperBase.service(RequestHelperBase.java:83)
    at com.bea.wli.sb.transports.http.wls.HttpTransportServlet.service(HttpTransportServlet.java:127)
    at weblogic.servlet.FutureResponseServlet.service(FutureResponseServlet.java:24)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    Any suggestions/ideas on why this error is happening is much appreciated.
    Thanks,
    Srithi

    There must be definitely some issue in the Policy Configuration, due to which it is not able to Compute Effective WSDL.
    Can you please do the following and capture the logs:
    - set the transports debug flag to true in the alsbdebug.xml in your domain directory :
    <java:alsb-transports-debug>true</java:alsb-transports-debug>
    <java:alsb-service-security-manager-debug>true</java:alsb-service-security-manager-debug>
    <java:alsb-service-validation-debug>true</java:alsb-service-validation-debug>
    <java:alsb-wspolicy-repository-debug>true</java:alsb-wspolicy-repository-debug>
    - set the WLS log level to debug
    - Then restart the servers
    This should give some additional details on the specific error.
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    https://forums.oracle.com/forums/ann.jspa?annID=893

  • Stub/Client Generation of WSDL for Windows Communication Foundation Service

    Hii,
    I am building a client for the WCF service using Soap1.2 and ws-security. I have tried building a stub for the service using JDeveloper 10 g and also tried to validate the wsdl using XML spy. Both are giving errors. I wanna know how could i genrate the stub for the service and also Validate WSDL? I know i might have to modify the WSDL, but dont know what changes must be required? And Also which std i must adhere?
    Here is the WSDL
    <?xml version="1.0" encoding="utf-8"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                      xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                      xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
                      xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
                      xmlns:wsap10="http://www.w3.org/2005/08/addressing"
                      xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
                      xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
                      xmlns:i0="http://Corona.Services.UserMgmt.UserMgmtSrv"
                      xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/09/policy/addressing"
                      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                      xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract"
                      xmlns:tns="http://tempuri.org/"
                      xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
                      xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"
                      xmlns:wsa10="http://www.w3.org/2005/08/addressing"
                      targetNamespace="http://tempuri.org/" name="UserMgmtSrv">
      <wsdl:import namespace="http://Corona.Services.UserMgmt.UserMgmtSrv"
                   location="http://debugger/Corona.Services/Corona.Services.svc?wsdl"/>
      <wsdl:types/>
      <wsdl:binding name="WSHttpBinding_UserMgmtSrv" type="i0:UserMgmtSrv">
        <wsp:PolicyReference URI="#WSHttpBinding_UserMgmtSrv_policy"/>
        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="Authenticate">
          <wsdl:input>
            <soap12:body use="literal"/>
          </wsdl:input>
          <wsdl:output>
            <soap12:body use="literal"/>
          </wsdl:output>
          <wsdl:fault name="ArgumentExceptionFault">
            <soap12:fault name="ArgumentExceptionFault"
                          namespace="http://Corona.Services.UserMgmt.UserMgmtSrv.FaultException"/>
          </wsdl:fault>
        </wsdl:operation>
        <wsdl:operation name="SaveHealthProfileWrapper">
          <wsdl:input>
            <soap12:body use="literal"/>
          </wsdl:input>
          <wsdl:output>
            <soap12:body use="literal"/>
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="UserMgmtSrv">
        <wsdl:port name="WSHttpBinding_UserMgmtSrv"
                   binding="tns:WSHttpBinding_UserMgmtSrv">
          <soap12:address location="https://debugger/Corona.Services/Corona.Services.svc"/>
          <wsa10:EndpointReference>
            <wsa10:Address>https://debugger/Corona.Services/Corona.Services.svc</wsa10:Address>
          </wsa10:EndpointReference>
        </wsdl:port>
      </wsdl:service>
      <wsp:Policy wsu:Id="WSHttpBinding_UserMgmtSrv_policy">
        <wsp:ExactlyOne>
          <wsp:All>
            <wspe:Utf816FFFECharacterEncoding xmlns:wspe="http://schemas.xmlsoap.org/ws/2004/09/policy/encoding"/>
            <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
              <wsp:Policy>
                <sp:TransportToken>
                  <wsp:Policy>
                    <sp:HttpsToken RequireClientCertificate="false"/>
                  </wsp:Policy>
                </sp:TransportToken>
                <sp:AlgorithmSuite>
                  <wsp:Policy>
                    <sp:Basic128/>
                  </wsp:Policy>
                </sp:AlgorithmSuite>
                <sp:Layout>
                  <wsp:Policy>
                    <sp:Strict/>
                  </wsp:Policy>
                </sp:Layout>
                <sp:IncludeTimestamp/>
              </wsp:Policy>
            </sp:TransportBinding>
            <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
              <wsp:Policy>
                <sp:SecureConversationToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
                  <wsp:Policy>
                    <mssp:RequireCancel wsp:Optional="true"
                                        xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
                    <sp:BootstrapPolicy>
                      <wsp:Policy>
                        <sp:TransportBinding>
                          <wsp:Policy>
                            <sp:TransportToken>
                              <wsp:Policy>
                                <sp:HttpsToken RequireClientCertificate="false"/>
                              </wsp:Policy>
                            </sp:TransportToken>
                            <sp:AlgorithmSuite>
                              <wsp:Policy>
                                <sp:Basic128/>
                              </wsp:Policy>
                            </sp:AlgorithmSuite>
                            <sp:Layout>
                              <wsp:Policy>
                                <sp:Strict/>
                              </wsp:Policy>
                            </sp:Layout>
                            <sp:IncludeTimestamp/>
                          </wsp:Policy>
                        </sp:TransportBinding>
                        <sp:EndorsingSupportingTokens>
                          <wsp:Policy>
                            <sp:SpnegoContextToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
                              <wsp:Policy>
                                <mssp:RequireCancel wsp:Optional="true"
                                                    xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
                              </wsp:Policy>
                            </sp:SpnegoContextToken>
                          </wsp:Policy>
                        </sp:EndorsingSupportingTokens>
                        <sp:Trust10>
                          <wsp:Policy>
                            <sp:MustSupportIssuedTokens/>
                            <sp:RequireClientEntropy/>
                            <sp:RequireServerEntropy/>
                          </wsp:Policy>
                        </sp:Trust10>
                      </wsp:Policy>
                    </sp:BootstrapPolicy>
                  </wsp:Policy>
                </sp:SecureConversationToken>
              </wsp:Policy>
            </sp:EndorsingSupportingTokens>
            <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
              <wsp:Policy>
                <sp:MustSupportIssuedTokens/>
                <sp:RequireClientEntropy/>
                <sp:RequireServerEntropy/>
              </wsp:Policy>
            </sp:Trust10>
            <wsap10:UsingAddressing/>
          </wsp:All>
        </wsp:ExactlyOne>
      </wsp:Policy>
      <wsp:UsingPolicy/>
    </wsdl:definitions>

    I had the problem with JDev (9.0.4) when trying to generate server side classes from a homemade wsdl which took a complex type as a parameter. The only thing I got from JDeveloper was a class receiving an Element. Which pretty much means you have to do the work yourself.
    Quite disappointing....!
    I see to possibilities:
    1) If you are stuck with 9.0.4 you will have to parse to and from xml yourself. For this you can use jax-b which is a Sun API used to create classes for a given XML Schema to parse and validate XML. You have some work creating the classes, but it runs very fast when you have generated the classes.
    2) You use the topdown approach described on OTN. http://www.oracle.com/technology/sample_code/tech/java/codesnippet/webservices/doc-lit/index.html
    I think this is the example for OC4J (9.0.4). There is a new and improved version of the tool (wsa.jar) with the new OC4J (10.1.3)
    Have fun......and I am sure that Oracle quite soon will deliver the functionality directly from JDev....:-)
    /Peter

  • WSDL for IdM Web Service

    The IdM doco states:
    "Identity Manager Web services are accessed using SOAP messages for HTTP. Identity Manager supports both versions of the OASIS standard for communication with provisioning systems; the Service Provisioning Markup Language (SPML) � versions1.0 and 2.0."
    I would like to create a standard Web Services Client with an IDE like Netbeans. This entails obtaining the WSDL.
    Does anyone know if this exists?
    There is one for the Password Rest Web Service, but not the SPML interface.
    Thanks

    There seems to be a sample WSDL defined in the SPML 1.0 bindings document on openspml.org at the following URL:
    http://www.oasis-open.org/committees/download.php/2394/cs-pstc-spml-bindings-1.0.pdf
    I didn't check the new SPML 2.0 spec to see if it includes a WSDL you could use but I think 2.0 is only available in IdM 7.0.
    Hope this helps.

  • Change the end point URL in WSDL for web-service

    Hi All,
    Morning , could someone please help us with this question, we are stuck with this currently.
    In SOA Suite 10g as well 11g we have a jsimple Java class whose one of the methods is exposed as a web service.
    In the project it has created the WSDL as well and have deployed the .ear file to the servers from EM console successfully.
    Now we need to migrate this web service to testing & production environments.
    1. Could someone please let us know the steps as to how do we change the end point url in the WSDL for this web service (present in web content --> WEB-INF/wsdl path in the j-developer project) for migration in case of both 10g (OC4J) as well 11g (WLS) servers.
    2. Also could this change/update be done prior to deployment as well as post deployment as well.
    Looking forward to inputs regards this...as we are stuck with this ..would be very helpful
    Thanks as always for help & guidance..

    Hi
    As Vijay mentioned, you develop a WebService in JDeveloper and test in JDeveloper integrated Weblogic Server say at http://localhost:7101/MyWebService/MyPort?wsdl. Thats it. Once it is working. Export it into a .WAR file. If you have any other supporting EJB JARs etc, put all these into a full blown .EAR at application level. NOW deploy this .EAR or .WAR into any Domain on any host and any port. DOES not matter. That server's host and port will be taken. Infact even if this other domain is Clustered domain, still it will work by giving webserver host and webserver port that sits in front of the cluster.
    I develop my webservices in JDeveloper and test at 7101 port. This .WAR gets deployed in QC Env at qchost:qcport. Same .WAR deployed to UAT at uathost:uatport and finally to prod also at prodhost:prodport.
    Its just the Client (WebService Proxy) that is calling this WebService need to use appropriate host and port based on which Env it is connecting to. For this, simply do not hard code WSDL URL in the java code or anywhere. Simply get it from a .properties file using a key value pair like this.
    WSDL_URL=http://host:port/MyWebService/MyPort?WSDL.
    Now have Environment specific values for above key and put that properties file in that domain root folder. And in your code always refer this key.
    You can use many approaches along the above lines.
    If your WebServies proxy is a webservice adapter say within bpel, still you can modify the value using deployment plan .xml file file while deploying.
    I would not absolutely prefer opening war file from ear and modifying war and updating ear file etc etc. Also do not have multiple EARs for Environment specific. Just have only one single EAR or WAR file that can be deployed to any environment.
    Thanks
    Ravi Jegga

  • How to generate a WSDL for communication service

    Hi,
    I'm integrating my OSB with the OCSG. For that I've got to create a WSDL file as per my exposed OSB service. On tryin manually I'm getting errors. Then I tried to create it through a Java class as given http://www.vorpal.net/xwiki/bin/view/Boot%20Camp/Extending%20Services%20Gatekeeper.
    In this link they have given the steps for generating the custom WSDL I tried this example but no success. Can you please help me with this? Has anyone created the wsdl using the above link?
    - Praveen

    Yeah sure!!
    Overall picture: I wish to expose my OSB services to the third parties using OCSG. For that I've created the Communication services corresponding to each OSB service.
    Problem: Integration with the OSB.
    At the OSB side I've got JMS queues which interacts with other existing systems in my SOA enviornment. But I'm not getting how to get the OCSG application- triggered request messages in that queue? Please help.
    Also I've read about the SOA facades for integration with OSB.Which of the two approaches you will suggest?

  • Unable to retrieve WSDL for many service name

    Hi All,
    Customer is using WAAS 5.01. We are trying to generate WSDL file for some service name. But succeded with only three sevices. As per the document we can retrieve WSDL for the services using the url https://localhost:8443/ws/<servicename>?wsdl. But when i tried to retrieve for "Alarm" service name its throughing error.(https://localhost:8443/ws/Alarm?wsdl.) Same is happening for most of the services.
    Is there any way i can get the WSDL for all the services?
    Thanks and Regards
    Riyas Hussain

    Hello Riyas,
    See the list of services for XML monitoring here:
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v501/monitoring/guide/MG_XML_API.html#wp88962
    So, for Events Service this should be
    https://:8443/ws/AlarmStatus?wsdl
    Amir

  • WSDL for asynch service with error message

    Hi,
    can anybody provide a example of a wsdl which is asynchronous and defines a fault message, if the service fails?
    Thanks...

    In principle, the way you define a SOAP Fault is by adding the faults that could be emitted for a given operation at the binding and portType level. Here is an example:
    <wsdl:message name="echoFaultMessage">
         <wsdl:part name="fault" element="xsd1:EchoFault"></wsdl:part>
    </wsdl:message>
    <wsdl:portType name="EchoWithFault">
         <wsdl:operation name="echo">
              <wsdl:input message="tns:echoWithFault" />
                    <wsdl:fault name="fault" message="tns:echoFaultMessage"></wsdl:fault>
           </wsdl:operation>
    </wsdl:portType>
    ...That said, it may not be wise to try to convey error back to the caller using SOAP Fault for async processing, as you have no guaranty that the client calling the one-way service will process the fault, as they may be using the "fire & forget" style of invocation.
    It's better to convey any processing error to the caller on the back channel.
    Hope it helps,
    -Eric

  • Is there a WSDL for this Web Service

    I am new to this Web Service Toolkit and am wondering if there is a WSDL for it. If so an example URL would be great.

    If you're here asking about the Mac OS X Server Podcast Producer, that's part of Mac OS X Server, and Mac OS X Server is a feature-upgrade to, and does cost more than, the more familiar Mac OS X (client) software package.  You'll also need sufficient network bandwidth for whatever you're planning here, particularly if you're going to be distributing this podcast material directly from your Mac OS X Server box.
    If you're here asking about creating podcasts using Garageband or other tools, then yes, there can be fees associated with those products.  Garageband is part of the iLife tools, and a version of that is installed with new Mac systems, though upgrades do cost money.  (And get yourself a good external cartioid condensor or equivalent microphone; the audio quality from the built-in mikes is very poor.)
    If you're here asking about the podcast downloads using iTunes and accessing the Apple servers for the podcasts you can download - and specifically about publishing the podcasts - then I believe those are free (at least for non-commercial podcasts), but you'll want to check the iTunes Making a Podcast document for details
    If I've not guessed at your particular goal(s) here (your question is unfortunately somewhat ambiguous), please consider providing a little more background on what you're up to and what problem(s) you're solving.

  • Create wsdl for service tht does not have prefedined named resultsets

    I am trying to create a wsdl for the GET_SCHEMA_VIEW_FRAGMENT service. I am not sure how to create the complex type for the response parameters. The name of the result set that comes back depends on the name of the view that is passed into the service. Below is an example of the response I get back. I resultset named "statesview" will change when I call the service for a different view. Any help would be greatly appreciated.
    - <idc:resultset name="statesview" TotalRows="3">
    - <idc:row>
    <idc:field name="StateId">1</idc:field>
    <idc:field name="State">Massachusetts</idc:field>
    <idc:field name="Country">USA</idc:field>
    <idc:field name="Display.default">Massachusetts</idc:field>
    <idc:field name="Display.English-US">Massachusetts</idc:field>
    </idc:row>
    + <idc:row>
    <idc:field name="StateId">2</idc:field>
    <idc:field name="State">Rhode Island</idc:field>
    <idc:field name="Country">USA</idc:field>
    <idc:field name="Display.default">Rhode Island</idc:field>
    <idc:field name="Display.English-US">Rhode Island</idc:field>
    </idc:row>
    - <idc:row>
    <idc:field name="StateId">3</idc:field>
    <idc:field name="State">Texas</idc:field>
    <idc:field name="Country">USA</idc:field>
    <idc:field name="Display.default">Texas</idc:field>
    <idc:field name="Display.English-US">Texas</idc:field>
    </idc:row>
    </idc:resultset>

    it depends on the selection algorithm you have on the proxyservce
    on the fourth tab you can dispatch based on soapaction/body/header/etc
    you could dispatch on the soapaction and skip the body

  • [CCM5.0/ControlCenterServices] wsdl for Service Interface API

    Hi,
    Where can I find the wsdl file that corresponds to the Service Interface API, espacially for ControlCenterServices Port. I would like to use methods like #ControlCenterServices#soapGetSer
    viceList.
    Thanks,
    Adnene BEN ABDALLAH

    There seems to be a sample WSDL defined in the SPML 1.0 bindings document on openspml.org at the following URL:
    http://www.oasis-open.org/committees/download.php/2394/cs-pstc-spml-bindings-1.0.pdf
    I didn't check the new SPML 2.0 spec to see if it includes a WSDL you could use but I think 2.0 is only available in IdM 7.0.
    Hope this helps.

  • Localhost polluting ?WSDL for simple service

    Hello,
    I have created a simple service based on the Buelow tutorial. I run JDeveloper on Windows, the server on Linux.
    However, the generated WSDL has "localhost" as the location of the "<abstractWSDL>". I'm not even sure why we need that abstractWSDL, as the info is in the main wsdl file. All the other service referencences are correct, just not that one. I have told the WL server its own machine DNS name (soabmp-vm.local).
    I have hacked it by just copying the file locally, but that is bad practice.
    Any ideas welcome, WSDL below.
    Anthony
    http://soabpm-vm.local:8001/soa-infra/services/default/Project1/getStatusByCC?WSDL
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="getStatusByCC"
    targetNamespace="http://oracle.com/sca/soapservice/CrCardTutAp1/Project1/getStatusByCC"
    xmlns:tns="http://oracle.com/sca/soapservice/CrCardTutAp1/Project1/getStatusByCC"
    xmlns:inp1="http://www.globalcompany.com/ns/CCAuthorizationService"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <wsdl:documentation>
    <abstractWSDL>http://localhost:8001/soa-infra/services/default/Project1!1.0/getStatusByCC.wsdl</abstractWSDL>
    </wsdl:documentation>
    <wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:import namespace="http://www.globalcompany.com/ns/CCAuthorizationService" schemaLocation="http://soabpm-vm.local:8001/soa-infra/services/default/Project1/getStatusByCC?XSD=xsd/creditcheck.xsd"/>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="requestMessage">
    <wsdl:service name="getStatusByCC">
    <wsdl:port name="execute_pt" binding="tns:execute_pttBinding">
    <soap:address location="http://soabpm-vm.local:8001/soa-infra/services/default/Project1/getStatusByCC"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    i'm not sure if this would fix it but can you try this :
    go to the em console
    farm_... > SOA > soa-infra > rightmouseclick > SOA Administration > Common properties > and use full qualified urls in the Callback Server URL and Server URL parts
    and test again

  • How to specify custom namespace in generating WSDL for BAPI

    In the creation of the Web Service Definition(WSDL) for a rfc-enabled function module, I would like to specify the custom namespace rather than the default in /sap/bc/srt/rfc/sap/. And I could not change the path in the Service Definition after it is generated(greyed out in change mode).
    I have looked all over the SAP help and could not find any documentation for the change.
    Any advise?
    regards,
    Wai-ming

    Hi John,
    You've raised a good scenario.
    First of all let me say that the purpose of the DB polling transaction, is to have an option to initiate a process from a DB table/view and not to update multiple fields in a table (or have other complex manipulation on the table).
    So, when choose to update a field in a record, after reading it, you are "telling" the engine not to poll this record again. Sure, i guess you can find a solution/workaround for it, but I don't think this is the way....
    The question now is what to do?
    You can have another DB adapter where you can update the data after finishing the process. In that case, after reading the data (on polling transaction) - update the header.status = 'processed' for example, and after processing the selected data update the rest of the fields.
    Hope it make some sense to you.
    Arik

Maybe you are looking for

  • Conflict between socket and RMI

    Hi I wrote a program in client-server using socket and it was fine. I also wrote a client-server program using RMI. Fine as well. But after I connected the client-server using socket (open socket, send-receive messages, close socket), then use RMI. I

  • Report based on Output Type

    Dear Friends, If there is any functionality or Table from where i can get list of Invoices based on OUTPUT TYPE we have diff invoice types like sales invoice, service invoice, lease invoice and for all invoices there is dif output type is assigned. I

  • Different Element Names

    I think the solution to my problem is very easy, but i couldn't fint it :( So, here is: I have an XML which have a list of elements with different names, but in sequence. An example: <DOC> <DOC_OBL_1>   <TIP_DOC_OBL>1</TIP_DOC_OBL> </DOC_OBL_1> <DOC_

  • Creating a new local database

    Hello, I am trying to create just a new local database. That is, so that it will reside on my computer. The only thing I know is how to connect an existing db and I don't have any DB-related softwares on my computer [just eclipse for java]. How can I

  • My MacBook Pro can not find my internal hard drive.

    My computer does come on. And I have a MacBook Air 2009. Just some history, my computer froze on me one day. So I restart it and a screen with a folder and question mark showed up. So I called apple and got some trouble shooting done. Nothing worked.