Forum Discussion
nmrao
13 years agoCommunity Hero
Hi,
Understand that namespace is missing after update is done.
You may try the following though not sure/tested.
from:
to:
Note that namespaces K,V are included inside [, ]
Regards,
Rao.
Understand that namespace is missing after update is done.
You may try the following though not sure/tested.
from:
request = new XmlSlurper(true,true).parseText(holderRequest).declareNamespace(v2:'http://www.fnf.com/xes/services/acct/acctinq/v2_1',
ifx:"http://www.ifxforum.org/IFX_150",soapenv:"http://schemas.xmlsoap.org/soap/envelope/", xes:"http://www.fnf.com/xes")
to:
request = new XmlSlurper(true,true).parseText(holderRequest).declareNamespace([v2:'http://www.fnf.com/xes/services/acct/acctinq/v2_1',
ifx:"http://www.ifxforum.org/IFX_150",soapenv:"http://schemas.xmlsoap.org/soap/envelope/", xes:"http://www.fnf.com/xes"])
Note that namespaces K,V are included inside [, ]
Regards,
Rao.