Https enable webservice stub generation .

Hi,
I have tried many times but did not have any luck .anyone of you ever successful in generating stub from sun tool kit utility for Web service over HTTPS .
I need SSL enable it's project requirement ,but could not able to generate Stub ,getting exception while generating stub and then stub generation utility crashes.
I need help please reply me .

Hi,
I have tried many times but did not have any luck .anyone of you ever successful in generating stub from sun tool kit utility for Web service over HTTPS .
I need SSL enable it's project requirement ,but could not able to generate Stub ,getting exception while generating stub and then stub generation utility crashes.
I need help please reply me .

Similar Messages

  • JAX-WS support https enabled WebServices

    Hi All,
    Can anyone confirm if JAX-WS WebServices support https enabled WebServices.If it supports can a link be given to generate the WebServices and invoke the secure WebServices from soapUI client.
    Thanks and Regards

    Yes, of course it supports https.
    If the web app listener the web service is deployed in is listening on https, then a client can send the request using https, and it will be handled that way.
    To learn more about it, go to [http://edocs.bea.com/wls/docs103/pdf.html] and read the books in the "Programming" section with titles starting with "WebLogic Web Services" (at the end of the Programming section).

  • WebService stub generation

    Hello,
    As many people which try to use the AS3 stub generation from
    WSDL, I have problems because the generated code is not working
    with *complexe* (aka non trivial) WSDLs.
    There are a lot of bugs in jira arround
    this
    theme.
    Is there any plan to have it corrected? I haven't find much
    answer in jira neither in forums, am I missing a support source (a
    dedicated forum, ...)?
    Is anyone able to help me? The answer could be don't try to
    use WS generation stuff.
    Regards,
    Mimil

    Select the Proxy node in the Application Navigator and View the Structure Pane, which will display all the related files for the proxy node..
    Regards,
    Sunil..

  • Webservice Stubs generation problems

    I need to consume a axis webservice. I got the wsdl from the url and i tried to generate stubs in Jdev 10.1.2 but it is giving some wsdl validation errors like schema element not found. In that wsdl they imported some schema(.xsd) files.I dont know how to validate a wsdl file in jdev against schema files. If any one can help me,it would be really great. I was trying since 2 days but no luck.Please help me.
    Thanks

    Maybe you should try JDeveloper 10.1.3 that has a much better WS support.

  • J2ME, WTK, Webservices, Stub-generation & byte[ ]

    Does anybody know if WTK2.2 (with current patches) support webservices metods that return a byte-array (byte [ ])? I have a webservice developed in JBuilder with a method that return a byte-array. When generatig stub-classes for this webservice WTK display this message: error: Found unknown simple type: byte[ ]
    ?

    Thunder!
    I'm struggling with the same problem with the byte[] in my wsdl. Did you have any luck solving this?

  • Issue while generating Webservice Stub

    Hi,
    When i tried to create a Webservice stub using Stub Generator available in Sun Java WTK 2.5 Beta, it created a Stub java file with operatons(methods) missing in it.
    It displayed following warning while creating stub:
    warning: ignoring operation "addBlogInfo": more than one part in input message
    warning: ignoring operation "getLocation": more than one part in input message
    warning: Port "MzoneBlogging" does not contain any usable operations
    The WSDL file which I used as an input is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="urn:Mzone" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:Mzone" xmlns:intf="urn:Mzone" xmlns:tns1="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)-->
    <wsdl:types>
    <schema targetNamespace="urn:Mzone" xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="in0" type="tns1:string"/>
    <element name="in1" type="tns1:string"/>
    <element name="in2" type="xsd:int"/>
    <element name="in3" type="tns1:string"/>
    <element name="addBlogInfoReturn" type="tns1:string"/>
    <element name="in4" type="tns1:string"/>
    <element name="in5" type="tns1:string"/>
    <complexType name="Transaction">
    <sequence>
    <element name="transactionId" nillable="true" type="tns1:string"/>
    </sequence>
    </complexType>
    <complexType name="ArrayOfTransaction">
    <sequence>
    <element maxOccurs="unbounded" minOccurs="0" name="item" type="impl:Transaction"/>
    </sequence>
    </complexType>
    <complexType name="ZoneInfo">
    <sequence>
    <element name="categoryId" type="xsd:int"/>
    <element name="categoryName" nillable="true" type="tns1:string"/>
    <element name="transaction" nillable="true" type="impl:ArrayOfTransaction"/>
    </sequence>
    </complexType>
    <element name="getLocationReturn">
    <complexType>
    <sequence>
    <element maxOccurs="unbounded" minOccurs="0" name="item" type="impl:ZoneInfo"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </wsdl:types>
    <wsdl:message name="getLocationResponse">
    <wsdl:part element="impl:getLocationReturn" name="getLocationReturn"/>
    </wsdl:message>
    <wsdl:message name="getLocationRequest">
    <wsdl:part element="impl:in4" name="in0"/>
    <wsdl:part element="impl:in5" name="in1"/>
    </wsdl:message>
    <wsdl:message name="addBlogInfoResponse">
    <wsdl:part element="impl:addBlogInfoReturn" name="addBlogInfoReturn"/>
    </wsdl:message>
    <wsdl:message name="addBlogInfoRequest">
    <wsdl:part element="impl:in0" name="in0"/>
    <wsdl:part element="impl:in1" name="in1"/>
    <wsdl:part element="impl:in2" name="in2"/>
    <wsdl:part element="impl:in3" name="in3"/>
    </wsdl:message>
    <wsdl:portType name="MzoneBlogging">
    <wsdl:operation name="addBlogInfo" parameterOrder="in0 in1 in2 in3">
    <wsdl:input message="impl:addBlogInfoRequest" name="addBlogInfoRequest"/>
    <wsdl:output message="impl:addBlogInfoResponse" name="addBlogInfoResponse"/>
    </wsdl:operation>
    <wsdl:operation name="getLocation" parameterOrder="in0 in1">
    <wsdl:input message="impl:getLocationRequest" name="getLocationRequest"/>
    <wsdl:output message="impl:getLocationResponse" name="getLocationResponse"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="MzoneBloggingSoapBinding" type="impl:MzoneBlogging">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="addBlogInfo">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="addBlogInfoRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="addBlogInfoResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getLocation">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="getLocationRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="getLocationResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="MzoneBloggingService">
    <wsdl:port binding="impl:MzoneBloggingSoapBinding" name="MzoneBlogging">
    <wsdlsoap:address location="http://localhost:8080/axis/services/MzoneBlogging"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Please let me know how to solve this issue. Its very urgent. Any help greatly appreciated.
    Thanks in advance

    Hi,
    I have written this rule....
    ZAP1 Privilage Entitlement 90 Days
            VARSTLDYPP Last day of pay.per?
              N
                LEAVE      Stop with PC Rule
              Y
                HRS=FR01C  Set
                HRS?90     Decision op.     HRS
                    HRS-90     Subtraction
                    HRS*-1     Multiplication
                    HRS?1      Decision op.     HRS
                        HRS=1      Set
                        ADDDB0094Z Set day balance = 0
                        UPDTQA01   Abs. Quota Accrual
                      <
                        ADDDB0094Z Set day balance = 0
                        UPDTQA01   Abs. Quota Accrual
                  <
                    HRS=LR01C  Set
                    UPDTQA01   Abs. Quota Accrual
                    ADDDB0094Z Set day balance = 0
    Please check and tell is it ok?
    Regards,
    Apoorwa

  • Java.lang.ClassCastException when calling webservice stub  from oracle DB

    Hello everyone,
    Because i need to get familliar with calling java webservices from an oracle database, i followed the following example
    (http://www.oracle.com/technology/products/jdev/howtos/10g/WS_DBCallout/DBCalloutWS_HowTo.htm),
    which included installing the SOAP client stack to the database (in the sys schema), grant the right permissions to the SYS user, developing a simple Helloworld webservice with jdeveloper 10.1.2, generating a Webservice stub and deploying a static method of this stub to the database.
    All of this worked just fine, but when i want to call the webservice from oracle by invoking the deployed function, i get a java.lang.ClassCastException.
    The complete stacktrace lists as follows:
    v_Return = foutje: java.lang.ClassCastExceptionnulljava.lang.ClassCastException
         at org.apache.soap.rpc.RPCMessage.serializeParams(RPCMessage.java:323)
         at org.apache.soap.rpc.RPCMessage.marshall(RPCMessage.java:305)
         at org.apache.soap.Body.marshall(Body.java:148)
         at org.apache.soap.Envelope.marshall(Envelope.java:203)
         at org.apache.soap.Envelope.marshall(Envelope.java:161)
         at oracle.soap.transport.http.OracleSOAPHTTPConnection.send(OracleSOAPHTTPConnection.java:664)
         at org.apache.soap.rpc.Call.invoke(Call.java:261)
         at test.HelloWorldServiceStub.sayHello(HelloWorldServiceStub.java:82)
    I debugged the WebServiceStub and noticed that the call.invoke method crashes. This is weird beacuse when i use System.out.println on the parameter is works just fine. so you would think it is a string.
    Moreover, if i invoke the webservice from the endpoint or even when im debugging the stub locally it all works just fine.
    Can someone plzzzzzz help me with this because i spend the whole day looking for an answer and im getting crazy!!!!!
    Thanx al lot guys,
    Kim
    PS or could the problem be in the database instead of the webservice?????????
    Message was edited by:
    user568880
    Message was edited by:
    Kim Zeevaarders

    I think that it's going wrong because i did not install the right SOAP client stack.
    In the HowTo is specified what JAR files are to be loaded in the database (from %JDEV_HOME), but it states that it has only been tested on a Oracle 9.2 database. I'm using Oracle10g. Maybe that's the reason that im getting this classcast exception...
    Can anybody tell me what the right .JAR files are that have to be loaded into database when working with Oracle 10g?
    Many thx in advance!
    Kim

  • How to access the SSO enabled webservice

    Hi,
    I want to access the Oracle OID SSO enabled webservice from webcenter.
    Webcenter is enabled with OAM SSO as both are secured in a different SSO I couldn't access that web service.
    Can you please provide me the solution for the same.
    Thanks.

    Hai
    Please check this link.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/connectivity&
    Regards

  • Url(https enabled) for b2c application unable to open and refresh multiple

    hi,
    i have worked on b2c application during development http is enabled and everything worked perfectly . After developement for client testing a new url is published with https enabled. with this url when i open the b2c application the page began to refreshing continuosly and site is not opened. The same url worked some times when i opened on other pc. what care we should be taken when switching from http to htpps. did any one have the idea
    Regards,
    Pavan

    Hello Pavan,
    In the general area of the XCM you should check the HTTPS settings that you have configured. Also maybe check an HTTP trace to see what  is happeneing.
    Mark

  • REG:http to webservice

    Hi ,
    Iam new to XI and had developed a http to webservice scenario.when I send the request through http adapter Ian getting the response as an error
    <SAP:Error><SAP:Category>XIAdapterFramework</SAP:Category><SAP:Code>MESSAGE.GENERAL</SAP:Code><SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: Connection refused: connect</SAP:AdditionalText></SAP:Error>
    Could any one help me out.
    Thanks & Regards,
    Gangadhar.S

    Hi Rao,
                One of the solution could be restart your Java Engine in the Transaction "SMICM"...
    And also test the host wether it is reachable or not in the transaction
    SM49----->Ping--
    >Additinal Parameters (give u r host name here and excute)
    Hope this wil solve u r problem
    Reward with points if helpful
    Regards
    Sai Ganesh

  • HTTPS Enabling ??

    Hi all,
    We have a scenario based on HTTPS
    Sender XI System ======> Receiver XI System
                                HTTPS
    using XI adapter at both the ends.
    We need only transport level security (no need of message level).
    What certificates needs to be installed on XI systems ??
    How many certificates are required ??
    Settings to be done in STRUST & VisualAdmin ??
    Please reply only w.r.t Transport level security(HTTPS enabling) and not message-level.
    Thanks in Advance
    Chemmanz

    I answer to your questions below:
    What certificates needs to be installed on XI systems ?? - The public certificates from the receiver XI system
    How many certificates are required ?? Minimum 2  - One the public key certificate and another is the CA/root certificate.
    Settings to be done in STRUST & VisualAdmin ?? You have to create a connection to the external system in SM59 to the url and actiave SSL. Since you are using HTTP adapter, It will be only required to use STRUST. Only certificate needs to be installed in STRUST and activated, not required in Visual admin. Also do restart the ICM after installing the certificate before testing the connection in SM59 [Its normal to get a 405 error]

  • Https With WebServices In NetWeaver

    hi,
    how to use https instead of http with webservices.
    regards
    Guru

    Hello:
    I just wanted to find out if there is a way directly to integrate Web Services with  BW's front end tools i.e. Bex/ Web, without loading the data in InfoCubes/ODS
    The Requirement is to extract and display data on Bex/Web, from a legacy system using Web services.
    Again we are not planning to load data  in the Info cubes or ODS.
    Any input will be highly appreciated.

  • Enable save data locally / enable detail page generation

    Under the behaviors tab on the display templetes I have checked "Enable Popup Menu", checked "Enable Save Data Locally" and checked "Enable Detail Page Generation".  When you right click on the applet, some applets the "Data >" selection is disabled/grayed out for others it is not and works properly.  I can get the data via the showDetailUsingGet() method.  Works on most grid and chart applets but does not on some.  Please help.

    Typically this behavior would be attributed to the kind of recordset behind the applet . If it is dynamic (for example time based queries and you have enabled the auto refresh property of the applet , so with every refresh you have a new data set) then the data detail would be grayed out otherwise it would work as advertised.

  • Squid 2.6 - is https enabled in the pkg available from Sun?

    Trying to figure out if cskSQUID comes with https enabled, or do I have to recompile? README seems to indicate no support for https...

    This is not the correct forum for this type of question, please post to a more appropriate forum.

  • How to enable webservice in hp laserjet mfp m126nw

    sir, i purchased new hp printer that model name hp laserjert mfp m126 nw. usually i was installed printer to my computer.... then i want to connect eprint.  first i connect network cable from my printer to modem...modem is always on type....maually i configure ip address to my printer....i just ping printer ip address to my computer.. it was reply..... web service page also open.. then i click enable but it said ur network connection error pls try later... so my question is how to i enable webservice to my printer....pls ans me sir..... thank you

    Hi @franciskumar , welcome to the HP Forums. I understand you are getting an error trying to enable web services.
    While you are in the EWS settings, look for manual DNS section, and set the primary to 8.8.8.8 and secondary to 8.8.4.4. Apply these settings, restart the newtork and printer and try again.
    Getting Started with ePrint for Color LaserJet Pro MFP M176n Printer and HP LaserJet Pro MFP M125, M...
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for

  • Cannot get iTunes to acknowledge my iPhone on formatted computer -Help!!!!

    Hi. I formatted my computer to give it a bit of a clean out and improve performance and what not. I built the system back up and reinstalled iTunes but it won't now acknowledge my iPhone. I spent 3 hours yesterday trying to fix this with the troubles

  • LBS Sample Error

    Hi, Have someone tried 'Sample Demonstrating Location and Customization Features in Wireless Application' at http://otn.oracle.com/sample_code/tech/java/wireless/9iwireless/location/LocationSample.jar? I've got 'service error' in screen of mobile sim

  • Insuficient Memory errors

    We bought two of the Elipsis7 tablets and generally love them. However, we are getting insufficient memory errors every day which is ridiculous. Without some correction to this defective configuration the tablet is nearly worthless. We install few ap

  • Xls output opening in browser not excel

    Hi, I have created a report through PeopleSoft xml publisher that outputs xls. When I try to preview the report from the rtf template, it correctly displays in excel. However, when I now ran this through the process monitor and open the report in the

  • File info scrambled

    Occasionally I will be listening to a song on my iPod and it will end before the end of the song. I go to iTunes and the Length of the file is shorter than it should be. I double click on the file and it changes the length to what it should be, I upd