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

request for a simple web services code

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello friends,

i am new to web services. want to learn it. please forward me a code for a simple java application with web services.

please reply.

thank you.
 
Ranch Hand
Posts: 327
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Without wishing to be rude, have you tried searching? There are plenty of examples on the web. I suggest you go find some and come back when there is something you don't understand.

The FAQ has many links that are a good place to start.
 
amit daundkar
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you Jason..
 
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!
NetBeans.org has a lot of nice tutorials. Web service tutorials are here: http://netbeans.org/kb/trails/web.html
Best wishes!
 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This may help you.
 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Amit,
There is lot of confusion over the webservices.
what are the webservices?
why we go for this extreme technology.

First of all let me suggest you that
webservices are implemented on SOA technology
so i want you to take a look at SOA
and then go for webservices otherwise you will go mad.
if you know XML that would be great advantage


bye
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

There is lot of confusion over the webservices.
what are the webservices?
why we go for this extreme technology.

First of all let me suggest you that
webservices are implemented on SOA technology
so i want you to take a look at SOA
and then go for webservices otherwise you will go mad.
if you know XML that would be great advantage


With all due respect, this is an odd post. While I could go to great length discussing each part of it, Ill just briefly mention some of its stranger assertions. Hopefully, amit daundkar won't be too confused by it.
  • There's nothing extreme about web services. It's a mainstream technology.
  • Web services are not "implemented using SOA technology", it's just the other way round - SOA is an architectural concept, and web services are one way to implement it.
  • Thankfully, the hype around SOA has largely subsided. It is decidedly not necessary to know much about SOA in order to start developing web services (although it may be helpful, but it could confuse more than help).
  • While XML is used in many web services, it is often hidden underneath an API layer (like JAX-WS), so the developer doesn't generally have to be aware of it. The SOAP protocol makes extensive use of XML, but these days REST is also widely used, and it doesn't necessarily use XML at all; its response may consist of JSON, for example.
  • I recommend to start by getting a firm grip of the SOAP and REST styles of web services; the WebServicesFaq has some very useful links about that.
  •  
    With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
    reply
      Bookmark Topic Watch Topic
    • New Topic