• 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
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

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.
 
I love a good mentalist. And so does this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic