• 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:

wscompile tool

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

I am a newbie of java web services..
What all the requirements to run java web services.
I am having j2sdk1.4 and jakarta-tomcat-server ..
where i can get the wscompile tool to install..
please help me...
Rajeswari.
 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

This link should give you a head start to develop and deploy a webservice in apache-tomcat server using Axis.

http://ws.apache.org/axis/java/user-guide.html

Thanks,
Chandu
 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Chandra,

The link you have provided is for apache axis.

Rajeswari you can find information about wscompile on this page:

http://java.sun.com/webservices/docs/1.6/jaxrpc/jaxrpc-tools.html

To download the Java JAX-RPC tools, including wscompile, checkout http://java.sun.com/xml/downloads/jaxrpc.html.

-Manhar.
 
Rajeswari Gopal
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Thanks for your reply..
Whether we can create a web service witout using this wscompile tool?
Any examples?
Thanks,
Rajeswari.
 
Manhar Puri
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Rajeswari,

Yes you can create web services without any tool.

I do not have examples but what you will have to do is create ur own XML using some kind of XML parser.

You will then have to send this XML over HTTP to ur service and listner at the service's end will listen for this XML request, ur service will have to parse this XML document (or maybe a helper class), do the processing, create an XML response and send it back to calling client.

At client end obtain the XML and then parse the response XML.

Instead of re-inventing the wheel I would rather use some tool to do it for me, unless if you are doing something very special.

-Manhar.
 
It runs on an internal combustion engine. This ad does not:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic