Xrpcc fails to generate wsdl

I followed the example to generate the HelloWorld jaxrpc example. xrpcc failed to generate a wsdl document. No clues were given as to why.
I am also trying to invoke the HelloWorld service from Microsoft .Net. Is there any sample code available?
Any help would be appreciated.

in generating a .net client your life becomes a lot easier, just point the wsdl executable at the .wsdl file and you're done. all you have to do is plug the generated class into your application. it's so much easier than the recent java implementations - it's embarrasing

Similar Messages

  • Failed to generate client proxy from WSDL definition for this service

    Hi,
    I am using Weblogic 8.1 SP1. I created a webservice which takes a XMLBean object
    as parameter and returns another XMLBean object. The web service works fine when
    tested using the workshop's test browser but when i am trying to generate a client
    proxy trough the workshop's test browser, it displays this warning:
    Failed to generate client proxy from WSDL definition for this service
    and does not generate the proxy.
    I'll appreciate any thoughts on this.
    Thanks
    Sandeep

    Hi Sandeep,
    Could you try invoking clientgen [1] directly to see if this properly
    consumes your WSDL?
    Thanks,
    Bruce
    [1]
    http://e-docs.bea.com/wls/docs81/webserv/anttasks.html#1080160
    Sandeep wrote:
    >
    Hi,
    I am using Weblogic 8.1 SP1. I created a webservice which takes a XMLBean object
    as parameter and returns another XMLBean object. The web service works fine when
    tested using the workshop's test browser but when i am trying to generate a client
    proxy trough the workshop's test browser, it displays this warning:
    Failed to generate client proxy from WSDL definition for this service
    and does not generate the proxy.
    I'll appreciate any thoughts on this.
    Thanks
    Sandeep

  • Missing dependant files in generated WSDL using jwsc task

    Hi,
    I’m using weblogic 12.1 ant task jwsc to generate the artifacts to create weblogic web service. Following is my JWS file
    @WebService(name="HelloWorld", serviceName="HelloWorld",
    targetNamespace="http://example.org")
    @SOAPBinding(style=SOAPBinding.Style.DOCUMENT,
                  use=SOAPBinding.Use.LITERAL,
                  parameterStyle=SOAPBinding.ParameterStyle.WRAPPED)
    @WLHttpTransport(contextPath="HelloWorld", serviceUri="HelloWorldSvc",
                      portName="HelloWorldPort")
    public class HelloWorld{
    @WebMethod()
    public ServiceResponse sayHello(){
    Employee emp=new Employee();
    emp.setName(“Alex”);
    System.out.println(“Hello ”+emp.getName());
    return new ServiceResponse(emp);
    public class ServiceResponse{
    private Object responseObject;
    public ServiceResponse(Object responseObejct){
    this.responseObject=responseObject;
    //getters and setters of response object
    My webMethod sayHello() uses Employee class . After executing jwsc task, the generated WSDL doesn’t contain any reference related to Employee class. If I use clientgen ant task to generate client artifacts from WSDL (generated from jwsc task), client jar will not have Employee class (since WSDL doesn’t have the user-defined class Employee).
    If I try to access the application, it’s throwing NoClassDefFoundError for Employee class.(unknown java type:Employee)
    Ant script :
    <jwsc
           srcdir="src"
           destdir="${dist}">
          <jws file="com/examples/webservices/HelloWorld.java" />
        </jwsc>
    Ant task to generate client artifacts:
    <clientgen
                   wsdl="http://localhost:7001/HelloWorld/HelloWorldSvc?WSDL”
                   destFile="HelloWorld_Client.jar"
                   packageName="com.examples.webservices.client"
                   classpathref="class.path"              
                   type="JAXRPC"/>

    I have some new information. When I generate the project as FlashHelp, I get an error message:
    Error: Fail to update Template file whxdata\whfts.xml
    In the resulting output, we get correctly functional TOC autosync, but non-functional search. (This is the same result as with WebHelp, except that no error message appears in generation.)

  • Failure to generate WSDL from web service when use xmlbean

    Hi, I have a web service that uses xmlbean generated by schema. The schema from 3rd party is in a separate project since it's used by another web app and ejb project. In wlw103 I have included the schema project in this web service project's Java Build Path. The web service compiles, but when I tried to generate WSDL a Error window shows and says "The WSDL cannot be generated from the web service due to unexpected runtime errors".
    The following is the detail. What do I need to do to make the xmlbean available for my web service? Thanks
    com.bea.workshop.webservices.core.gen.WebServicesException: weblogic.wsee.tools.jws.build.CompileException: Error compiling web service: C:\workspace\ws\src\myPackage\testWS.java
         at com.bea.workshop.webservices.core.compiler.WebServiceCompilerImpl$3.invoke(WebServiceCompilerImpl.java:335)
         at com.bea.workshop.webservices.core.compiler.WebServiceCompilerImpl.accessCompiler(WebServiceCompilerImpl.java:390)
         at com.bea.workshop.webservices.core.compiler.WebServiceCompilerImpl.compile0(WebServiceCompilerImpl.java:330)
         at com.bea.workshop.webservices.core.compiler.WebServiceCompilerImpl.compile(WebServiceCompilerImpl.java:275)
         at com.bea.workshop.webservices.ui.actions.GenerateWsdlFromJwsAction.run(GenerateWsdlFromJwsAction.java:169)
         at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:256)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:546)
    Caused by: weblogic.wsee.tools.jws.build.CompileException: Error compiling web service: C:\workspace\ws\src\myPackage\testWS.java
         at weblogic.wsee.tools.jws.build.JwsCompiler.buildWebServices(JwsCompiler.java:526)
         at weblogic.wsee.tools.jws.build.JwsCompiler.compile(JwsCompiler.java:483)
         at com.bea.workshop.webservices.core.compiler.WebServiceCompilerImpl$3.invoke(WebServiceCompilerImpl.java:333)
         ... 46 more
    Caused by: weblogic.wsee.tools.WsBuildException: weblogic.wsee.bind.buildtime.BindingException: ERROR ! could not add Xml Schema Type for XmlBean named '\[com.domain.UserDocument\]'. This is completely unexpected and might be caused by missing *.xsb and *.xsd files in the build environment. The building and running of this Service is likely to FAIL.
         at weblogic.wsee.tools.jws.jaxrpc.JAXRPCWebServiceInfo.createBindings(JAXRPCWebServiceInfo.java:227)
         at weblogic.wsee.tools.jws.wsdl.WsdlBuilder.processImpl(WsdlBuilder.java:43)
         at weblogic.wsee.tools.jws.jaxrpc.JAXRPCProcessor.process(JAXRPCProcessor.java:27)
         at weblogic.wsee.tools.jws.process.CompositeProcessor.process(CompositeProcessor.java:47)
         at weblogic.wsee.tools.jws.build.JwsCompiler.buildWebServices(JwsCompiler.java:522)
         ... 48 more
    Caused by: weblogic.wsee.bind.buildtime.BindingException: ERROR ! could not add Xml Schema Type for XmlBean named '\[com.domain.UserDocument\]'. This is completely unexpected and might be caused by missing *.xsb and *.xsd files in the build environment. The building and running of this Service is likely to FAIL.
         at weblogic.wsee.bind.buildtime.internal.SoapAwareJava2Schema.bindAsExplodedTylar(SoapAwareJava2Schema.java:1414)
         at weblogic.wsee.bind.buildtime.internal.TylarJ2SBindingsBuilderImpl.createBuildtimeBindings(TylarJ2SBindingsBuilderImpl.java:216)
         at weblogic.wsee.tools.jws.jaxrpc.JAXRPCWebServiceInfo.createBindings(JAXRPCWebServiceInfo.java:223)
         ... 52 more

    HI,
    I hope this issue can resolved by adding this patch CR349256
    Try to contact weblogic support to get more details about this patch.
    Regards,
    Kal.

  • AS can't generate WSDL

    Hi,
    I have the following problem. I have Oracle AS 10.1.3.3 installed and I am trying to generate the WSDL from WSDD file, which is a part of an application deployed on the server. The server was able to generate WSDL for a Hello World WebService, but if I try to use for example my own exceptions extended from Exception, I got the following message:
    AXIS error
    Sorry, something seems to have gone wrong... here are the details:
    Fault - ; nested exception is:
         java.lang.ClassCastException: com.ibm.wsdl.extensions.soap.SOAPFaultImpl
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.ClassCastException: com.ibm.wsdl.extensions.soap.SOAPFaultImpl
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:marvin.ba.dynatech.sk
    I am little bit confused, because my previous 10gR2 AS generated WSDL from the same WSDD without any problems.
    Can anybody help me?
    Thanx
    Martin

    Jose, you say you can't find much about Flex calling remote
    objects. Really? There are many, many such resources.
    But maybe you mean that refer to this badversion error. Doing
    a little digging, I see references to issues related to SSL/HTTPS.
    Is that a part of what you're doing? Check out these.
    http://www.adobeforums.com/webx/.59b4dc44
    http://www.nabble.com/SSL-Https-communication-between-swf-and-data-service---life-cycle-is -failed-td18922452.html
    Here also is an entry where someone writes about calling a
    CFC from Flex, and in a comment he mentions the badversion error.
    Though he never mentions resolving it specifically, he seems to
    have gotten things working, so maybe among the few things discussed
    is a solution for you.
    http://www.flashcomguru.com/index.cfm/2006/11/11/flex2remoting
    I also see one that suggests that the badversion error is
    just a generic error reflecting another problem in the connection.
    While it discusses AMFPHP, which is an open alternative to the
    FlashRemoting built into CF, it may still offer insight:
    http://www.5etdemi.com/blog/archives/2005/06/i-did-it-i-killed-netconnectioncallbadversion
    If none of them are it, since it seems maybe you're having
    difficulty calling ANY CFC component from AIR/Flex, check out any
    of these examples to see if you can get them to run:
    http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html
    http://tutorial519.easycfm.com/
    http://www.cftips.net/post.cfm/flex-data-grid-with-coldfusion-flash-remoting-using-cfc
    Just be careful as you're looking at resources for Flex
    examples: some are for 1.5, some for 2, some for 3.
    Hope that helps.

  • How to generate .wsdl for a portlet?

    Dear all,
    I would like to publish a portlet, say portlet_x, as a web service, so it can be accessed by remote portlets. This is my first post here, and appreciate very much if someone can help me out.
    My understanding is that I need to make portlet_x a producer. So I followed this document:
    http://e-docs.bea.com/wlp/docs81/wsrp/workprod.html#1001012
    The wsrp-producer-config.xml was successfully generated. Then I tried to a remote portlet to access portlet_x. However, portlet_x doesn't appear in the portlet lists retrived by:
    http://localhost:7001/sampleportal/producer?WSDL
    The reason is probably because there is no wsdl file for portlet_x. What might I miss here? Any help is greatly appreciated.
    Thanks in advance.
    Omega

    Subbu, can you be more specific on this topic. i'm having problem even to read WSDL generated by BEA producer. Trying to read WSDL using url http://myBEAmachine:7001/sampleportal/producer?WSDL failed for me with exception "Unable to resolve imported document at 'wlp_wsrp_v1_bindings.wsdl.'". I check generated WSDL and it refer above wsdl like this location="wlp_wsrp_v1_bindings.wsdl", which, as I understand, won't work if consumer and producer are on the different machines. FYI, I'm using wsdl4j to read the wsdl speicified by url as follows "http://myBEAmachine:7001/sampleportal/producer?WSDL"
    Message was edited by mikmela at Dec 30, 2004 4:48 PM

  • "HTTP500 - OTHER_ERROR: Failed to read WSDL" creating a Web Service in OBPM

    I'm currently experiencing a problem with OBPM 11g when trying to consume a Web service into my composite application.
    I have created a BPM Application and have previously been able to consume Web Services from our service bus. Since a recent restart of my client however, I can nolonger consume the same (or indeed any) service from any location as JDeveloper gives nme the following error when trying to access the WSDL file...
    Error while reading wsdl file
    http://<server>:<port>/<service>).wsdl
    Exception:
    WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from
    http://<server>:<port>/<service>).wsdl:
    HTTP Connection error code is 500
    I can navigate to the WSDL within IE on the same client and I have switched off the "Use HTTP Proxy Server" within the "Web Browser and Proxy" preferences'. Are there any other preferences or settings that could be causing this issue?
    Steps to reproduce...
    Open the cmpsite.xml view of the application
    Drag a Web service component from the Service Adapters within the SOA Componet pane
    Enter the name of the Service
    Paste the WSDL location into the WSDL URL
    Try to select port type
    At this point the error is received
    Thanks to anyone who can assist
    Darren
    Edited by: 784610 on 27-Jul-2010 02:32
    Edited by: 784610 on 27-Jul-2010 02:32

    Hi,
    I am facing the same issue while generating the client java class from IBM RAD 6.0.
    Here is the error I am getting.
    WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.:
         [java] at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
         [java] at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
         [java] at java.lang.Thread.run(Thread.java:571)
    Please guide me to resolve this issue.
    Thanks & Regards,
    Vijay

  • ABAP Generated WSDL Error ::

    hi experts,
    What could be wrong in ABAP Generated WSDL showing error when checked in SOAP tester?
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
       <soap-env:Body>
          <soap-env:Fault>
             <faultcode>soap-env:Client</faultcode>
             <faultstring xml:lang="en">Deserialisation failed</faultstring>
             <detail>
                <n0:SimpleTransformationFault xmlns:n0="http://www.sap.com/transformation-templates">
                   <MainName>/1BCDWB/WSS0071207135524390000</MainName>
                   <ProgName>/1BCDWB/WSS0071207135524390000</ProgName>
                   <Line>16</Line>
                   <Valid>X</Valid>
                   <DeserialisationFault>
    good answers will be rewarded.
    nikhil

    Hi Nikhil Bos,
      As per the information that you given, I have collected some data.
    <soap:Env:Fault>
       fault that might be returned in response to a request for the non-existent stock
    The faultcode element is set to
    SOAP-ENV:Client
    to indicate that the client's request was incorrect. The faultstring element just contains a brief string of unmarked up text that can be used to more fully describe the problem to a human reader.
    Try this Url, where check Ex. 2.19 along with the Fault description.
    http://www.cafeconleche.org/books/xmljava/chapters/ch02s06.html
    Hope this may help you.
    Cheers'
    Vinod V
    *Reward, If found helpful.

  • R12 : System Failed to generate the PDF Document.

    I am trying to create a PO thru auto create but I hit inquire > View Document , I encountered an error: System Failed to generate the PDF Document. Please contact your system administrator. We just updgrade our instance from 11.5.2.10 to r12.1.2. Any thoughts?
    Thanks,
    Leo

    Please see if these docs help.
    System Fails To Generate PDF Document After Clicking "PDF Document" On Supplier Notification When Different Languages Are Used [ID 1078546.1]
    PO Email From Tools>Communicate At Same Time of Approval Corrupts PDF File Transmits As .HTML & System Failed to Generate PDF [ID 1287488.1]
    Thanks,
    Hussein

  • Failed to read wsdl file from url

    Hi all,
    I am struggling with WL 9.2, consuming a WSRP enabled portlet at the following point:
    Having created a proxy portlet, refering to the WSDL of the WSRP producer, I did successfully deploy the portal. When accessing the portal and consuming the portlet the following exception is thrown:
    com.bea.wsrp.faults.TransportException: Failed to read wsdl file from url due to -- java.net.ConnectException: Tried all: '8' addresses, but could not connect over HTTP to server: 'www.w3.org', port: '80';
    The WSDL includes a schema (http://www.w3.org/2001/XMLSchema). The URL is definetely accessible by the server.
    I am open for any kind of support ;) Thanks in advance!
    Kind regards,
    Matthias

    Yes, they are all local schemas. The way ALSB works, even if the import path in the wsdl or parent schema doesn't exist, relative to the current directory, you can specify which schema resolves that reference. My WSDL imports several schemas, all of which import others. When I was done importing all the schemas and resolving references, all the references in WSDLs and XSDs were assigned and valid. However, after all of those imports and reference resolution, it still says the WSDL is invalid, with the following odd error message:
    The WSDL is not semantically valid: Failed to read wsdl file from url due to -- java.net.MalformedURLException: no protocol: /XMLSchema/PaymentServices/Resources/PaymentServices-200802.
    That path listed refers to one of the schemas imported by the WSDL. The reference to that schema in the WSDL was resolved, and it doesn't complain about that reference.

  • Error while Generating WSDL File from SAP WSDLGenerator

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at WebServiceDescription.SelectOperation.ShowUDOsList(String sessionID)
       at WebServiceDescription.SelectOperation..ctor(String sessionID)
       at WebServiceDescription.WsdlServicesGenerator.ShowOptions()
       at WebServiceDescription.Form1.btCreateWsdl_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    WsdlServicesGenerator
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/SAP%20Business%20One%20Web%20Services/WsdlServicesGenerator/WsdlServicesGenerator.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Web.Services
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    axh7tjvl
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    o_2nbqv_
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    I am facing problem While Generating WSDL File from WSDL Geerator which is provided by SAP Business One
    If any body has resolved this. Please help Me...!
    Thanks
    Mritunjay

    Hi.
    We've seen that error too few times.
    We downloaded the sourcecode for the wdsl generator and discovered,
    that in our case, it was because we had no user defined objects.
    Its actually a bug as far as I can see, where the wdsl generator tries
    to enumerate a empty recordset, and crashes.
    Regards
    Jørgen T.

  • Error while generating WSDL

    Hi,
    I am creating a web service which has a method that communicates with the Data access layer (classes that have database connectivity).
    While generating WSDL, I am getting the following error in IBM WSAD:
    "IWAB0132W Boolean property accessor getBoolean in bean Field begins with "get". Boolean getter methods should begin wth "is"."
    This is the error inspite of the fact that there is no boolean data member involved in the code.
    Kindly reply urgently with the possible solutions if anyone of u has come across such an error.
    Thanks in advance
    Karan

    Hi,
    While further investigating the problem, I found out that if i try to return a Vector from my Web Service the error message is thrown, otherwise on returning any other object there is no error.
    I tried to return an array of type Object, but same error was reported. I am using IBM WSAD 5.1
    Please help asap
    Thanks
    Karan

  • Error while generating WSDL: AnnotatedNoClassDefFoundError

    Hi Team,
    I am trying to generate WSDL from SOA IG responsibility getting the below error :
    "Service Provider Access resulted in exception 'oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: ServiceGenerationError: Error in Service Generationoracle/classloader/util/AnnotatedNoClassDefFoundError' when attempting to perform 'GENERATE'. Please view Service Provider logs for more details":
    Prerequisite.
    1. Created  PL SQL package.
    2. Annotated the Package spec as per SOA standard
    3. pasred and created iLDT and uploaded the package spec in IR(Integrated Repository)
    4. Could see the new interface in from SOA Integrated Gateway UI.
    5. provided grants to user
    6. click on generate WSDL button . Getting error.
    Please help.

    Hi Anybody Please help.

  • How to generate wsdl url in Siebel 8.1

    Dear Gurus,
    Please help, how to generate wsdl url from inbound web services in Siebel 8.1
    Regards,
    Eldin

    Hi Raj,
    I've tried, this url did'nt recognize as a web service.
    For example, in Oracle E-Business Suite ( Integration Repository ) there's a button to generate wsdl url. The wsdl url is http://servername/webservice/pls/test?WSDL.
    So is it possible we generate wsdl url like in E-Business Suite ? Or there's something we need to configure so Siebel wsdl url will recognize as web service in E-Business Suite.
    Thanks for your response.

  • Failed to read WSDL - connectException and unknownHostException

    Hi Guys,
    I am starting out with a new installation of SOA Suite 10g on my local windows machine.
    I've tested out a simple BPEL process deployment and all works fine.
    My next step is to test an Invoke of an external webservice: http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
    Initially I had to setup proxy of my Jdev installation to get JDev to look at this WSDL (could not validate the WSDL without this):
    Proxy: 10.176.227.40
    Port: 8080
    Exceptions: |D701341|d701341|localhost
    But when I tried to deploy the BPEL process from jDev, I got an UnknownHostException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.UnknownHostException. : www.w3schools.com: www.w3schools.com".
    Make sure wsdl exists at that URL and is valid.
    After searching a bit on the forums, found out that I might have to fiddle with my HOSTS file: C:\WINNT\system32\drivers\etc\hosts
    I added the following line to my hosts file:
    127.0.0.1 localhost
    216.128.29.26     www.w3schools.com
    This time when I tried to deploy the same process, got a ConnectException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.ConnectException. : Connection timed out: connect".
    Make sure wsdl exists at that URL and is valid.
    I can visit view WSDL from my Internet Explorer with the same proxy config as mentioned above.
    I am not sure how do I get my local SOA Suite to talk to the external web service.
    Could someone point me in the right direction please?
    Thanks,
    Ravi

    I am also facing the similar kind of issue. Please suggest a solution

Maybe you are looking for

  • Problem in BADI - CRM_ORDER_STATUS

    Hi, My requirement goes like this: When the Service Request status is set to "CLOSED", I have to do some validation. So, for this I have create BADI Implementation for CRM_ORDER_STATUS and using the method - BEFORE_CHANGE. with filter E0008ZSVR. (E00

  • Does FCE HD work with other input devices besides cameras?

    Hi, We are trying to do screen grabs and some motion video, in HD (720p) from another source that's not a camera. I'm having trouble finding a bridge or card or anything that will go from HD component RGB to firewire into the Mac. Except for AJA's Ko

  • Photoshop Elements Compatability with Windows 7

    Do you have any downloads to make photoshop elements 4.0 compatible with windows 7?

  • Need help understanding IP Precedence traffic types

    I was reading through the different IP Precedence values and most seemed to be fairly straight forward, but I'd like to make sure I have my facts correct. According to the list below, IP Precedence treats traffic lowest to highest priority with numbe

  • Converting in varchar2 to clob in select query

    Hi All, Help me in displaying vachar2 data and clob data one below the other. Following steps i had taken but failed to achieve any results on ora9.2.0.1.0. create table temp_ajay ename varchar2(20) create table temp_ajayx ename clob select to_clob(e