gkoliver,
I tried using the following code to create a copy based on the infopath form template. It still doesn't work.
If possible could you please share the code that works for you??
$().SPServices({
I tried using the following code to create a copy based on the infopath form template. It still doesn't work.
If possible could you please share the code that works for you??
$().SPServices({
operation: "CopyIntoItemsLocal",
async: false,
SourceUrl: "http://Site/Library/Forms/template.xsn",
DestinationUrls:["http://Site/Library/test.xml"],
completefunc: function(xData, Status) {
alert("Status=" + Status + " XML=" + xData.responseXML.xml);
}
});