How to Save XML data of the Dynamic PDF form while submit the data
21 views
Skip to first unread message
kumar
unread,
May 9, 2008, 3:48:28 PM5/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Adobe LiveCycle Developers
1. I am using ADOBE LiveCycle Designer7.0. I need to save the XML data
of the PDF form and attach the xml to the SOAP call. Which object i
should use for this?
JavaJones
unread,
May 9, 2008, 3:59:31 PM5/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Adobe LiveCycle Developers
I'm using a button. In the object palette select submit for Control
Type. Then on then click on the submit tab and you can type in the url
to your service and in the submit as drop down select XML.
Hope this helps.
kumar
unread,
May 10, 2008, 9:11:52 PM5/10/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Adobe LiveCycle Developers
Thanks jones. But if i do this call through the BUTTON control type as
REGULAR. How should i do this? It needs programmatically.
Srinath Subramanyan
unread,
May 12, 2008, 6:33:29 AM5/12/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to live...@googlegroups.com
Hav a hidden button with "Submit type" and call this button's click event in ur scipt.
Button.execEvent("click");
Do all the settings as jones specified in ur hidden button.
thus u can programatically call..
kumar
unread,
May 12, 2008, 12:14:20 PM5/12/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Adobe LiveCycle Developers
Thanks.
Justin Klei
unread,
May 19, 2008, 10:05:58 PM5/19/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Adobe LiveCycle Developers
If you ever need to access the xml data programmatically within
javascript, you can do so with the following call:
xfa.datasets.data.saveXML()
This could be useful if you are programmatically building the SOAP
call through the Acrobat Javascript APIs.