Invocation of WSDL  WebService

Hi,
I deployed a webservice with the embedded Sun Server of NetBeans 5.5, and I successfully import it in Aqualogic BPM.
The function that I want to call is :
public String SendMail(String from, String to, String header, String body) throws RemoteException
In Aqualogic BPM I see :
Catalog
-->WebServicesModule
----->WebServicesWSDL
--------->SendMail
--------->SendMailResponse
--------->WebServicesSEIService
--------->WebServicesSEIServiceListener
--------->WebServicesSEI_SendMail
--------->WebServicesSEI_SendMailResponse
My code for invocation is :
WebServicesModule.WebServicesWSDL.SendMail(string1 : "aaa", string2 : "aaa", string3 : "aaa", string4 : "aaa");
When I execute it, I don't have error but nothing happen.
The webservices server monitor doesn't show any query.
What should I do?
Thank you,
petitit

It is very strange but I have developped the same web services with the default options in NetBeans 5.5, Eclipse 3.2 and Visual Studio .Net 2, and the one from Visual Studio work immediately. Although the 2 others don't, but when I test them with some other softs, they work good... :/
Does it come from the framework used by the IDE?
thanks for your answer,
Fran?ois

Similar Messages

  • WSDL Webservice with Windows 7

    Hello,
    When i import a WSDL-Webservice on Win7 i get the following error-message, when i want to start the automatically generated VI:
    Service1.Service1.GetSinglePartStatusHuHandling, (System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht.
    Inner Exception: System.Security.SecurityException: Fehler bei der Anforderung des Berechtigungstyps "System.Net.WebPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".) <append><b>System.Security.SecurityException</b> in mit_Name.lvlib:Get Single Part Status Hu Handling.vi->Unbenannt 1
     When i do exactly the same on a Win-XP computer the automatically generated VIs run fine, also if i copy these under XP generated VIs and Librarys to the Windows 7 PC.
    My question is, how can i solve the .Net System.Reflection.TargetInvocationException in Windows 7?
    Thanks a lot in advance!
    All the best!

    Webcams are fragile and I suspect yours has died. I think the fact that it happened while you were using an external webcam is coincidence.

  • When to use Java Web Service from WSDL, Webservice proxy, Web Service DataControl -- JDeveloper 11.1.1.7

    Hi Experts!
    I am having confusion among these 3 services provided in Oracle ADF. When to use and what service needs to be used?
    Once we generate Webservice WSDL. With the WSDL we have 3  options in Jdeveloper to invoke this service.
    1. Java Web Service From WSDL.
    2. Web Service proxy,
    3. Web Service Data Control.
    Can anyone give us some brief description of these 3 services when do we need to use and which service is to be used for which scenario ?
    Please give me your valuable inputs.
    Thanks & Regards,
    Guravaiah Tata.

    Hi,
    Can you share your WSDL.
    You can send it to me at [email protected]
    -Vishal

  • WSDL Webservices namespace problem

    Hi
    I am trying to test a simple webservice deployed on Composite server. So I imported the wsdl and generated the XMLBeans and Service Control and tested the service control. When I test it I can see the SOAP response has the expected data but the XMLBeans are not populated which when i tried to print returns NULL.
    I have feeling this has to do with namespaces here is the WSDL: Please look at the following WSDL and response that I am getting. I think the response I am getting should have namespace ns2 instead of ns1.
    Please help!
    <wsdl:definitions
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:ns2="http://MXL43805BZ.netnumina.com/services/webservices/Products"
    xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    targetNamespace="http://MXL43805BZ.netnumina.com/services/webservices/Products">
         <wsdl:types>
              <xs:schema targetNamespace="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
                   <xs:complexType name="products">
                        <xs:sequence>
                             <xs:element name="row" minOccurs="0" maxOccurs="unbounded">
                                  <xs:complexType>
                                       <xs:sequence>
                                            <xs:element name="ProductID" type="xs:decimal"/>
                                            <xs:element name="ProductName" type="xs:string"/>
                                            <xs:element name="ProductDescription" type="xs:string"/>
                                            <xs:element name="CategoryID" type="xs:decimal"/>
                                            <xs:element name="SerialNumber" type="xs:string"/>
                                            <xs:element name="UnitPrice" type="xs:decimal"/>
                                            <xs:element name="ReorderLevel" type="xs:decimal"/>
                                            <xs:element name="LeadTime" type="xs:string"/>
                                       </xs:sequence>
                                  </xs:complexType>
                             </xs:element>
                        </xs:sequence>
                   </xs:complexType>
                   <xs:complexType name="ProductDetailsResponse">
                        <xs:sequence>
                             <xs:element name="products" type="ns1:products"/>
                        </xs:sequence>
                   </xs:complexType>
              </xs:schema>
         </wsdl:types>
         <wsdl:message name="GetProductDetailsProductDetailsSoapOut">
              <wsdl:part name="parameters" type="ns2:ProductDetailsResponse"/>
         </wsdl:message>
         <wsdl:message name="GetProductDetailsProductDetailsSoapIn">
         </wsdl:message>
         <wsdl:portType name="GetProductDetailsType">
              <wsdl:operation name="ProductDetails">
                   <wsdl:input message="ns2:GetProductDetailsProductDetailsSoapIn"/>
                   <wsdl:output message="ns2:GetProductDetailsProductDetailsSoapOut"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="GetProductDetailsBinding" type="ns2:GetProductDetailsType">
              <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="ProductDetails">
                   <soap:operation soapAction="ProductDetails" style="rpc"/>
                   <wsdl:input>
                        <soap:body use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <soap:body use="literal"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="ProductDetailsService">
              <wsdl:port name="GetProductDetails" binding="ns2:GetProductDetailsBinding">
                   <soap:address location="http://MXL43805BZ.netnumina.com:9400/services/Products/ProductDetailsService/GetProductDetails.ws"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>
    and here is the response:
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soap-env:Body>
    <ns1:ProductDetailsResponse xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">
    <ns1:ProductDetails xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">
    <ns1:row xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">
    <ns1:ProductID xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">1</ns1:ProductID>
    <ns1:ProductName xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">Maxtific 40GB ATA133 7200</ns1:ProductName>
    <ns1:ProductDescription xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">Maxtific Storage 40 GB</ns1:ProductDescription>
    <ns1:CategoryID xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">1</ns1:CategoryID>
    <ns1:SerialNumber xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">221-887-3458</ns1:SerialNumber>
    <ns1:UnitPrice xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">89.99</ns1:UnitPrice>
    <ns1:ReorderLevel xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">20</ns1:ReorderLevel>
    <ns1:LeadTime xmlns:ns1="http://MXL43805BZ.netnumina.com/services/webservices/Products/ProductDetailsService/GetProductDetails">14 Days</ns1:LeadTime>
    </ns1:row>
    </ns1:ProductDetails>
    </ns1:ProductDetailsResponse>
    </soap-env:Body>
    </soap-env:Envelope>
    -------------------------------------------

    If I have understood your query correctly, you need to change the QName of the eBookProjectRoot to QName("ns1","ebookProjectRoot").
    Hope this helps,
    Balakrishnan V

  • WSDL Webservices connection

    Hello!
    I have walked thru the following live doc tutorial on Web
    services connection
    http://livedocs.adobe.com/flex/201/html/Part3_Tutorials_015_1.html
    in this tutorial we use only one operation -
    getMostPopularPosts
    I wonder how to use multiple operations like currency
    converter using this wsdl
    http://trial.serviceobjects.com/ce/CurrencyExchange.asmx?WSDL
    can you help me please
    thanks
    krs

    in your webservice, have multiple operations calling each
    function within the same webservice.
    <mx:WebService
    id="myService"
    wsdl="
    http://trial.serviceobjects.com/ce/CurrencyExchange.asmx?WSDL
    showBusyCursor="true"
    concurrency="multiple"
    fault="handleFaults(event)">
    <mx:operation name="getMostPopularPosts"
    result="handlePopularResults(event)" resultFormat="object"
    fault="faultEvent(event)" >
    </mx:operation>
    <mx:operation name="ConvertCurrency"
    result="handleCurrencyResults(event)" resultFormat="object"
    fault="faultEvent(event)" >
    <mx:request>
    </mx:request>
    </mx:operation>

  • WSDL webservice error

    Hi all,
    I try to consume a webservice with the following WSDL: http://www.eduroute.nl/soap/distributeur/distributeurAPI.php?wsdl
    All I get is:
    The URL provided did not return a valid WSDL document.
    What is wrong?
    Regards,
    Learco

    Hi Learco,
    i suspect it could be a wrong MIME type returned by the web server.
    If you check the MIME of that URL, it doesn't return 'application/wsdl+xml', but merely 'text/xml'.
    You can see yourself by entering that URL in the following page:
    http://www.yocoya.com/pls/apex/f?p=YOCOYA:MIME:0:
    and pressing on the check button.
    Bye,
    Flavio
    http://oraclequirks.blogspot.com/search/label/Apex

  • WSDL Webservices SalesForce

    Hi
    I am new to Jdeveloper 10g and I am trying to find clear documentation to achieve the following.
    1. Use a wsdl file to create and connect to a WebService using JDeveloper 10g
    The wsdl file is called enterprise.wsdl.xml which looks like this
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    Salesforce.com Enterprise Web Services API Version 21.0
    Generated on 2011-05-23 13:15:25 +0000.
    Copyright 1999-2011 salesforce.com, inc.
    All Rights Reserved
    -->
    <definitions targetNamespace="urn:enterprise.soap.sforce.com" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:enterprise.soap.sforce.com" xmlns:fns="urn:fault.enterprise.soap.sforce.com" xmlns:ens="urn:sobject.enterprise.soap.sforce.com">
    <types>
    <schema elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:sobject.enterprise.soap.sforce.com">
    <import namespace="urn:enterprise.soap.sforce.com"/>
    continues....................................
    This wsdl file has been made available for SalesForce to create a webservice. My set up is I have Jdeveloper10g an OAS and an Oracle DB10g. I simply want to prove I can use this webservice. If anyone has any good documents on how to achieve this I would be most grateful.
    Thanks
    Andy

    Is there a way to consume a web service from Salesforce using just the Oracle 10g database and PLSQL code, as I have no java experience. I did manage to get the wsdl and run it through Jdeveloper to produce a web service proxy class, import those java classes into Oracle forms but then I could not get past that stage. If anyone has done anything with webserivces for SalesForce and could help me I only want to achieve a proof of concept. i.e.
    Steps
    1. Get a wsdl file from SalesForce (I created a 30 day trial account) I already have this.
    2. Consume that web service from an Oracle 10.2 database.
    3. Consume would consist of login (pass in username and password) and gaining some kind of response from Salesforce.
    I am struggling and would really appreciate assistance.
    Thanks

  • Can we use OWSM in OSB for ServiceType Other than WSDL Webservice

    Hi all,
    We want to use OWSM in OSB can we use OWSM in OSB for all the Service Type like WSDL,Messaging service(mfl,text,binary) , SOAP , ANY XML service????
    Is there any restriction in the service Type???
    What bout Adapters like JMS,FTP,File can we use OWSM in the adapters for authentication ??????????
    Thanks
    Phani

    you can attach OWSM policies to the "WSDL" and "Any SOAP" types of proxy and business services in Oracle Service Bus on the Policies page. See section "50.2.2 Attaching Oracle Web Services Manager Policies to Oracle Service Bus Services" at below link -
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15866/owsm.htm#CHDBIJHD
    Regards,
    Anuj

  • Force VC to use updated WSDL WebService - URGENT

    Hello,
    I published a WSDL directly via logical destinations in NWA.
    Doing a Task->Search in VC does not updated the operations.
    After a full reboot, VC finds all new operations, so it seems it updated the WSDL.
    However, some operations (with new interface) are fetched with the old interface,
    so its absolutely unusable in VC...
    I think this is some caching-issue (disabling caching in VC->options has no effect),
    anyone a hint how to flush the VC caches?
    Thanks!
    Kai

    Hi Kai,
    If you have updated a web service which you are using in your model. Try right clicking on the model in your design board and then choosingf Redefine Ports. In the pop up window you should see a button which will allow you to re-import your model. This will basically refresh your model based upon your updated WSDL.
    Good Luck.
    Atul

  • Consuming a WSDL [ Webservice ] in ABAP

    HI All
    My requirement is , i need to consume web service in ABAP, i have tried some links but couldn't able to figure out the actual procedure of consuming the service, so can anyone provide me with all steps in consuming a web service
    Thanks
    Chaitanya.A

    You need to create an Enterprise proxy for your web service. This will be a generated ABAP class that will act as the web service consumer. You can create proxies from se80 itself, Create->Enterprise Proxy->Service Consumer. Then call the class methods normally as you call any ABAP code. The class will be a wrapper for the actual web service.
    Regards,
    Nithya

  • Exception logged but not thrown on invocation of webservice (BEA-000905)

    Using webservices.jar that comes with Weblogic SP3 and ant task clientgen to build the client, I got this warning on console:
    <14/Abr/2005 16H00m BST> <Warning> <Net> <BEA-000905> <Could not open connection with host: localhost and port: 7777.>
    Of course, weblogic is right, localhost:7777 is not listening, but the problem is that the application does not know this, since no exception is thrown. I'm catching for a Throwable and I get nothing. This is severe because I'm changing the state of some records in a DB table if the invocation of the webservice is OK, i.e., if no exception is thrown. But there really is a connection exception...
    Can anyone help?

    Just to clarify: the warning is logged when invoking a webservice and the target machine is down. I'm sniffing the communication through localhost:7777 (so this is the target machine for the invocation), and then it redirects the request to the machine where the webservice is hosted.
    I was expecting to catch an exception like IOException or RemoteException, or even a custom exception that I defined in the throws clause of the webservice method.

  • Latest WSDL breaks Web Services Sample Lead weblead

    I am trying to use the Web Services Sample Lead code I downloaded from Web Services Library Sample Code to be able to create a simple web form that will create a lead via webservices.
    Following the README, I downloaded the latest wsdls and updated the references for the Lead_Service and Campaign_Service.
    The problem I run into is when I update InsertPostedLead.aspx.cs
    I am able to modify the username, password and defaultLeadOwner variables to correspond to the user that you will connect to Siebel CRM OnDemand with out any problems. When I then Build the project I receive several errors such as:
    The type or namespace name 'LeadWS_LeadInsert_Input' could not be found (are you missing a using directive or an assembly reference?)
    I get the same error reference Lead1, CampaignWS and Campaign1.
    When I compare the original WSDL with the latest that gets inported I can see that the latest does not reference LeadWS, Lead1, CampaignWS, Campaign1, etc.
    This is where I get stuck. Simply modifying the references to say Lead instead of Lead1 etc ends up creating other errors so I am assuming this is not the solution.
    Does anyone have this working with the latest WSDL? What do I need to modify to make it work with the latest WSDL?
    I am somewhat new to Oracle CRM On Demand and to webservices so I appreciate any help you can provide pointing me in the right direction!

    This is crazy! Someone must have come across this problem
    before.
    I've simplified my question and used a much simplier method
    from the web service, here goes!
    ::: Here's my code :::
    <cfscript>
    webservice = CreateObject("webservice","dummy?wsdl");
    webservice.doBuildQuoteForItinerary("123456,"en_US","","1113");
    </cfscript>
    ::: Here's the error :::
    Could not perform web service invocation
    "doBuildQuoteForItinerary".
    Here is the fault returned when invoking the web service
    operation:<br> <pre>AxisFault faultCode: {
    http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode: faultString:
    com.raileurope.web.ngserver.InternalErrorException:
    java.lang.NullPointerException faultActor: faultNode: faultDetail:
    http://xml.apache.org/axis/}hostname:dummy
    </pre>
    There must be something wrong with how I'm passing in the
    parameters. Is it the null string??!?!?
    Any help would be great!

  • Error while consuming a webservice in nwds

    Dear Users,
      I m facing an error while consuming a wsdl webservice in webdynpro java error................
    Error Mon Apr 20 16:53:29 IST 2009 Apr 20, 2009 4:53:29 PM          com.sap.ide.webdynpro.ui.service.ServicesUI          [Thread[ModalContext,5,main]] Error: Internal error
       Plugin name: Web Dynpro Model Editor Services
       Plugin ID  : com.sap.ide.webdynpro.service.modeleditor
       Class      : com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelWizard$9
       Method     : doImportWebServiceModel
       Message    : Web Service model import failed
       Exception  : com.sap.ide.ws.proxygenerator.ProxyGeneratorException: Problems while generating the Proxy Definition!
    com.sap.ide.ws.proxygenerator.ProxyGeneratorException: Problems while generating the Proxy Definition!
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateProxy(ProxyGeneratorWrapper.java:416)
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateStandAlone(ProxyGeneratorWrapper.java:283)
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateStandAlone(ProxyGeneratorWrapper.java:279)
         at com.sap.ide.metamodel.importers.webservice.GenerateWS.doGenerate(GenerateWS.java:92)
         at com.sap.ide.metamodel.importers.webservice.WebServiceModelImporter.doImport(WebServiceModelImporter.java:117)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelWizard$9.run(ModelWizard.java:1155)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    -- caused by --
    com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Problem with WSDL file parsing. See nested message.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:182)
         at com.sap.ide.ws.proxygenerator.InternalHelperFunctions.generateInterfaces(InternalHelperFunctions.java:370)
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateProxy(ProxyGeneratorWrapper.java:372)
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateStandAlone(ProxyGeneratorWrapper.java:283)
         at com.sap.ide.ws.proxygenerator.ProxyGeneratorWrapper.generateStandAlone(ProxyGeneratorWrapper.java:279)
         at com.sap.ide.metamodel.importers.webservice.GenerateWS.doGenerate(GenerateWS.java:92)
         at com.sap.ide.metamodel.importers.webservice.WebServiceModelImporter.doImport(WebServiceModelImporter.java:117)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelWizard$9.run(ModelWizard.java:1155)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    Caused by: com.sap.engine.lib.xml.util.NestedException: IO Exception occurred while parsing file:Server redirected too many  times (20) -> java.net.ProtocolException: Server redirected too many  times (20)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1039)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadWSDLDocument(WSDLDOMLoader.java:1126)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:178)
         ... 8 more
    Caused by: java.net.ProtocolException: Server redirected too many  times (20)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:823)
         at java.net.URL.openStream(URL.java:913)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:201)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:263)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
         at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1025)
         ... 10 more
    Please help me in solving his issue.
    regards,
    Sathya

    I have the same issue attempting to connect my application to this WSDL:
    http://erp.esworkplace.sap.com/sap/bc/srt/xip/sap/ecc_projwbselmntcancrc?sap-client=800&wsdl=1.1&mode=sap_wsdl
    I can load the WSDL fine as an XML file. I can also load the WSDL fine if I connect via Firefox or a browser. I can open it fine in SoapUI. I just can't access it from my Java application.
    2009-10-26 18:11:45,943 ERROR [com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext] Loading of definition failed for [http://uid:password-erp.esworkplace.sap.com/sap/bc/srt/xip/sap/ecc_projwbselmntcancrc?sap-client=800&wsdl=1.1&mode=sap_wsdl]; java.net.ProtocolException: Server redirected too many  times (20)
    2009-10-26 18:11:45,943 ERROR [com.eviware.soapui.SoapUI] An error occured [Server redirected too many  times (20)], see error log for details
    2009-10-26 18:11:45,943 ERROR [soapui.errorlog] java.net.ProtocolException: Server redirected too many  times (20)
    java.net.ProtocolException: Server redirected too many  times (20)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.URL.openStream(Unknown Source)
         at com.adobe.idp.dsc.webservice.MyWsdlLoader.load(WebServiceSoapUIInvoker.java:675)
         at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlLoader.loadXmlObject(WsdlLoader.java:106)
         at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.getDefinitionParts(SchemaUtils.java:469)
         at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.getDefinitionParts(SchemaUtils.java:460)
         at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlLoader.cacheWsdl(WsdlLoader.java:176)
         at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext$Loader.construct(WsdlContext.java:207)
         at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:45)
         at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:111)
         at java.lang.Thread.run(Unknown Source)
    2009-10-26 18:11:45,943 ERROR [STDERR] java.net.ProtocolException: Server redirected too many  times (20)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at java.net.URL.openStream(Unknown Source)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.adobe.idp.dsc.webservice.MyWsdlLoader.load(WebServiceSoapUIInvoker.java:675)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlLoader.loadXmlObject(WsdlLoader.java:106)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.getDefinitionParts(SchemaUtils.java:469)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.getDefinitionParts(SchemaUtils.java:460)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlLoader.cacheWsdl(WsdlLoader.java:176)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext$Loader.construct(WsdlContext.java:207)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:45)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:111)
    2009-10-26 18:11:45,943 ERROR [STDERR]      at java.lang.Thread.run(Unknown Source)
    Any ideas?
    Edited by: tburke on Oct 27, 2009 2:26 AM

  • Getting error while consuming google webservice in jspDynpage

    Hi All,
    I am consuming google webservices in my JspDyn page
    i am getting following error
    An exception occurred while processing a request for :
    iView : GoogleSer.google
    Component Name : GoogleSer.google
    Could not find portal application <b>com.company.global.enterprise.portal.wsdl.webservices.service.</b>
    Please help me to resolve this issue
    code ::
    MyGoogle googleService =
    (MyGoogle) PortalRuntime.getRuntimeResources().getService("com.company.global.enterprise.portal.wsdl.webservices.service.MyGoogle");
    GoogleSearchResult result = googleService.doGoogleSearch("google", "SAP", 0, 10, false, "", false, "", "", "");
    Thanks & Regards
    Rudra

    Hi,
    I am still having the same problem, however the scenario in which I am getting varies.
    I am getting this exception:
    "com.sap.engine.services.webservices.jaxm.soap.accessor.NestedSOAPException: IOError while working with the message."
    Some users when trying to login into the portal are getting blank screen and for some the portal launcher page is loading fine and could go to the Home Page.
    When I view the logs I am seeing the Nested Soap Exception.
    Any Ideas??? Starting the J2EE engine also did'nt help.
    Thanks in advance.
    Madhavi

  • Getting error in consuming google webservices from JspDynPage

    Hi All,
    Getting following error while consuming google webservices from JspDynPage
    An exception occurred while processing a request for :
    iView : GoogleSer.google
    Component Name : GoogleSer.google
    Could not find portal application com.company.global.enterprise.portal.wsdl.webservices.service.
    Code :
    MyGoogle googleService =
    (MyGoogle) PortalRuntime.getRuntimeResources().getService("com.company.global.enterprise.portal.wsdl.webservices.service.MyGoogle");
    GoogleSearchResult result = googleService.doGoogleSearch("google", "SAP", 0, 10, false, "", false, "", "", "");
    ResultElement[] results = result.getResultElements();          
    if(results != null) {
    response.write("<br> Search Result Size " +results.length );
    for (int i = 0; i < results.length; i++) {
    response.write((i + 1) + ": " + results);
    Thanks
    Rudra

    Hi,
    I am still having the same problem, however the scenario in which I am getting varies.
    I am getting this exception:
    "com.sap.engine.services.webservices.jaxm.soap.accessor.NestedSOAPException: IOError while working with the message."
    Some users when trying to login into the portal are getting blank screen and for some the portal launcher page is loading fine and could go to the Home Page.
    When I view the logs I am seeing the Nested Soap Exception.
    Any Ideas??? Starting the J2EE engine also did'nt help.
    Thanks in advance.
    Madhavi

Maybe you are looking for

  • Receiver Determination in BPM - Correct me

    Hi everyone, I came accross some document saying that <b>every send/ receive step in BPM, there should be one receiver determination.</b> Can anyone explain this to me. thanks, -Naveen.

  • Multiple proces trying to use WiFi kills WiFi.

    I'v had the weirdest issue for the longest time.. If 2 or more process try to use the WiFi at the same time, the WiFi performance just dies.. example: Start transfer of 1 file to NAS.. Goes at 2.5MB/s Start a 2nd transfer to NAS.. Performance drops t

  • Some substring doubts

    Hi all!! I am almost finishing my app, but i have a line like below: [2003/12/09 16:43:48.165] [info] br.com.organox.web.aggregator.servlet.struts.action.AddContentAction: User 'INEXIST' with session 'ax1zjd8yEeHh' added content '769' with uri 'http:

  • Have subscription; how to stop credit top-up?

    When i first started with skype I paid for a pay as you go. Later I got a suscription whcih works alot better for me. Now I want to stop the credit account and I don't know how to. Currently I a have a new subscrition but is is blocked due to the fac

  • Cisco SG300 VLAN rate-limit

    I have a Cisco SG300 small business switch and 541 APs. There are 2 VLANs in our network. One must be limited by bandwidth. Does anyone have an idea for configure vlan rate-limiting on SG300? And please describe CIR & CBS for me. Thanks.