Hi I am trying to communicate with EPP Server. I have java client example which use Java HttpURLConnection method to establish the connection.
Example:
===================================================
1.String address = "https://someserver.serv.com:429/epp/proxy";
2.URL url = new URL(address);
3.HttpURLConnection c = (HttpURLConnection)
4.url.openConnection();
====================================================
How can I do something similar to communicate with this server? I am trying to send login command in XML format.
ANY resource, ANY advice, ANY link will help. Not to mention how greatful I will be for an how to example.