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

WSDLReader and https (SSL)

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

i am trying to read the wsdl file from the secured page but i can't find the answer to this. my snippet looks as follow:

..
WSDLFactory factory = WSDLFactory.newInstance();

WSDLReader wsdlReader = factory.newWSDLReader();
this.wsdlDefinition = wsdlReader.readWSDL(wsdlURL);
this.wsdlURL = wsdlURL;
..
..

this works great with the regular http site but not with the https.

i have tried keytool too but it didn't work. is there any other hint or solution to this problem??

thank you
 
Bartender
Posts: 2968
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Please do not crosspost.

Original thread in the Web Services forum.
    Bookmark Topic Watch Topic
  • New Topic