具有 SOAP 响应的 C# Web 应用程序

发布于 2024-11-15 17:12:42 字数 230 浏览 4 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灯角 2024-11-22 17:12:42

假设您使用的是 WCF,它默认使用 SOAP,因此如果您正确设置了所有内容,它将自动为您进行序列化和反序列化。

[OperationContract]
MyResponse ParseId(MyRequest req);

MyResponse可以保存响应信息
MyRequest 可以保存请求信息

实现可以是这样的:

public MyResponse ParseId(MyRequest req)
{
    if(req.Id == null)
    {
       //Error
    }
    else
    {

    }
 }

如果真的很简单,您可以这样做:

[OperationContract]
void ParseId(int id);

实现:

public void ParseId(int id)
{
  if(id == null)
  {
      //throw exception;
  }
  else
  {

  }
}

不要忘记用 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.

[OperationContract]
MyResponse ParseId(MyRequest req);

MyResponse can hold response information
MyRequest can hold request information

Implementation could be like this:

public MyResponse ParseId(MyRequest req)
{
    if(req.Id == null)
    {
       //Error
    }
    else
    {

    }
 }

If it is really simple, you can do something like this:

[OperationContract]
void ParseId(int id);

Implementation:

public void ParseId(int id)
{
  if(id == null)
  {
      //throw exception;
  }
  else
  {

  }
}

Don't forget to decorate your MyResponse class and MyRequest class with DataContract attributes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文