Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~366 People Reached
Favorite Forums
Favorite Tags
xml x 4
Member Avatar for hangon

Hi, I have the following xml and I want an xsl that the out put should be only part of the input xml including all attributes, text everything. Input xml [code] <a> <b> <c id="k">test</c> <d id="y">test</d> </b> </a> [/code] Output [code] <b> <c id="k">test</c> <d id="y">test</d> </b> [/code] In …

Member Avatar for fpmurphy
0
118
Member Avatar for hangon

Hi, I have an xml I want to make an exact copy of it. Here is my input/xsl but in the output I get all the elements but namespace prefix is not coming for all the elements. See the red highlighted section [code] <?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env = "http://schemas.xmlsoap.org/soap/envelope/" …

0
64
Member Avatar for hangon

Hi, I have an xml input (wsse) and I want to change the value of one of the attribute "mustUnderstand" while copying. Input.xml [code] <?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd = "http://www.w3.org/2001/XMLSchema" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"> <env:Header> <wsse:Security env:mustUnderstand = "1" xmlns:wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:UsernameToken xmlns:wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:Username …

0
67
Member Avatar for hangon

I have an xml like below <PO> <ITEM> <ID>1000</ID> <PRICE>10</PRICE> </ITEM> <ITEM> <ID>1000</ID> <PRICE>10</PRICE> </ITEM> <ITEM> <ID>1001</ID> <PRICE>10</PRICE> </ITEM> <ITEM> <ID>1001</ID> <PRICE>10</PRICE> </ITEM> </PO> I want an xpath that will get only ID = 1000 and the output should be like below <PO> <ITEM> <ID>1000</ID> <PRICE>10</PRICE> </ITEM> <ITEM> <ID>1000</ID> <PRICE>10</PRICE> …

Member Avatar for fpmurphy
0
117