• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Create java proxy from WSDL

 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A while back I downloaded a wsdl file for custom object 5 of Oracle CRM On Demand product and generated java proxy from it. I got the below artifacts along with a folder called crmondemand that contains 2 folders ws and xml.


CustomObject5_Service_saved_wsdl.wsdl
CustomObject5_Service_internaldd.xml
CustomObject5_Service_java_wsdl_mapping.xml
CustomObject5_PortType.java
CustomObject5_PortType_Stub.java
CustomObject5_Service.java
CustomObject5_Service_Impl.java


Now I need to generate the same proxy for other custom objects. I don't remember what tool I used last time to generate java proxy for web services. I tried the command

wsimport -keep -d c:\temp\output -s c:\temp\source c:\temp\Account.wsdl

But I only got a folder called crmondemand with the two sub-folders xml and ws. But I did not get the above artifacts.

Do you know how I can get the above artifacts?

Thanks
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can try Apache Axis WSDL2Java tool
 
reply
    Bookmark Topic Watch Topic
  • New Topic