我有一个Web服务,它在方法中包含一个字符串值。现在我想将该字符串显示到Windows窗体应用程序。 我知道我们可以调用方法并传递参数以从Web服务函数中获取结果。
但我无法逆转它。我只想把那个字符串写进我的表格。任何人都可以告诉我如何从Web服务传递字符串到我的窗体???
public XmlDocument ScanProduct(string barcode)
{
ClsFunction fun = new ClsFunction();
XmlDocument dom = new XmlDocument();
XmlElement Reply = dom.CreateElement("Reply");
dom.AppendChild(Reply);
str1 = fun.RmvQuote(barcode);
try
{
Reply.SetAttribute("itemno", "1043");
Reply.SetAttribute("upcno", fun.RmvQuote(barcode));
Reply.SetAttribute("item_desc1", "Chio Red Paprika 12/175g");
Reply.SetAttribute("item_desc2", "CHIO RED PAPRIKA 12/175G");
}
//<Reply replycode="success" msg="You are successfully login." sid="0" />
catch (Exception ex)
{
XmlElement ReplyCode = dom.CreateElement("ReplyCode");
Reply.AppendChild(ReplyCode);
XmlText text = dom.CreateTextNode("invalid request");
ReplyCode.AppendChild(text);
XmlElement Message = dom.CreateElement("Message");
Reply.AppendChild(Message);
XmlText replymsg = dom.CreateTextNode("invalid request, or unauthorized access");
Message.AppendChild(replymsg);
}
return dom;
}
我想在我的Windows窗体应用程序中打印条形码。
我的网络服务采用XML格式。 在此先感谢...