Search found 2 matches
- Wed Feb 25, 2009 12:32 am
- Forum: PHP - Code
- Topic: Basic doubt in PHP/CURL
- Replies: 1
- Views: 68
Basic doubt in PHP/CURL
Hi, If we use curl functions for web services, then its comes under which delivery method: Normal HTTP post or Direct socket interface? sample code: ob_start(); $ch = curl_init ($output_url); curl_setopt ($ch, CURLOPT_VERBOSE, 1); curl_setopt ($ch, CURLOPT_POST, 1); curl_setopt ($ch, CURLOPT_POSTFIE...
- Wed Feb 25, 2009 12:23 am
- Forum: PHP - Code
- Topic: How to call webservice with secure socket connection in PHP?
- Replies: 2
- Views: 118
How to call webservice with secure socket connection in PHP?
Hi, I am working with payment integration with direct socket interface delivery method. I need to know how to do the following things, 1. Connect Secure socket 2. Write Transaction message text to the socket 3. Read Response message text from socket 4. Close Secure socket If anyone can please provid...