Hi Zoran,
I am also trying to communicate with EPP server using mirosoft technology. I have tried in both ASP and .NET technology.
In ASP, I treied in the same way as you did. In .Net, I tried with System.Net.Sockets page and tcpClient.connect() method. But No nuck.
If you would have succeeded or if you have any idea, can you please inform me. I am struggling a lot in this and spent too much of time.
Thanks in advance.
Regards,
David.
###############################################
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.