English 中文(简体)
a. 一个网络服务,一个没有动力的蒸汽
原标题:calling a webservice and deserializing soap without a wsdl

我有一个供应商,他们似乎有 w或不愿意或不知道如何提供。 他们拥有一些网络服务(从技术上讲,他们是返回肥皂信息的联几建和办),我需要利用其中约10-15个网络来做我的工作。

既然没有WSDL,我就不得不利用增加的网络参考功能来制作代理班。 我通过使用WebClient来敲响警钟,并将答复作为示例退回,但现在我需要将答复注入客户类别。

I ve already made c# classes to match the xml that s returned, but I m not sure how to deserialize from SOAP since there s so much xml noise. I could strip the SOAP envelope tags and then use the XML serializer to deserialize to a List<SomeType>, but that seems really dirty. Is there a nicer way?

最佳回答

i 发表一篇论文,详细介绍如何使复杂的Xml民主化。

此处为链接:http://blog.impact-work.com/106/30/how-to-serializedeserialize-complex-xml-in-asp-net-c/

希望它有助于

问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签