i want to have both an Apache and a Game Server to be reachable on port 443 of the same IP address.
The game server connection is a normal TCP connection that ...
I need to setup a really lightweight HTTPS server for a Java application. It's a simulator that's being used in our development labs to simulate the HTTPS connections accepted by a ...
I am trying to create a https connection and its working fine in a test class.but when i call the same method in action class its getting following error after step ...
How can I ignore SSL certificate issues from the context of the WebConversation or WebRequest object? I know I can create a fake TrustManager that accepts all certificates but how can ...
I'm trying to get Java to accept all certs over HTTPS. This is for testing purposes. Before I was getting a cert not found error. However, after adding the following code ...
I wanted to automate the process of logging on to the secured server without the popup window at the client sites. can i do that? what are the procedures and steps I need to follow. how do i import certificates on the client side ? how do i generate certificates and send it to the server ? can any one suggest ...
I am using Java 1.1.X . I can not upgrade. So I am stuck with this version of java. I can't use JSSE because it only works with java 2. I have tried using Cryptix, but I have com across some errors when talking to a certain server. I am looking for non-commerical versin of ssl for java. any idea's
hello i am trying to get 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 normal http site but not with the https. i have tried keytool too ...
I am trying to connect to an https site and get java.net.UnknownHostException SIte name Is there some environment setup with Trust/Certificates that need to be done first ? I've tried using IP but then got error when adding startHandshake(); Thanks! Charlie =================== Here's the code: import javax.net.ssl.SSLSocket; import javax.net.ssl.SSLSocketFactory; import java.io.*; public class testc { public static void main(String[] arstring) { ...
Hey, Im looking for a nice simple example on how to use SSL or HTTPS. Ok, what I really want to do is use POST or GET so that I can work with websites that use SSL or HTTPS. A book that teaches this also would be nice, but I would settle for an easy(im a newbie) example to go with. ...