Запрос SOAP по PHP

У меня есть данные:

POST /Reseller.asmx HTTP/1.1 Host: server.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://server/FunctionOnDemand" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <AuthHeader xmlns="http://server/"> <UserName>string</UserName> <Password>string</Password> </AuthHeader> </soap:Header> <soap:Body> <OrderServicesExport xmlns="http://server/" /> </soap:Body> </soap:Envelope> 

Мне нужно отправить запрос soap на «someURL? WSDL» с помощью PHP.

Может ли кто-нибудь помочь?