Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Web Services
Search Coderanch
Advance search
Google search
Register / Login
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
Ron McLeod
Liutauras Vilda
Paul Clapham
paul wheaton
Sheriffs:
Tim Cooke
Devaka Cooray
Rob Spoor
Saloon Keepers:
Stephan van Hulst
Tim Holloway
Tim Moores
Carey Brown
Mikalai Zaikin
Bartenders:
Forum:
Web Services
wsdl2java wsdl location
Mat Anthony
Ranch Hand
Posts: 265
posted 11 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi,
I currently have a webservice that uses a local wsdl to build it's generated classes (i.e. wsdl2java using axis2).
<arg value="-uri"/> <arg file="${web_services_dir}/${wsdlName}"/>
What parameter do I need to use if I want to point to a live wsdl
say:-
http://myserver:8888/SportService?wsdl
Since <arg file looks for a directory
Regards
Mat>
Bosun Bello
Ranch Hand
Posts: 1514
posted 11 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
You can specify the path as long as you do not have spaces in your path, or use a property file as below.
<property name="wsdl.file" location="C:\path\my.wsdl"/>
<arg value="-uri" />
<arg file="${wsdl.file}"/>
Bosun (SCJP, SCWCD).
So much trouble in the world -- Bob Marley
If tomatoes are a fruit, then ketchup must be a jam. Taste this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Incorrectly generated package names using Axis2 wsdl2java
wsdl2java server side skeleton
How to generate WSDL file for any JAX-WS?
wscompile - how to generate wsdl from service endpoint
compile time Error in java file generated by WSDL2Java
More...