PI 7.1 wssecurity tag in wsdl

Hi All,
Recently our XI 3.0 system upgraded to PI 7.1, now when we have created the webservice we have seen extra xmls tabs about the ws policy document tags.
In XI 3.0 system we did't find any extra these tags..
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
Please let me know how we can desiable the ws security policy.
Thanks,
Venkat

Hi,
Thanks for your information, I have tried SOAMANAGER in PI 7.1 but our service is not available in the list. Pls suggest me how to disable ws security policy in PI 7.1
After i have generated the wsdl i am unable to test with Netbeans web client its not allowing bcaz of ws seruity tabs in wsdl file.
Thanks,
Venkat

Similar Messages

  • Significance of binding tag in WSDL file

    Hi
    I have written a simple WebService based on JAX -WS , with the help of Sun one Application server i generated a wsdl file for that .
    By seeing the wsdl files i could not able to understand binding tag of my wsdl .
    Could anyone please let me know what is the signifucance of this tag ??
    The genrated one in my case is .
    <binding name="CalculatorPortBinding" type="tns:Calculator">
    </binding>Thank you .

    At a glance:
    Wsdl has two parts: abstract (PortType) and Concrete (bindings)
    The abstract part- tag <portType or tag (<interface since wsdl 2.0) is kind of interface i.e. describes available operations and their signature.
    Obviously to invoke the web-service - we have to know protocol and address .
    The wsdl concrete part desribes it.
    Since there number protocols and almost every protocol can have number parameters then
    wsdl concrete part consists of two parts:
    <binding - describes protocol and defnes necessary protocol parameters
    <service ...><port - defines concrete address and joins with binding (concrete protocol with parameters)
    The most detailed answer you can find by reading wsdl spec :)

  • Does wscompile generate "fault" tag in WSDL file from Java exception class?

    I'm trying to generate WSDL files from Java classes. I defined some of my own exception that inherits from "RemoteException", but wscompile doesn't generate the corresponding complex type and "fault" tag. Does anyone know if this is a bug or wscompile doesn't support from Java Exception to fault?
    Thanks

    It will if the exceptions do not inherit from RemoteException.

  • JAX-WS: SAXParseException parsing MSN Search WSDL file

    I'd like my java app to use JAX WS to make calls to the SOAP API for Microsoft's Live Search. The WSDL file is located at: http://soap.search.msn.com/webservices.asmx?wsdl
    I download that file and called it msn.wsdl. I then ran the command "wsimport msn.wsdl", which resulted in the following error:
    error: invalid WSDL file! failed to parse document at "file:/C:/dev/msn.wsdl": org.xml.sax.SAXParseException: The prefix "wsdl" for element "wsdl:definitions" is not bound.I don't know if this is relevant or not, but the wsdl:definitions tag looks like this:
    <wsdl:definitions targetNamespace="http://schemas.microsoft.com/MSNSearch/2005/09/fex">And there is nothing at the specified URL (http://schemas.microsoft.com/MSNSearch/2005/09/fex).
    Can anyone tell me what I need to do to get this working? (Better yet, has someone else already done this and created a jar file that I can download?)
    I'm using jdk 1.6.0_03-b05 on Windows.

    Hello,
    And there is nothing at the specified URL (http://schemas.microsoft.com/MSNSearch/2005/09/fex).This is namespace, not a correct internet location in this case.
    There should be following declaration for wsdl namespace in "definition" tag:
      xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" I think you copied wsdl from firefox window or something like that. Use "save as" option of the internet browser or tool like wget to save this file.
    This is correct "definition" tag for this wsdl:
    <wsdl:definitions
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
        xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
        xmlns:tns="http://schemas.microsoft.com/MSNSearch/2005/09/fex"
        targetNamespace="http://schemas.microsoft.com/MSNSearch/2005/09/fex">Regards,
    S&#322;awomir Wojtasiak

  • Error in Wsdl

    Hi All,
    We have SOAP to RFC scenario  Sender system will call WSDL which PI 7.1 will create
    I have done the following to create WSDL
    (Option 1)  For Sender system to genrate wsdl, i went to Sender Agreement ->. Display WSD. Save it
    (Option 2 ): I went to ID -> Tools-Display WSDL and put all the info & save the WSDL
    In both the cases, the sender system ( Which is Java system) is not able to load the WSDL. The error is
    Schema for namespace 'urn:xxx.com:XXX:XXXX' contains an annotation component with unrecognized content: appinfo
    From: (HA5DBA5B129B08F335783B4E6EB9CC6FA:10.90.25.3)
    My Namespace is like urn:xxx.com:Buyer:Puurchase ( with 3 colons )
    Please advice, if there is issue in WSDL
    Regards

    Thanks for the reply.
    Looks like the end system was not supporting tag in wsdl called <xsd:annotation>
    After removing this, the issue was resolved. Regds

  • Schema Parser and WSDL

    Hi all,
    Iam trying to load schema that occurs within the <types> tag of WSDL into the schema parser(XMLSchema).I have a schema as follows
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://TRANSACTIONALWEB.COM" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://TRANSACTIONALWEB.COM">
    <complexType name="Entry">
    <sequence>
    <element name="url" type="string" nillable="true"/>
    <element name="fname" type="string" nillable="true"/>
         <element name="addressline1" type="string" nillable="true"/>
         <element name="addressline2" type="string" nillable="true"/>
         <element name="addresscity" type="string" nillable="true"/>
         <element name="addressstate" type="string" nillable="true"/>
         <element name="addresspostalcode" type="string" nillable="true"/>
         <element name="addresscountry" type="string" nillable="true"/>
         <element name="distance" type="string" nillable="true"/>
         <element name="contact" type="string" nillable="true"/>
         <element name="phone" type="string" nillable="true"/>
         <element name="email" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="Entry" type="intf:Entry" nillable="true"/>
    <complexType name="ArrayOfEntry">
         <complexContent>
         <restriction base="SOAP-ENC:Array">
         <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="intf:Entry[]"/>
         </restriction>
         </complexContent>
    </complexType>
    <element name="ArrayOfEntry" type="intf:ArrayOfEntry" nillable="true"/>
    </schema>
    oracle.xml.parser.v2.XMLParseException: Namespace prefix 'wsdl' used but not declared.
         at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:148)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:264)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:146)
         at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:96)
         at SchemaParser.<init>(SchemaParser.java:106)
         at SchemaParser.main(SchemaParser.java:172)
    The namespace with wsdl prefix is declared as the top level element in WSDL ie
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:impl="http://POST-impl" xmlns:intf="http://TRANSACTIONALWEB" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://TRANSACTIONALWEB">
    Is there any way by which i can make the schema parser skip this validation???
    thanks in advance
    sai

    What do you mean by skip? But in order for your XML schema to be valid, you need to specify the namespace for "wsdl":
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"

  • JAXB mapping error on WSDL

    Hi.
    I have a problem creating web service proxy in JDeveloper using particular WSDL. As I have deeply explored the cause of an error I found the complexType by name "objectFactory" inside WSDL which is mapped by JAXB to ObjectFactory object. So the tag inside WSDL file is :
    <xs:complexType name="objectFactory"><xs:sequence/></xs:complexType>
    And that is causing the error described below. Now the problem is ObjectFactory is also a name for object definition inside Java.
    Hope I was clear enough. Is there a way to avoid this situation?
    The error I get when creating web service proxy is
    oracle.jdeveloper.webservices.model.WebServiceException: Error creating model from wsdl "file:/C:/temp/testVirWs.wsdl": null
         at oracle.jdeveloper.webservices.model.java.JavaWebService.createPortTypes(JavaWebService.java:1635)
         at oracle.jdeveloper.webservices.model.WebService.createServiceFromWSDL(WebService.java:2846)
         at oracle.jdeveloper.webservices.model.WebService.createServiceFromWSDL(WebService.java:2611)
         at oracle.jdeveloper.webservices.model.java.JavaWebService.<init>(JavaWebService.java:509)
         at oracle.jdeveloper.webservices.model.java.JavaWebService.<init>(JavaWebService.java:461)
         at oracle.jdeveloper.webservices.model.proxy.WebServiceProxy$ProxyJavaWebService.<init>(WebServiceProxy.java:2268)
         at oracle.jdeveloper.webservices.model.proxy.WebServiceProxy.updateServiceModel(WebServiceProxy.java:1701)
         at oracle.jdeveloper.webservices.model.proxy.WebServiceProxy.setDescription(WebServiceProxy.java:525)
         at oracle.jdevimpl.webservices.wizard.jaxrpc.proxy.ProxyJaxWsSpecifyWSDLPanel.setDescription(ProxyJaxWsSpecifyWSDLPanel.java:238)
         at oracle.jdevimpl.webservices.wizard.jaxrpc.common.SpecifyWsdlPanel.buildModel(SpecifyWsdlPanel.java:1109)
         at oracle.jdevimpl.webservices.wizard.jaxrpc.common.SpecifyWsdlPanel$5.run(SpecifyWsdlPanel.java:661)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.jdeveloper.webservices.tools.WsdlValidationException: Error creating model from wsdl "file:/C:/temp/testVirWs.wsdl": null
         at oracle.jdevimpl.webservices.tools.wsa.WsaAdaptor.newWsdlValidationException(WsaAdaptor.java:825)
         at oracle.jdevimpl.webservices.tools.wsa.WsaAdaptor.getSeiInfo(WsaAdaptor.java:515)
         at oracle.jdeveloper.webservices.tools.WebServiceTools.getSeiInfo(WebServiceTools.java:523)
         at oracle.jdeveloper.webservices.model.java.JavaWebService.getSeiInfo(JavaWebService.java:1741)
         at oracle.jdeveloper.webservices.model.java.JavaWebService.createPortTypes(JavaWebService.java:1496)
         ... 12 more
    Caused by: oracle.j2ee.ws.common.tools.api.ValidationException: Error creating model from wsdl "file:/C:/temp/testVirWs.wsdl": null
         at oracle.j2ee.ws.tools.wsa.jaxws.JaxwsWsdlToJavaTool.getJAXWSModel(JaxwsWsdlToJavaTool.java:679)
         at oracle.j2ee.ws.tools.wsa.WsdlToJavaTool.createJAXWSModel(WsdlToJavaTool.java:478)
         at oracle.j2ee.ws.tools.wsa.Util.getJaxWsSeiInfo(Util.java:1360)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.jdevimpl.webservices.tools.wsa.Assembler$2$1.invoke(Assembler.java:218)
         at $Proxy36.getJaxWsSeiInfo(Unknown Source)
         at oracle.jdevimpl.webservices.tools.wsa.WsaAdaptor.getSeiInfo(WsaAdaptor.java:505)
         ... 15 more
    Caused by: java.lang.NullPointerException
         at com.sun.tools.xjc.util.Util.equals(Util.java:67)
         at com.sun.tools.xjc.util.CodeModelClassFactory.createClass(CodeModelClassFactory.java:130)
         at com.sun.tools.xjc.util.CodeModelClassFactory.createClass(CodeModelClassFactory.java:77)
         at com.sun.tools.xjc.generator.bean.ImplStructureStrategy$1.createClasses(ImplStructureStrategy.java:78)
         at com.sun.tools.xjc.generator.bean.BeanGenerator.generateClassDef(BeanGenerator.java:410)
         at com.sun.tools.xjc.generator.bean.BeanGenerator.getClazz(BeanGenerator.java:442)
         at com.sun.tools.xjc.generator.bean.BeanGenerator.<init>(BeanGenerator.java:209)
         at com.sun.tools.xjc.generator.bean.BeanGenerator.generate(BeanGenerator.java:182)
         at com.sun.tools.xjc.model.Model.generateCode(Model.java:286)
         at com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.bind(SchemaCompilerImpl.java:252)
         at com.sun.tools.xjc.api.impl.s2j.SchemaCompilerImpl.bind(SchemaCompilerImpl.java:85)
         at oracle.j2ee.ws.common.tools.databinding.jaxb20.JAXB20TypeGenerator.generateJavaTypes(JAXB20TypeGenerator.java:121)
         at oracle.j2ee.ws.tools.wsa.SchemaTool.genValueTypes(SchemaTool.java:186)
         at oracle.j2ee.ws.tools.wsa.jaxws.JaxwsWsdlToJavaTool.getJAXWSModel(JaxwsWsdlToJavaTool.java:662)
         ... 24 more
    Any suggestion appreciated. Thanks.

    ObjectFactory is a special class used by jaxb, so you need to rename the class which is generated for the wsdl. you can rename objects using a binding file, see here for details:
    http://download.oracle.com/javaee/5/tutorial/doc/bnbbf.html

  • Error in Receiver Soap Adapter for Google API

    Hi,
    I am working on HTTP-XI-Soap scenario which on the receiver side calls google API for spell check.
    I get the following error : <b>No Deserializer found to deserialize a ':key' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.</b>
    However if I try calling the webservice individually using SOAP Client it works fine and do get desired response.The soap message that is sent by the client to the target URL is :
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:GoogleSearch" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
       <soapenv:Body>
          <urn:doSpellingSuggestion soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
             <key xsi:type="xsd:string">qXWD4x1QFHIo/dePqlYOLwT7kMmkv80E</key>
             <phrase <b>xsi:type="xsd:string"</b>>Bratney</phrase>
          </urn:doSpellingSuggestion>
       </soapenv:Body>
    </soapenv:Envelope>
    However if i remove the "xsi:type="xsd:string" part from the element 'phrase' and 'key' it returns the same error as it does while using with XI.
    Hence I am assuming that that the outgoing soap message elements need to have the above highlighed attribute.
    Now I want to have this attribute(xsi:type="xsd:string) in the soap message that is sent from XI.
    My question is , Is there any setting using which I can add the attributes in the above form to the outgoing message from XI.I do not want to use a adapter Module.
    Thanks & Regards,
    Sidharth

    Hi Sidharth,
    You post here the soap message that is sent by the client to the target URL, but did you look to the soap message that is sent by XI?
    Try the AF monitor http://<host>:<j2ee-port>//MessagingSystem/monitor/monitor.jsp?
    Because XI soap adapter doesn't support all tags of wsdl rpc-based, we need to adjust them...
    Look to the SOAP FAQ (SAP note number 856597) under question "Can I convert an RPC styled WSDL to a document styled WSDL?"... Look at last but one paragraph ;o)
    So, you need to change this attribute to one that it is compatible...
    Go to http://service.sap.com/xi > Media Library > Documentation and there you will find this xls document -> SAP XI 3.0 (SP11) - Supported XML Schema and WSDL (EN) in this document you have all the compatible elements of wsdl for XI.
    One more thing, you can adjust your soap request and change or add the required tags You can do it with xslt-mapping or create your won data types in XI without import the WSDL generated by google. 
    Hope it helps,
    Ricardo.
    Message was edited by: Ricardo  Quintino

  • Starting a BPM Process - Where is the Service?

    Hi,
    I build a small test process and tested it, everythings working fine, but now I want to start with an application from portal. Unfortunately I haven't found the service to start the process.
    Can anybody help me?
    Regards,
    Felix

    Hello Sinh,
    what error occurs on deployment?
    Be sure not only to remove the output operation via the "Design"-View with NWDS embedded WSDL Editor.
    Also have a look at the source of your WSDL and remove:
    All <xsd:element>-tags/blocks within <wsdl:types> that have been assigned to your output/response operation
    The <wsdl:message> that stay in context to your response
    All <wsdl:output>-tags within <wsdl:portType> -> <wsdl:operation>
    The <wsdl:output>-block within <wsdl:binding> - > <wsdl:operation>
    See a minimal example WSDL attached that just has an input-operation with one field named "NewValue" of type string:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.example.org/NewWSDLFile/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="NewWSDLFile" targetNamespace="http://www.example.org/NewWSDLFile/">
      <wsdl:types>
        <xsd:schema targetNamespace="http://www.example.org/NewWSDLFile/">
          <xsd:element name="NewOperation">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="NewValue" type="xsd:string"/>
              </xsd:sequence>
            </xsd:complexType>
          </xsd:element>
        </xsd:schema>
      </wsdl:types>
      <wsdl:message name="NewOperationRequest">
        <wsdl:part element="tns:NewOperation" name="parameters"/>
      </wsdl:message>
      <wsdl:portType name="NewWSDLFile">
        <wsdl:operation name="NewOperation">
          <wsdl:input message="tns:NewOperationRequest"/>
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="NewWSDLFileSOAP" type="tns:NewWSDLFile">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="NewOperation">
          <soap:operation soapAction="http://www.example.org/NewWSDLFile/NewOperation"/>
          <wsdl:input>
            <soap:body use="literal"/>
          </wsdl:input>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="NewWSDLFile">
        <wsdl:port binding="tns:NewWSDLFileSOAP" name="NewWSDLFileSOAP">
          <soap:address location="http://www.example.org/"/>
        </wsdl:port>
      </wsdl:service>
    </wsdl:definitions>
    Hope that helps.
    Have a nice day!
    Michael

  • Receiver Adapter - Target URL/SOAP Action

    Hi,
    Can I just confirm the following 2 values required on a SOAP Receiver adapter:
    Target URL : Location within SOAP:Address tag of WSDL
    SOAP Action: SoapAction within SOAP:Operation for relevant Web Service method within WSDL
    Cheers,
    PaulC.

    > Target URL : Value of SOAP:Address tag from web service WSDL
    right, it is attribute "soapAction"
    > SOAP Action: Value of SOAP:Operation for relevant Web Service method within web service WSDL
    right. attribute "location"
    check this guide:
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40611dd6-e66e-2910-f383-e80fb44f9cd4

  • Receiving IDOC through SOAP

    Hello everyone,
    Being new to XI, i'm still trying to process this brave new world. I've read and developed some simple scenarios using webservices. The last one i did was in a company A that needed to send ORDERS05 Idocs to company B. The latest provided a wsdl file used to create an external definition of the order document being sent. mapping is direct between all fields.
    Now, Company B needs me to setup things here, and receive the IDOC sent from company A (message monitoring states that all messages from there are sent with success, but still missing the part i just described).
    What is the best way to achieve this? can anyone point me to a document i could read on the subject (IDOC->IDOC with SOAP).
                                         Thank you in advance

    I'll try and explain the best i can:
    In company B, i have two SWC:
    COMPANYA - Represents the company that sent the IDOC ORDERS05 via webservice.
    PI_COMPANYB - Represents the company where i stand fisically, where the IDOC must arrive and be integrated into SAP R3.
    Here in company B i have created:
    - edORDERS05 - An external definition, on a namespace dependent of COMPANYA, importing a xsd file ORDERS05.
    - miOrdersDocuments - A message interface, of type edORDERS05.
    In Integration Directory i have:
    - COMPA - Party representing Company A
    - COMPAPI - Business Service of COMPA with channel SOAP_Receiver_OrderRequest.
    - SOAP_Receiver_OrderRequest - channel of communication to receive the webservice arriving from Company A, with URL like this:
    http://65.222.222.222:50000/XISOAPAdapter/MessageServlet?channel=COMPB:COMPBPI:SOAP_Sender_OrdersRequests&amp;version=3.0&amp;Sender.Party=http%3A%2F%2Fsap.com%2Fxi%2FXI%3AXIParty%3ACOMPB&amp;Sender.Service=COMPBPI&amp;Interface=http%3A%2F%2FcompanyA.com%2FOrdersRequests%5EmiSalesDocumentsReq
    The URL was snipped from "Location" tag in wsdl webservice previously created in Company B, using the "Tools->Define Webservice" from Integration Repository.
    Right now the idoc is being sent successfully from SAP R3 to XI Engine in Company A, and then sent to Company B where the message should be arriving (logs in proxy at the company say so), but when arriving at XI Engine of company B, nothing appears on sxmb_moni transaction.
    Hope i explained everything as asked.

  • Soap to rfc error when testing through xml spy

    Dear All,
    I have a scenario soap-to-rfc.I have created a WSDL using the url as :
    http://<myhost>:<port>/XISOAPAdapter/MessageServlet?channel=:BS_Legacy:CC_SOAP_Sender
    I am getting an error as mentioned below when i tried to test it throug altova xml spy.
    HTTP error: could not POSt file '/XISOAPAdapter/MessageServlet?channel=:BS_Legacy:CC_SOAP_Sender' on server 'host:port' (407).
    I have gone through all the related threads which are already there in forum but still couldn't find what's going wrong.
    I modified soap:address tag in wsdl
    <soap:address location="http://covmdvpi01.mhril.com:50000/XISOAPAdapter/MessageServlet?channel=:BS_Legacy:CC_SOAP_Sender"
    Please suggest.
    Regards
    Kumar

    Hi ,
    Thanx for quick reply.
    I am using 7.3 and created wsdl in ID>Tools->Disply wsdl
    my sender business system : BS_Legacy
    sender channel : CC_SOAP_Sender
    my url
    http://<host>:50000/XISOAPAdapter/MessageServlet?channel=:BS_Legacy:CC_SOAP_Sender
    i have given my host name in the place of host.
    my scenario is synchronous and given qos as BE.
    Use this URL in soapui and check what you get...do u mean that u want me to test using soap ui?
    if so i have tested it in soapui also
    new soap ui project-->project name and Initial wsdl/wadl(i have selected wsdl file from system location where i saved it) ...created...given input parmeters then i clicked on Submit Request to Endpoint URL button.
    still couln'd see response.
    you can see below response what i've got in soapui
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
      <title>Error Report</title>
      <style>
        td {font-family : Arial, Tahoma, Helvetica, sans-serif; font-size : 14px;}
        A:link
        A:visited
        A:active
      </style>
    </head>
    <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0">
      <table width="100%" cellspacing="0" cellpadding="0" border="0" align="left" height="75">
        <tr bgcolor="#FFFFFF">
          <td align="left" colspan="2" height="48"><font face="Arial, Verdana, Helvetica" size="4" color="#666666"><b>  401   Unauthorized</b></font></td>
        </tr>
        <tr bgcolor="#3F73A3">
          <td height="23" width="84"><img width=1 height=1 border=0 alt=""></td>
          <td height="23"><img width=1 height=1 border=0 alt=""></td>
          <td align="right" height="23"><font face="Arial, Verdana, Helvetica" size="2" color="#FFFFFF"><b>SAP NetWeaver Application Server </b></font></td>
        </tr>
        <tr bgcolor="#9DCDFD">
          <td height="4" colspan="3"><img width=1 height=1 border=0 alt=""></td>
        </tr>
      </table>
      <br><br><br><br><br><br>
      <p><font face="Arial, Verdana, Helvetica" size="3" color="#000000"><b>  Error: Unauthorized</b></font></p>
      <p><font face="Arial, Verdana, Helvetica" size="2" color="#000000"><b>  <a href="https://wiki.sdn.sap.com/wiki/x/wIN3Cw">SAP Technology Troubleshooting Guide</a></b></font></p>
      <p><font face="Arial, Verdana, Helvetica" size="2" color="#000000"><table>
        <tr>
          <td valign="top"><b> Details:</b></td>
          <td valign="top"><PRE>No details available.</PRE></td>
        </tr>
      </table></font></p>
    </body>
    </html>
    Thanks
    Kumar

  • Accessing the webservice hosted by BPEL(oracle 10G) from the weblogic 9.0

    Hi ,
    I have to access the funtion hosted in the webservice through BPEL system.Am using the weblogic 9.2
    i have written a build .xml to create the client jar from the WSDL.
    <project name="webservices-fusion_client" default="all">
         <!-- set global properties for this build -->
         <taskdef name="clientgen" classname="weblogic.wsee.tools.anttasks.ClientGenTask"/>
         <target name="clean">
              <delete dir="${clientclass-dir}"/>
         </target>
         <target name="all" depends="clean,build-client"/>
         <target name="build-client">
              <clientgen wsdl="http://server:20202/wsdl/?WSDL/L2COrder?WSDL" destfile="fusionclient.jar" packageName="lab.webservices.fusionclient" serviceName="L2COrder"/>
         </target>
    </project>
    while running the build .xml using "ant" command am getting this error.
    [clientgen] weblogic.wsee.tools.WsBuildException: Failed to parse WSDL
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenUtil.getJsCallbackServ
    iceName(ClientGenUtil.java:328)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenUtil.createBuildtimeBi
    ndings(ClientGenUtil.java:184)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenUtil.setupBuildtimeBin
    dingsFromScratch(ClientGenUtil.java:244)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenUtil.setupService(Clie
    ntGenUtil.java:78)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenImpl.doClientGen(Clien
    tGenImpl.java:186)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenImpl.execute(ClientGen
    Impl.java:147)
    [clientgen] at weblogic.wsee.tools.anttasks.JwscClientGen.execute(JwscClient
    Gen.java:191)
    [clientgen] at weblogic.wsee.tools.anttasks.ClientGenTask.doClientGen(Client
    GenTask.java:198)
    [clientgen] at weblogic.wsee.tools.anttasks.ClientGenTask.execute(ClientGenT
    ask.java:172)
    [clientgen] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.ja
    va:275)
    [clientgen] at org.apache.tools.ant.Task.perform(Task.java:364)
    [clientgen] at org.apache.tools.ant.Target.execute(Target.java:341)
    [clientgen] at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [clientgen] at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
    [clientgen] at org.apache.tools.ant.Project.executeTargets(Project.java:1062
    [clientgen] at org.apache.tools.ant.Main.runBuild(Main.java:673)
    [clientgen] at org.apache.tools.ant.Main.startAnt(Main.java:188)
    [clientgen] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:196)
    [clientgen] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:55)
    [clientgen] Caused by: weblogic.wsee.wsdl.WsdlException: role name Callback is n
    ot found.
    [clientgen] at weblogic.wsee.callback.wsdl.WsdlPartnerLinkType.getPortTypeNa
    me(WsdlPartnerLinkType.java:76)
    [clientgen] at weblogic.wsee.tools.clientgen.ClientGenUtil.getJsCallbackServ
    iceName(ClientGenUtil.java:323)
    [clientgen] ... 18 more
    BUILD FAILED
    D:\buil-jar\build.xml:17: weblogic.wsee.tools.WsBuildException: Failed to parse
    WSDL
    i have a tag named "partnerLinkType" which contains the roll name tag in WSDL file. i guess the probelm is coming here .
    <plnk:partnerLinkType name="L2C_Provisioning_Access">
              <plnk:role name="L2C_Provisioning_AccessRequester">
                   <plnk:portType name="tns:L2C_Provisioning_AccessCallback"/>
              </plnk:role>
              <plnk:role name="L2C_Provisioning_AccessProvider">
                   <plnk:portType name="tns:L2C_Provisioning_Access"/>
              </plnk:role>
         </plnk:partnerLinkType>
    can you please provide some solution here.
    Thanks in advance

    Please let me know if you want to see my WSDL file i will send it to you.

  • XML file with different format

    Hello
       I have a requirement where the customer needs XML file with different format.  How do I achieve the second format mentioned below instead of first format.
    Normally we create the XML file in the following format:
    - <Entries>
        - <Organization>
            <MemberName>0000000002</MemberName>
            <FullName>BAY GYNECOLOGICAL ASSOCIATES</FullName>
            <OrgId>0000000002</OrgId>
            <OrgType>CUST</OrgType>
       - <AssociatedToOrg>
            <Name>0002</Name>
       - </AssociatedToOrg>
      </Organization>
    Now the customer wants like the following format:
    <Organization MemberName="522_Community_Customer" FullName="522 Community Customer" OrgId="DEA123456" OrgIdType="DEA" >
          <AssociatedToOrg Name="MN"/>
        </Organization>
    Thanks
    Naga

    you can solve it with a XSL mapping. refer to the SDN to know how develop it
    /people/aleksey.popov2/blog/2010/01/26/consuming-webservices-with-tag-in-wsdl-using-xslt
    XSLT Editor for creating xlst mappings
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/190eb190-0201-0010-0ab3-e69f70b6c257
    http://wiki.sdn.sap.com/wiki/display/XI/XSLTMappingSteps
    http://wiki.sdn.sap.com/wiki/display/XI/FileTOFile-UsingXSLTmapping%28forBeginners%29
    http://wiki.sdn.sap.com/wiki/display/Snippets/ConvertflatXMLfiletonestedusing+XSLT
    http://wiki.sdn.sap.com/wiki/display/Java/MultiMappingwithJavaandXSLTmappings
    Edited by: Rodrigo Alejandro Pertierra on Oct 1, 2010 5:26 PM

  • SOAP UI

    Hi all,
    When ia m importing a WSDL into SOAPUI. it is showing following error. how can i resolve that error.  please explain
    " Found nothing to import in [file C:\ Documentsand settings\Desktop\company.wsdl]"
    as per my knowledge we have to remove a tag from WSDL. but i dont know what is that tag please give me a suggestion
    Thanks

    I dont think there is any tag that needs to be removed....can you check if your WSDL file is proper...is it showing aproper structure when you import in IR and view the message structure?

Maybe you are looking for

  • "Your airport device does not have a valid IP address"

    Hello, Hoping someone can be kind enough to help here, please let me know if I haven't provided enough details or in the wrong format as I'm not hugely technical. I have recently bought an Airport Express to connect to my existing Wi-Fi network. I ha

  • How can I update my ipad 2 to iOS 7.0?

    How can I do it if I don't see a red badge in the settings and i think red badge in the setting is compulsory for it. Right? Please tell me any way which does not require using a computer. Thanks!

  • VGA (pc) to DVI or ADC monitor

    Is there a way to possibly accomplish this feat? Looking at getting a G5 and want to keep only one monitor on the desk top if possible. Steven

  • Finder can't see external drive

    Whilst trying to set my external drive so that a 'guest' user could not access it, I somehow managed to remove all permissions for myself from that volume. Not being able to access Get Info - Ownership & Permissions, I found an April 07 post from Rob

  • Package Concept is in Forms ???

    Hi all .. Can anyone tell me whether Package concepts is in oracle forms ... Regards Sai