• 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
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

XML Catalog with Axis2

 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All

I have a wsdl which has some reference to external locations (URLs). Whenever I run the wsdl2java utility , it gives me error like - an error occured trying to resolve schema referenced at ...... - reffering to the external url. This is because the enviorenment on which I am working doesnt have network connectivity. I checked it on another enviorenment where it has net connection, and it worked fine as it was able to connect to the external location.

Now to resolve this I want to use XML Catalog. But I am not aware of how to use it with ant build (build.xml). The wsdl2java utlity of Axis2 doesnot comes with any argument which allows us to specify any XML Catalog files for resolving external references of the wsdl.

Request you all to suggest me a suitable way to ressolve this. Also note that I cant change my development method, as its mandatory for me to use ant build scripts(build.xml) to do all such things. So I need to specify the XML Catalog somewhere in the build.xml target where wsdl2java is specified.

Please help.

Thanks.
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
The XML catalog is an XML file which you, depending on the type of packaging, store in the following locations:
In a WAR: In WEB-INF/jax-ws-catalog.xml.
In an EJB-JAR: In META-INF/jax-ws-catalog.xml.
Thus, as far as I have understood, there is nothing you need to do in your build-file.

I don't know how to use an XML catalog with Axis. In fact, I am not even sure Axis does support XML catalogs.
Best wishes!
 
It's just like a fortune cookie, but instead of a cookie, it's pie. And we'll call it ... tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic