IntelliJ Java IDE
The moose likes Web Services and the fly likes How to speed things up when reading WSDL? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "How to speed things up when reading WSDL?" Watch "How to speed things up when reading WSDL?" New topic
Author

How to speed things up when reading WSDL?

Ong Vua
Ranch Hand

Joined: Jan 24, 2008
Posts: 45
I'm creating a Service object using JAX-WS as below

URL wsdlUrl = MyCustomClass.class.getResource("./Opportunity.wsdl");
Opportunity_Service service = new Opportunity_Service(wsdlUrl, new QName("urn:crmondemand/ws/ecbs/opportunity/", "Opportunity"));

It took about 1 minute to create this Service object because the wsdl's size is about 6MB.

Is this normal or is there a way to speed things up?

Thanks
 
 
subject: How to speed things up when reading WSDL?
 
Threads others viewed
CXF web service client migration from tomcat to weblogic
Using dispatch to call a webservice with more than one operation
STUB, Dynamic Proxy, DII
What are the best web server for learning?
Invoke .NET Web Service using Java/Axis passing SoapHeader
MyEclipse, The Clear Choice