WSDL for SPML v2

I am looking for some WSDL to describe core SPML operations. Has anyone come accross any?

Use this forum to discuss the Reflections and Reference Objects APIs.
Your question is in the wrong place.

Similar Messages

  • 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.

  • 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

  • How to generate WS and WSDL for proper working DS under ALDSP 3.0?

    Hi,
    Ive got small problem with generating WebService and WSDL for proper working DataService in AL Data Service Studio.
    Whats the worse, I cant find any good documentation showing how to do it step by step in the new development enviroment.
    Currently Im doing it like:
    1) right click on DS and then Create Web Service Map
    2) when Im trying to View WSDL for created (in previous point) WS Map, after a while for deployment, I get Error 404--Not Found
    3) when Im trying to Save WSDL As ... , after showing where it should to be saved, nothing happens
    4) At Test Web Service Map option Ive got (in ZIP archive there is error trace from WebLogic console):
    http://localhost:7001/xyz/abc/test/something.ws?WSDL
    failed due to weblogic.testclient.WsdlParseFailedException: Not Found
    My questions are:
    i) how I can generate WS for DS?
    ii) when there will be some tutorials to download for ALDSP 3.0?

    Some new facts about this situation.
    A moment ago Ive made all the things like in edocs:
    http://edocs.bea.com/aldsp/docs30/install/migration.html#wp1081343
    After that problems still exists and what is the worst - the same problem as at the first time.
    So:
    1) Problem of not migrated kind="private" to visibility="private"
    2) Problem of migrating the files encoded in CP1250 if they got charakters encoded in CP1250
    3) I know that proces of migration from multiple imports to the same namespace within XSDs must be done in manual way but problem still exist
    4) There are some issue like this:
    "[ld:xXx_PIDataServices/cache/order/order.ds]: The return type of the read function "{ld:xXx_PIDataServices/cache/order/order}setOrderStatus" with arity 1 does not match the Data Service target (element) type "{services.cache.integration.amg}setOrderOut"."
    When I remove kind="read" from pragma then its going to be valid.
    In short time we will try to contact with our local BEA support.
    PS Right now I was trying to import another project (sample one for Workshop 8.1 - <BEA_HOME>\weblogic81\samples\workshop\SamplesApp) and it also didnt go smoothly :/
    Edited by PiotrGalas at 02/01/2008 4:20 AM

  • 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

  • WSDL for Custom Object 3

    I understand from CRMOD Customer Service that we do not have a WSDL for the Custom Object 3. Is this a true statement. I do not have it exposed.
    If this is true can you let me know if it will be available in R15

    Custom Object 3 is not accessible via the web services. I'm not aware of a plan to make it available in R15. I'm not 100% sure, but I wouldn't count on it.

  • Wsdl for emails

    How to get a wsdl for sending mail by a third party service provider??

    Custom Object 3 is not accessible via the web services. I'm not aware of a plan to make it available in R15. I'm not 100% sure, but I wouldn't count on it.

  • 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

  • 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

  • OSB Email Can't find wsdl for Proxy?

    Hi,
    OSB 11G
    Req: System A will invoke OSB Service and OSB should send an email.
    I have created a Business Service and Proxy Service for Email in OSB like:-
    Business Service:
    1.Selected Service Type as Message Service.
    2. Req Message Type as Text
    3.Select Protocol=Email ad gave End Point URI
    4. Selected SMTP Server .
    Proxy Service
    1. I created XML(for incoming request content in Proxy) and imported in my Proxy and selected http Protocol in Proxy.
    2. In Proxy, I created Route Node. In Route Node, I used Communication->Transport. and set the Transport Headers Subject as $body/ema:Email/ema:subject/text() =expression
    To as $body/ema:Email/ema:to/text() =expression.
    3. I added an action -replace with variable body and expression=$body/ema:Email/ema:content/text().
    Both Business and Proxy are working fine. But I cannot see WSDL for OSB Service? As I want this OSB Service to be called from System A.
    Thanks

    You will not find a WSDL for http type service.
    You have to create your own WSDL and create a WSDL based proxy service.

  • Generating wsdl for the adapters in soa 11g

    Hi,
    how can we generate a wsdl only for the adapter that we use in soa 11g??
    for eg.. my scenario is frm the previous posts it was said that we need to generate the wsdl for the adapter and should import it in OSB for proxy services...
    (so this is interacting/ using adapters in osb)
    So please let me know if im wrong.. and guide me to correct way...
    Thanks in advance
    --Marias                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks man for the info...
    Actually Im looking for sample dbadapter in 11g. Is 11g wsdl compatible with osb 10???
    Becoz it threw me error when I imported the 11g designed bpel wsdl...
    --Marias                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 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

Maybe you are looking for

  • Fonts in xfontsel (but not in OOo)

    hey people, I tried to install some TTF fonts. They do show up in xfontsel, but not in OpenOffice. The thing is: these are three fonts that have been created on a mac. they had the extension .suit, but I changed it to TTF (the creator of the fonts to

  • Renaming namespace

    Hi, I have created a namespace then renamed it, and build objects within.  However, at runtime, when Business Process is calling Java Proxy service which resides on WebAS,  we got error of "Error when receiving by HTTP (error code: 400, error text: I

  • ASASM failing caused by DoS from single PC

    Hi, I recently had the case at one of my customers that the ASA Service Module in their coreswitch was making trouble. The symptoms were massive packet-loss for valid connections and also problems with high-availablity (the failover-cluster fell apar

  • Thunderbolt no display after firmware update (Windows only)

    hi folks it appears my thunderbolt 27" is 50% dead... after doing the firmware update (i think it was 1.2), my thunderbolt is now dead in Windows. it works perfectly in Mac OS X, and is detected correctly and 'all. as soon as I boot with it into Wind

  • When syncing, a new window opens every time!

    this is most annoying. whenever my shuffle synchs, windows opens a new window and then when it's done it automatically closes the window. but you have to minimize it b/c it opens at the forefront of everything. the window contains nothing. how can i