如何使用MTOM将带有图像附件的soap在vb6中发送到c#中的Web服务?

时间:2015-04-02 13:49:08

标签: c# soap vb6 bytearray mtom

有我的代码:

=>我的web.config(c#)的一部分:

<basicHttpBinding>
    <binding name="secureHttpBinding"
            maxReceivedMessageSize="2097152" messageEncoding="Mtom"
            transferMode="Streamed">
        <readerQuotas maxStringContentLength="2097152" maxArrayLength="2097152" />
        <security mode="Transport">
            <transport clientCredentialType="None"/>
        </security>
    </binding>
</basicHttpBinding>

=&GT;我想调用的函数(c#):

[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml, Method = "POST", BodyStyle = WebMessageBodyStyle.WrappedRequest)]
ImageData UploadImage(string clientAppKey, string organizationId, string name, byte[] value);

=&GT;我尝试发送的肥皂(vb6):

接头:

objHttpRequest.SetRequestHeader "Content-Type", "multipart/related; type=""application/xop+xml"";start=""<http://tempuri.org/0>"";boundary=""uuid:d2d519f9-a921-436c-95b0-e31576611a01+id=16"";start-info=""text/xml"""
objHttpRequest.SetRequestHeader "SOAPAction", strNameSpace_ & "IFileHostService/" & strAction
objHttpRequest.SetRequestHeader "MIME-Version", "1.0"

数据:

--uuid:d2d519f9-a921-436c-95b0-e31576611a01+id=16
Content-ID: <http://tempuri.org/0>
Content-Transfer-Encoding: 8bit
Content-Type: application/xop+xml;charset=utf-8;type="text/xml"

<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><UploadImage xmlns="http://tempuri.org/"><clientAppKey>12345</clientAppKey><organizationId>000012</organizationId><name>b8e5cb8c-f82e-450d-a80a-29374640d34200.png</name><value><Include xmlns="http://www.w3.org/2004/08/xop/include" href="cid:http://tempuri.org/1/635630514915728569"/></value></UploadImage></soap:Body></soap:Envelope>

--uuid:d2d519f9-a921-436c-95b0-e31576611a01+id=16
Content-ID: <http://tempuri.org/1/635630514915728569>
Content-Transfer-Encoding: binary
Content-Type: application/octet-stream

[My bytes array??]
--uuid:d2d519f9-a921-436c-95b0-e31576611a01+id=16

有我的问题:

我在c#中收到了我的数据,但收到的字节数组并不好。

我尝试了很多方式来发送我的字节数组。

1-我在base64中尝试但是c#中的bytes数组比vb6中的bytes数组长。 例如:我在vb6中发送了40000的字节数组,并在c#中获得了50000的数组。

2-我尝试使用字符串unicode,但是数组太短了。 例如:我发送了StrConv(b(),vbUnicode)并在c#中得到了一个8的数组。 UBound(b)= 40000

我的问题是如何在vb6中发送我的字节数组以在c#中获取相同的数组?

感谢您的时间。

1 个答案:

答案 0 :(得分:0)

最后,我找到了一种方法。

我在base64中发送我的字节数组并转换为c#。

value = Convert.FromBase64String(Encoding.UTF8.GetString(value));

使用StrConv(b(),vbUnicode)的解决方案不起作用,因为当c#读取我的字符串时它停止读取char 0。