• 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
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Packing the webservice in axis

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear All,

Currently i am using Oracle application server to deploy and execute webservices.

To generate the ear file, we are using a Oracle server specific jar.

The packWs.bat is written as below,

cls
@ echo off
echo ***************** Trying to Pack CMA webservices into ear *****************

del cmaWebServices.ear
echo " "
@ echo on

java -jar C:\Vijay\Software\oracle\product\10.1.0\db_1\oc4j\webservices\lib\WebServicesAssembler.jar -config config_sun.xml


As it is visible, we are using the WebServicesAssembler.jar which is oracle specific.

Now, i want to pack the webservice without using the WebServicesAssembler.jar so that the resulting ear will be generic and I will be able to deploy it on any web server e.g. Weblogic.

We are using the Axis to generate the webservices.
Kindly suggest me any idea of packing a webservice without considering the oracle specific jar.

Thanks in advance.

Regards,
Vijay Bhore




reply
    Bookmark Topic Watch Topic
  • New Topic