具有 SOAP 响应的 C# Web 应用程序
我对 C# 编程相当陌生,我需要创建一个 Web 应用程序项目。我被告知网站将导航到我的网络应用程序并发送 ID。然后,我的 Web 应用程序需要在 SOAP 请求中使用此 ID。然后需要评估响应,如果它符合标准,则 Web 应用程序可以加载,否则只会引发异常。
除了获取初始 ID 并设置 SOAP 请求和接收之外,我可以对所有应用程序进行编码。我有所有相关信息,只是不知道如何设置 SOAP 请求/响应。
此致
I'm fairly new to programming an C# and i need to create a web application project. I have been told that a website will navigate to my web application and send an ID. My web application then needs to use this ID within a SOAP request. The responce then needs to be evaluated and if it fits a criteria, the web application can load or else just throws an exception.
I can code all the application except grabbing the initial ID and setting up a SOAP request and recieve. I have all the relevant information, i just don't know how to set up the SOAP request/responce.
Best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用的是 WCF,它默认使用 SOAP,因此如果您正确设置了所有内容,它将自动为您进行序列化和反序列化。
MyResponse可以保存响应信息
MyRequest 可以保存请求信息
实现可以是这样的:
如果真的很简单,您可以这样做:
实现:
不要忘记用 DataContract 属性来装饰您的 MyResponse 类和 MyRequest 类。
Assuming you are using a WCF, it uses SOAP by default, so if you have everything setup correctly, it will automatically serialize and deserialize for you.
MyResponse can hold response information
MyRequest can hold request information
Implementation could be like this:
If it is really simple, you can do something like this:
Implementation:
Don't forget to decorate your MyResponse class and MyRequest class with DataContract attributes.