LiveCycle PDF 以 XML 形式提交到 .NET Web 服务
我有一个 LiveCycle 设计的 PDF,我想让它的提交按钮将表单中的 XML 数据发送到 .NET Web 服务。我知道如何做到这一点,但我不太清楚网络服务方面。我的 Web 服务的方法签名应该是什么来接受 XML 数据?
[WebMethod]
public bool RecieveXML(XmlDocument input)
或者
[WebMethod]
public bool RecieveXML(string input)
?
收到 XML 后,我只想将 XML 作为附件通过电子邮件发送(我可以自己管理),但是有没有办法让我的 web 服务的 bool 返回类型使 PDF 向用户显示成功/失败消息?
I have a LiveCycle designed PDF that I want to make its submit button send the XML data in the form to a .NET webservice. I see how to do that, but I'm not really clear on the webservice side. What should my webservice's method signature be to accept the XML data?
[WebMethod]
public bool RecieveXML(XmlDocument input)
or
[WebMethod]
public bool RecieveXML(string input)
?
After I receive the XML I just want to email the XML as an attachment (which I can manage on my own), but is there any way for my webservice's bool return type to cause the PDF to show a success/fail message to the user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要返回 fdf 数据(具有适当的 mime 类型集),其中嵌入了 javascript 指令。我还没有尝试过使用Webservice,我只使用了一个简单的aspx页面并使用
Response.Write
返回数据。以下是应返回的数据格式: 将表单提交给 asp .net 服务器。
至于接收数据,我是这样做的(代码位于页面加载事件中):
由于输入是 xml 字符串,因此您可以使用
XmlSerializer
反序列化输入在一个类的实例中。You need to return fdf data (with appropriate mime type set) which has javascript instructions embedded in it. I have not tried it with webservice, I used just a simple aspx page and used
Response.Write
to return the data.Here is format of the data should be returned: Submitting form to asp.net server.
As for receiving the data here is how I did it (the code is in page load event):
As the input is xml string you can use
XmlSerializer
to deserialize the input in an instance of a class.