Re: [PHP] mime type over http post?

2007-05-19 Thread Ray
Thanks for your help everybody. I think I'll give the other company a link to this thread for the next person who asks for help. Ray On Wednesday 16 May 2007 6:57 pm, Oliver Block wrote: Hello Ray, 1. create the xml markup (dom) 2. open a connection to the 3rd party server (fsockopen) 3.

Re: [PHP] mime type over http post?

2007-05-16 Thread Stephen
I'm having a hard time getting support from from them. the method of comunication (direct quote from their docs is: Data will be transferred to [server] via an HTTP POST operation using the MIME type, text/xml They want you to mimic what a browser would send to a web site when the user

Re: [PHP] mime type over http post?

2007-05-16 Thread Ray
On Wednesday 16 May 2007 11:12 am, Stephen wrote: I'm having a hard time getting support from from them. the method of comunication (direct quote from their docs is: Data will be transferred to [server] via an HTTP POST operation using the MIME type, text/xml They want you to mimic what

Re: [PHP] mime type over http post?

2007-05-16 Thread Tijnema !
On 5/16/07, Ray [EMAIL PROTECTED] wrote: On Wednesday 16 May 2007 11:12 am, Stephen wrote: I'm having a hard time getting support from from them. the method of comunication (direct quote from their docs is: Data will be transferred to [server] via an HTTP POST operation using the MIME

Re: [PHP] mime type over http post?

2007-05-16 Thread Oliver Block
Hello Ray, 1. create the xml markup (dom) 2. open a connection to the 3rd party server (fsockopen) 3. send the header (fputs) 4. send the body (fputs) 5. close the connection Additional Questions? Best Regards, Oliver P.S: I just know better where to look for information:-) - original