.NET SOAP Web 服务序列化错误

发布于 2024-10-28 08:40:51 字数 414 浏览 3 评论 0原文

我想创建通用类(带有对象类型参数)用于将对象发送到 SOAP Web 服务。

   public class ReturnObject
   {
       public int ReturnCode;
       public object ReturnValue;

       public ReturnObject() { }

       public ReturnObject(int resultCode, object resultValue)
       {
           this.ReturnCode = resultCode;
           this.ReturnValue = resultValue;
       }
   }

但我收到序列化错误。

谁能建议我,我哪里错了?

I want to create universal class (with object type parameter) for sending object to SOAP web service.

   public class ReturnObject
   {
       public int ReturnCode;
       public object ReturnValue;

       public ReturnObject() { }

       public ReturnObject(int resultCode, object resultValue)
       {
           this.ReturnCode = resultCode;
           this.ReturnValue = resultValue;
       }
   }

But I receive serialization error.

Can anyone suggest me, where I'm wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

秋心╮凉 2024-11-04 08:40:51

我的猜测是 ReturnValue 是 SOAP 序列化程序不支持的某种类型。

当然,至少能看到错误就好了……

My guess is that ReturnValue is some type that the SOAP serializer doesn't support.

Sure would be nice to at least see the error though...

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