• 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
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Any public Webservices with SSL

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

is there any public web services with https (SSL) , this is require mainly for testing purpose.

Regards,

Sankar.S
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I assume you have a development server (or even local machine) to test your WS; why not set that up with SSL?
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You didn't quite mention what type of web service it was. I'd go with Ulf's suggestion on using your own dev server and configuring SSL on it. Or you could use on of several public APIs which have a getVersion() call which do not need any authentication.

http://developer.ebay.com/DevZone/resolution-case-management/CallRef/getVersion.html
 
Saloon Keeper
Posts: 28396
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you intend to develop a SSL-secured Web Service of your own, that's trivial. Just ensure that your WEB-INF/web.xml includes transport rules that mandate that the web services URLs are to be secured.

If you are working on a SLL-enabled web service client app, it's not that hard to create a minimal web service with secured transport (as described above). Something like a "hello, world!" service just to test the encryption. Unless you are using low-level Java networking classes, however, TLS/SSL, like cookies, will be automatically negotiated and handled by the java library.

One of the advantages of a simple "Hello, World!" service is that you can confirm that SSL is working by doing an HTTP GET request to it in a stock web browser and looking at the security indicators on the response.
 
Politics n. Poly "many" + ticks "blood sucking insects". 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