• 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

Need Help On Java Web Services

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

Myself Joseph .

I have an requirement to build a Web services in JAVA  , which basically validates the data from the database and return the Response file .

End User will input the details in a website . and the same information ( ex:  NAME , MOBILE , EMAIL etc) will be received in XML /Text format.  the web service do validate these values in the data base and response back
to Y or N  in XML format (if the data is present  and correct ) .


Please help me on this to create such web sevices
 
Saloon Keeper
Posts: 7585
176
  • Likes 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you have so far, and where are you stuck making progress? The standard Java APIs for WS are JAX-RS (for REST WS) and JAX-WS (for SOAP WS), so you may want to read up on those. Unless you are specifically required to use SOAP, I suggest to look into REST first.
 
Joseph David
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Moores wrote:What do you have so far, and where are you stuck making progress? The standard Java APIs for WS are JAX-RS (for REST WS) and JAX-WS (for SOAP WS), so you may want to read up on those. Unless you are specifically required to use SOAP, I suggest to look into REST first.



Thanks for the quick response ... I have read both . As the requirement is urgent , IF can help me provide any sample code /tutorial (point on ) on this , that would be really helpful to me.
 
Tim Moores
Saloon Keeper
Posts: 7585
176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Help with what, specifically? You haven't even said whether you decided on SOAP or REST. As for tutorials, searching for "JAX-RS tutorial/example/sample code" or some such phrase should find several.
 
Joseph David
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Moores wrote:Help with what, specifically? You haven't even said whether you decided on SOAP or REST. As for tutorials, searching for "JAX-RS tutorial/example/sample code" or some such phrase should find several.



Hi TIM ,

As It should be encrypted form , and secured Preferred to be Soap .  I have searched lot over google , but didn't find ,what exactly i am looking for . If you are having any sample code / help tutorials  please provide  me .
 
Marshal
Posts: 4501
572
VSCode Eclipse IDE TypeScript Redhat MicroProfile Quarkus Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Joseph David wrote:I have searched lot over google , but didn't find ,what exactly i am looking for . If you are having any sample code / help tutorials  please provide  me .


I'm not sure how anyone can provide you exactly what you are looking for, when you haven't said exactly what you are looking for.

Here's a starting point
 
Ron McLeod
Marshal
Posts: 4501
572
VSCode Eclipse IDE TypeScript Redhat MicroProfile Quarkus Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
.. and Welcome to the Ranch  
 
reply
    Bookmark Topic Watch Topic
  • New Topic