Wsdl generation with Remote2WSDL

I'm trying to generate the wsdl file for an Ejb that I need to publish as a Web
Service.
The file generated using:
java -cp <classpath> Remote2WSDL <ejb> <root-contex>/<wsname>
just contains the same that I writte on <ejb> parameter.
What am I doing wrong?
Thanks

I'm not familiar with Remote2WSDL. You'd get a better response in our
webservices newsgroup.
Our 7.0 examples demonstrate how to expose an EJB as a webservice.
-- Rob
Gabriela wrote:
I'm trying to generate the wsdl file for an Ejb that I need to publish as a Web
Service.
The file generated using:
java -cp <classpath> Remote2WSDL <ejb> <root-contex>/<wsname>
just contains the same that I writte on <ejb> parameter.
What am I doing wrong?
Thanks

Similar Messages

  • Pro: SOAP to RFC, WSDL generation

    Hi Frnd,
    I  am getting problem in the WSDL Generation from the ID,
    When i generated it first time i was getting the following in the    Soap:address
    <soap:address location="http://vessxip01:8001/XISOAPAdapter/MessageServlet?channel=:BS_PWS:CC_PWS_WeighVoidData_SOAPsend&version=3.0;Sender.Service=BS_PWS;Interface=+urn%3Aveoliaes%3APWSTransaction%3ASAPR3toPWS%5EMIout_WeighVoidData" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" />
    But When i am generation it again i am getting the following  for the same tag,   SOAP:Address
    <soap:address location="http://vessxip01:8001/XISOAPAdapter/MessageServlet?channel:BS_PWS:CC_PWS_WeighVoidData_SOAPsend&version=3.0;Sender.Service=BS_PWS;Interface=urn%3Aveoliaes%3APWSTransaction%3ASAPR3toPWS%5EMIout_WeighVoidData" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" />
    When we look concentrate i found " + " sign is missing in the next generation.
    Please tell me what is the meaning of "+" sign, and why it is not comming in the regeneration of the WSDL.
    Where as first one is working fine and the second one is not working.
    Thanks,
    Raj.

    http://vessxip01:8001/XISOAPAdapter/MessageServlet?channel:BS_PWS:CC_PWS_WeighVoidData_SOAPsend&version=3.0;Sender.Service=BS_PWS;Interface=urn%3Aveoliaes%3APWSTransaction%3ASAPR3toPWS%5EMIout_WeighVoidData
    The WSDL format that you are using is configured to hit the Integration Engine....hence the port number that you use should be that of the Integration Engine......
    Now from where will i get this information:
    1) Open SAP GUI --- tcode /nSXMB_ADM ---> Integration Engine Configuration ..... you will see the port here.... so if it is 8001 you need to use 8001 in the above URL.....
    2) RWB --> Component Monitoring --> Integration Engine --> Test Message .....you can again see the port over here....
    If i am not wrong 5XX00 is supposed to be used (mandatory) from PI7.1 onwards.....
    Please tell me what is the meaning of "+" sign, and why it is not comming in the regeneration of the WSDL.
    absolutely no idea :(.........but never saw a wsdl format with "+" sign in it.....
    please correct me for any incorrect information given by me
    Regards,
    Abhishek.

  • WSDL problems with webservices deployment

    First, the problem: I need either to 1) be able to include a WSDL file as part of my ear-file deployment and have that WSDL be presented to consumers if they seek to browse the wsdl, or 2) get the dynamic WSDL generation to show public, https urls for schemaLocation and soap:address locations in the dynamically-generated WSDL.
    Configuration: Apache 2.2.3 proxy server receiving https requests and passing them back to a WebLogic 10.3.5 instance running on the internal network. The WebLogic instance has several applications running on it, and these applications make SOAP web service invocations between each other. Use case: public consumer makes https web service invocation to a publically-available url to invoke Service A, which in turn invokes a web service, Service B, running on the same WebLogic instance. The invocation from Service A to Service B is a localhost invocation since it's behind the firewall.
    What I'm seeing: if I browse the WSDL for Service A from the public area, the wsdl displays the server name and port in the schemaLocation and soap:address urls in the wsdl file. I, of course, don't want this, as I want the wsdl to display the publicly-browseable values (e.g. "https://www.seenbypublic.com:443/ws/UtilityService..."). So, I configure the server via the WebLogic admin console and specify a "Frontend Host" of www.seenbypublic.com, and a Frontend HTTPS Port of 443. I set the "WebLogic Plugin Enabled" flag via domain > Web Applications. I configure Apache (which already has the WL module installed) to use the following parameter "RequestHeader set WL-Proxy-SSL true" and restart everything. The server location changes in the dynamically-generated wsdl, but the server port does not (i.e. the urls in the wsdl are now http://www.seenbypublic.com:80/ws/UtilityService... (note the lack of SSL designation). Another problem is that now my same-server web service invocations that were taking placing using "localhost" are now using "www.seenbypublic.com" so instead of a local-box invocation, the request is coming out into the public domain and then back to the server, which is highly inefficient.
    So.... ideally, I'd be able to leave all the WebLogic "Frontend" settings alone, not mess with the WL plugin in Apache, and simply provide a wsdl url to my application to display when generating it's wsdls (or just let me provide the entire wsdl file as a resource). Is there any way to do that?
    Assuming no, what do I need to do to get the proper reflection of SSL designation in a dynamically-generated wsdl file? And - how can I tell WL to leave the "localhost" invocations alone?
    How's that for a Friday-afternoon problem?

    Hello,
    thank you for your answer. It was my mistake, I discribe the problem very bad.
    When i call the function get_frob(). Netbeans goes in the function and run through the end but nothing happened
    onMouseClicked: function( e: MouseEvent ):Void {
                         test=Authentikation_Frob.get_frob();and in my if clausel there will be a wrong output! After the output my programm go back to the function get_frob() and then make the request and go back to the if clausel. Now everything ist correct. But why does my programm need 2 runs ????thats not correct!!
    Thank you!!
    if (test==true)
                             var Authentikation_Link:HTTP_Authentication_Link=new HTTP_Authentication_Link();
                            link=Authentikation_Link.get_link();
                            var uri = new java.net.URI("{link}");
                             var desktopClazz = java.lang.Class.forName("java.awt.Desktop");
                             var getDesktopMethod = desktopClazz.getMethod("getDesktop");
                             var desktop = getDesktopMethod.invoke(null);
                             var browseMethod = desktopClazz.getMethod("browse", [uri.getClass()] as java.lang.Class[]);
                              browseMethod.invoke(desktop, uri);
                         else
                             fehler_ausgabe.visible=true;
                             fehler_ausgabe.content="Fehler {Authentikation_Frob.frob_fehler} {Authentikation_Frob.frob_hilfe}";
                         }Edited by: Esco24 on Aug 10, 2009 1:02 AM

  • What is the normal amount of GB of Other Space for a new 32 GB Ipod touch 5 Generation with iOS 6.1.3? Also, will iOS 7 slow down/drain the battery of my device?

    My Other storage space was at 2.84 GB after i loaded all my music/apps onto a recently purchased 32 GB Ipod touch 5 Generation with iOS 6.1.3.  Resetting the settings and removing the music and apps did not help reduce the Other space.  I restored to a backup and got my Other storage space down to almost 400 MB.  When I started syncing music it grew 500-ish MB.  Each time I sync, the Other grows a bit more.  This is really irritating.
    The official listed available GB on my 32 GB is 28.22 GB (not including Other), so now I am irritated knowing that this Other is taking up my space when I didn't even have 32 GB of free space to begin with. So 28.22 - 2.84GB = 25.38 GB.
    I want to restore to a new device to see if that helps, but do not want to upgrade to i0S7.  Is there any way to do this?
    If I upgrade to i0S 7 I am worried it might slow my ipod or drain the battery faster.  Will it do that?  The ipod is expensive and I dont want it to go downhill and obsolete on me because it can't handle a better operating system. 

    Less than 1 1/5 GB is normal. It does grow with time.
    What is the Other on my iPhone and How to Remove It

  • HT4962 I have an Ipod Touch 2nd generation with version 4.2.1 IOS and it no longer seems to be recognized as a device when I plug into my computer. I want to update my sync settings but can't do this without being able to select the device. Any suggestion

    I have an Ipod touch 2nd generation with version 4.2.1 IOs and it is no longer recognized as a device when I plug into my computer. This means I can not change synch settings - any ideas on what I need to do ?

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • HT4623 My iPod Touch is te 4th generation with iOS 4 only... The desktop that it used to connect with was broken and I couldn't update my iPod touch as all content is linked to the iTunes on that broken PC. What should I do?I won't erase all my music reco

    My iPod Touch is te 4th generation with iOS 4 only... The desktop that it used to connect with was broken and I couldn't update my iPod touch as all content is linked to the iTunes on that broken PC. What should I do?I don't want to erase all my music recording. (couldn't back up easily...) my dairy, my financial record made on apps...
    If I got a new Mac book pro soon, would it helps backuping everything?

    awesome121, he does not an an iCloud account. You need iOS 5 or later for iCloud and the poster said he has iOS 4.
    awesome121 wrote:
    DO you have a icloud account?

  • I have an ipod nano 2nd generation with a non responsive click wheel

    I have an ipod nano 2nd generation with a non responsive click wheel. I have fully charged it tried resetting it and on two different computers with the latest iTunes I have restored it with the latest firmware then moved it to hold and off hold held in the menue button and select button for 10 seconds but all I get is a screen where I select the language but cant get any response from the scroll wheel.
    The hold button is working (I see the lock icon go on and off) I have done the restore procedure and then reset many times but no good I am wondering if I should open it up and disconnect the battery for 30 seconds.
    I would appreciate any advice thanks in advance. (This is my Daughters ipod mine is an 8 gig one.)

    You need a newer model iPod, a 4G or 5G. The 2G can only go to iOS 4.2.1

  • Have old ipod nano (2nd generation) with music from an old itunes account ... I have new itunes account now...how do I get my old purchased music into my new itunes library?

    I have an old ipod nano (2nd generation) with music on it from an old itunes account from a few years ago.  I have a new itunes account now.  How do I get the music (that I purchased) transferred into my new itunes library?

    Hi sid1010,
    Welcome to the Support Communities!
    You can redownload music that you have purchased directly to your iTunes Library.  Here's how:
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT2519
    Cheers,
    - Judy

  • Can I synch an ipod nano 6th generation with Mac OSX 10.4.11 with Itunes 8.02?

    Can I synch an ipod nano 6th generation with Mac OSX 10.4.11 with Itunes 8.02?

    No.  You need at least Mac OS X 10.5.8 or later as well as iTunes version 10.1 or later.  Sorry.
    B-rock

  • NI6554 Dinamic generation with external sample clock

    I am using the PXI-NI6554 to generate a digital signal, as
    clock I want to use an external source that I drive in the board via de CLK IN SMB
    connector. Always I got the same error (cod: 1074115898) from the “Write” VI
    block, the reason is that there is not clock signal or is not detected.
    I tried the example “Dynamic Generation with External Sample
    CLK” and I have the same error.
    The clock signal is in 3,3V logic. The same clock signal
    works to acquire via the STROBE pin. I have scoped the CLK and the shape is
    quite ok. I have tried the two possible impedances for the CLK input also.
    I found one respond (http://digital.ni.com/public.nsf/allkb/884C5A76BA1A474E8625717A0068AA09)
    about strange behavior of CLK IN but the proposed solution does not help in my
    situation.
    Does somebody have an idea about the problem?
    Thanks,
    Abe

    Hi Uli,
    I posted to your thread here.
    Best Regards,
    John Passiak

  • PI does not combine .wsdl file with .xsd files.

    Hi,
    I imported .wsdl file with necessary .xsd files in PI system (7.1).
    PI does not find fields in .wsdl already necessary .xsd files imported with .wsdl file.
    Is there anyone to help me to solve problem with test it in PI system.
    I send .wsdl file and necessary .xsd files as attachment his mail address.
    Thanks.

    Did you try opening the wsdl file in some XML tool...if there is problem in referring the XSD then it will be visible in the tool itself.....even I am working on PI7.1 and some of the WSDLs are referring XSDs...and i had no problem in using them.....dont know what is failing in your case
    Do you want me to send .wsdl and .xsd files zipped into your mail box
    instead you can post your wsdl file and the corresponding XSD here in SDN....even a dummy structure would do....we are not allowed to do personal email comunication
    Regards,
    Abhishek.

  • I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    Thanks for all (Ocean20 & Courcoul) who replied. 
    Reset the device did not help me but it does triggers me to attempt to resend the PDF file attachment on email--and it works the 2nd time.  My problem is now solved.
    The Adobe Reader is very helpful--it allows me to scroll through the document easily, unlike iBooks, where I cannot scroll straight up or down.

  • HT1515 How can I use Airport Express (1st generation) with OS X Mavricks?

    How can I use Airport Express (1st Generation) with OS X Mavericks?

    1st Generation AirPort Express will work fine with Mavericks.
    Are you sure that you have a 1st Gen Express?
    Check the model number on the side of the Express. 1st Gen is A1264.
    If you see A1084 or A1088, these are much older versions of the Express that were sold long before Apple began to use the Generation naming with "n" wireless devices in 2007.
    Mavericks will not support the A1084 or A1088. Use another Mac running Leopard, Snow Leopard, or a PC if you need to administer the older Express.

  • Can you connect and ipod nano 4/5th generation with and ipad to download music/update software

    Can you connect and ipod nano 4/5th generation with and ipad to download music/update software.
    If so how do you go about it and what equioment are you required to purchase.

    No you cannot.

  • Can you connect the Lightning to 30-pin adapter and Lightning to 30-pin Adapter (0.2 m) to iPod nano (7th generation) with third-party accessories?

    Can you connect the Lightning to 30-pin adapter and Lightning to 30-pin Adapter (0.2 m) to iPod nano (7th generation) with third-party accessories?

    Lightning to 30-pin adapter and Lightning to 30-pin adapter (0.2m) do not work if connected together by other third-party accessories.

Maybe you are looking for

  • How can I stop my iPhone from starting to play music in my pocket?

    Almost everytime I get my phone out of my pocket it's playing music! How do I stop it doing this it's always locked before it goes into my pocket.

  • I restored my macbook pro to factory settings now i am stuck !! Help please!!

    i restored my MacBook Pro, which is OS X mountain lion 10.8.4, when i am downloading the os x again it stops in between, because my internet speed is pretty slow and i am living at a place where there is problem of electricity so internet disconnects

  • No extended memory for the internal table

    Hi all,  I created one filed in the selection screen with f4 help, this is the code i writtenAT SELECTION-SCREEN ON VALUE-REQUEST FOR PA_BKTXT. SELECT  BKTXT  INTO TABLE T_BKTXT from mkpf. CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'   EXPORTING   DD

  • Discontinue itunes allowance

    The knowledgebase article at: http://support.apple.com/kb/ht2105 - Itunes Store Allowance does not display the "Manage Allowances" option as show in the article when I follow the instructions in the article. Anybody know how to disable or change allo

  • Low memory caused by soundbooth

    Hi, I have been editing videos and audio on soundbooth.  I have had to save files and re-open files in another program (as I can't break audio up within soundbooth). The trouble is that the memory on my pc is being eaten up. Does soundbooth create te