I know that soap can send XML over http, is there any way to use it to send XML over TCP? Or is there a better way to do it with PHP? Thank you very much for any insight!
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
using PHP you can connect to an arbitrary port as a client (or listen for connections on an arbitrary port as a server) and send/receive XML right over TCP, or whatever other data you want. You don’t have to use HTTP or port 80 at all.