• 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

Client Authentication from java client to .Net webservice

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

I am writing a java web service client that talks to a .Net web service (.Net v4). I have SSL working, but I have issues with the client authentication.

I have the client certificate in my keystore

System.setProperty("javax.net.ssl.keyStore", KS_WIN);
System.setProperty("javax.net.ssl.keyStorePassword", KS_Password);
System.setProperty("javax.net.ssl.keyStoreType", "JKS");

Does anyone have any experience with this?

The error I am getting is

An error occurred when verifying security for the message

The SSL definitely works as it when we turn client authentication off it works well, but when we turn it back on we get this error again.
 
reply
    Bookmark Topic Watch Topic
  • New Topic