asp.net中的webservice xml请求

时间:2013-03-19 11:14:58

标签: asp.net wcf web-services

我需要实现一个web服务来获取以下xml

的请求
<EVG_CardValid>
  <Token>
    <UserName>xxxx</UserName>
    <password>yyyy</password>
    <CardID>71656</CardID>
  </Token>
  <MaxTitle>5</MaxTitle>
  <IncludeDates>
    <startDate>2012-11-25T13:06:33.11</startDate>
    <EndDate>2012-11-25T15:06:33.11</EndDate>
  </IncludeDates>
</EVG_CardValid>

webservice需要回复xml

 <info>
    <cardName>
    xxx
    </cardName>
    <cardValidDate>1/1/2013</cardValidDate>
    ...
    </info>

我是webservices的新手(只使用jason的本地wcf)

我的问题是如何sholud我的webservice看起来,我有什么作为我的函数中的参数execpt(提到的xml的变量) 如何将xml作为响应发送(发送回构建为xml的字符串?)

从数据库检查用户名和密码时,我是否需要做一些特别的事情?

在这种情况下,wcf或webservice最好使用什么?

抱歉无知,任何帮助都将非常感激

非常感谢 Baaroz

1 个答案:

答案 0 :(得分:0)

我之前有同样的要求,我在博客上发帖,检查一次..

它可能会帮助您入门。

http://www.iamraghuveer.com/2012/01/aspnet-web-service-receiving-xml-as.html

该帖子中也有一些垃圾,但它是有效的方法。