• 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

digital signature using web service

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have written two classes GenSig and VerSig which generate and verify the digital signatures for a file respectivly . The generate main method takes the file name as command argument and creates two files named sign and pubkey in the bin folder . I now need to put the VerSig class in a web service .. can anyone guide me on how to do that ?
 
Ranch Hand
Posts: 343
Mac OS X Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

sayush anand wrote:I have written two classes GenSig and VerSig which generate and verify the digital signatures for a file respectivly . The generate main method takes the file name as command argument and creates two files named sign and pubkey in the bin folder . I now need to put the VerSig class in a web service .. can anyone guide me on how to do that ?



You may want to use AXIS api to generate webservice.

I think the following link will help you:-

http://docs.oracle.com/cd/E17802_01/webservices/webservices/reference/tutorials/wsit/doc/Examples_glassfish4.html

or

http://www.ibm.com/developerworks/library/x-jibx1/
 
reply
    Bookmark Topic Watch Topic
  • New Topic