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