ServerConnectionSecureSocket under corporate proxy
Last Post 02 Sep 2014 05:22 AM by albagjimenez. 0 Replies.
Author Messages
albagjimenezUser is Offline
New Member
New Member
Posts:47


--
02 Sep 2014 05:22 AM
    Hi,
    I'd like to connect to an instance of Apelon that is putside my network by a ServerConnectionSecureSocket under a corporate proxy.


    Now I have this:

    <code>
    public ServerConnectionSecureSocket getSecureSocketConnection(String host, int port, String userName, String password) throws ClassNotFoundException, ApelonException {

    ServerConnectionSecureSocket secureSocketConnection;

    secureSocketConnection = new ServerConnectionSecureSocket(host, port, userName, password);
    ...
    }
    </code>

    Does anybody know how could I pass my proxy parameters to the ServerConnectionSecureSocket object.

    Thanks!


    ---