gpt4 book ai didi

wcf - 使用API​​ : body serialization张贴到REST Web服务

转载 作者:行者123 更新时间:2023-12-04 04:39:03 24 4
gpt4 key购买 nike

我正在按照以下指示尝试使用REST Web服务:http://social.technet.microsoft.com/wiki/contents/articles/invoke-restful-web-services-with-biztalk-server-2010.aspx

但是,GET似乎可以正常工作,但是POST失败,因为某种程度上,消息已被序列化为字符串。

我得到:

POST /my_app/12005ab0-1522-71e1-0dde-0a0801c50000 HTTP/1.1
Content-Type: application/xml; charset=utf-8
Host: bsmshell.inovaprime.com:81
Content-Length: 174
Expect: 100-continue
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">&lt;body xmlns="http://microsoft.com/schemas/samples/biztalkwebhttp/1.0"&gt;HelloWorld&lt;/body&gt;</string>

代替:
POST /my_app/12005ab0-1522-71e1-0dde-0a0801c50000 HTTP/1.1
Content-Type: application/xml; charset=utf-8
Host: bsmshell.inovaprime.com:81
Content-Length: 174
Expect: 100-continue
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

<body xmlns="http://microsoft.com/schemas/samples/biztalkwebhttp/1.0">HelloWorld</body>

消息如下:


12005ab0-1522-71e1-0dde-0a0801c50000
应用程序/xml;字符集= utf-8
你好,世界


端口配置如文章中所述。

关于我看到此行为的可能原因的任何指示?

谢谢

最佳答案

Message.CreateMessage(request.Version,request.Headers.Action,bodyElement.ToString());更改为:Message.CreateMessage(request.Version,request.Headers.Action,bodyElement);解决了问题。

[按顺序发布以供其他人查找]

关于wcf - 使用API​​ : body serialization张贴到REST Web服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8247992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com