Is it possible for wsimport to ignore “import” tags in wsdl that are http-linked to some XSD files and insted use XSD files provided next to the wsdl file?. I know svcutil is able to do so.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can use an XML catalog to help tell wsimport how/where to resolve schema elements.
xmlcatalog ant docs
defines the xmlcatalog task for ant. you can reference the catalog via the “catalog” attribute of the wsimport ant task, or via the -catalog command line option of wsimport.
jaxws xml catalog docs
I hope this helps.