Code Comments
Programming Forum and web based access to our favorite programming groups.hello,
i have a web application deploy in a application server (WAS 4.0).
this application connect to a server with SSL.
when the application init, I configure the ssl properties:
private URL url;
init()
{
System.setProperty("javax.net.ssl.keyStore", "...");
..
System.setProperty("javax.net.ssl.trustStore", "...");
..
URL url = new URL("https://...");
..
}
when have a request:
doPost(req, resp)
{
URLConnection con = url.openConnection();
..
InputStream in = con.getInputStream();
..
}
well, in the same application server, i have others application deployed,
that access other services in others servers with SSL, and init the
configuration in the same way with others keystore and truststore.
all the applications are in the same app server (same virtual machine), and
call
System.setProperty("javax.net.ssl.keyStore", "...");
is this a problem???
thaks in advance,
C?sar.
--
Message posted via http://www.webservertalk.com
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.