Questions tagged «soap»

简单对象访问协议(SOAP)是用于在Web服务的实现中交换结构化信息的协议规范。

1
PHP中带有CURL的SOAP请求
由于php.net上的SOAP手册不是非常友好,并且我找不到任何好的示例,因此我将在此处发布我的问题。 如何创建如下所示的PHP SOAP请求? POST /MySERVER/myWSDLservice.asmx HTTP/1.1 Host: connection.mywebsite.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://connection.mywebsite.com/MySERVER/GetCarType" <?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:Body> <GetCarType xmlns="http://connection.mywebsite.com/MySERVER/"> <IDNumber>string</IDNumber> </GetCarType> </soap:Body> </soap:Envelope> 请注意: 有用户/通过身份验证 SSL连接 任何建议/链接/示例,不胜感激。
70 php  soap  curl 

5
是否可以在没有内容长度标题的情况下将文件上传到S3?
我正在使用内存有限的计算机上工作,我想以流方式将动态生成的(非磁盘)文件上传到S3。换句话说,开始上传时我不知道文件大小,但最后我会知道。通常,PUT请求具有Content-Length标头,但也许可以解决此问题,例如使用多部分或分块的内容类型。 S3可以支持流式上传。例如,在这里: http://blog.odonnell.nu/posts/streaming-uploads-s3-python-and-poster/ 我的问题是,在上传开始时无需指定文件长度即可完成相同的事情吗?
70 http  rest  soap  stream  amazon-s3 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.