Re: [PHP] Re: Connecting to an epp server

2008-04-10 Thread Paul van Brouwershaven
epp-example from dns.be: fp = fsockopen ($addr, $port , $errno, $errstr, $timeout); return 0; } function readInteger() { $buf = fread($this->fp, 4); if (strlen($buf) < 4) { echo "failed to read 4 bytes \n"; exit; } $b0 = ord($buf[0]); $b1 = ord($buf[

Re: [PHP] Re: Connecting to an epp server

2008-04-10 Thread Alan Willsher
What is 4 bytes ? On Thu, Apr 10, 2008 at 3:35 PM, Paul van Brouwershaven < [EMAIL PROTECTED]> wrote: > don't forget to send the 4 bytes! > > Alan Willsher schreef: > > Hi im trying to connect to Nominets EPP server > > > > Details can be found here > > http://www.nominet.org.uk/registrars/syste

[PHP] Re: Connecting to an epp server

2008-04-10 Thread Paul van Brouwershaven
don't forget to send the 4 bytes! Alan Willsher schreef: Hi im trying to connect to Nominets EPP server Details can be found here http://www.nominet.org.uk/registrars/systems/epp/ Im trying to send a login request the example can be found here http://www.nominet.org.uk/registrars/systems/epp/l