cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

A doubt XSLT Mapping

Former Member
0 Likes
481

Hi Guys,

              I am learning XSLT mapping from article

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/000ee4d0-be91-2d10-8aaf-ff8045bdd...

I have created two message type, a service interface in the same SWC, The operation mapping was created in a distinct SWC. Later the test, my target message has two namespaces, the ns0xxxx and ns1xxxx.

In the code, I have

 

xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://xxx" xmlns:ns1=http://xxx

Is correct this? or my target message should have a namespace only?

Regards

View Entire Topic
baskar_gopalakrishnan2
Active Contributor
0 Likes

Just Few cents.... IMO, there are two errors in your namespace declaration.

xmlns  -> attribute

ns1 or ns0 -> namespace prefix

a) You forgot to add quote for the namespace  i.e xmlns:ns1= "http://xxx"

b) if your namespace "http://blah...blah" is different then you can use different namespace prefix either ns1 or ns2 or ns3. Here you use the same namespace, so you don't need different namespace prefix.

Hope that helps.

Former Member
0 Likes

Thanks Baskar,

                         so my code is

Regards.

baskar_gopalakrishnan2
Active Contributor
0 Likes

Yes the above code looks correct. You can also validate for syntax issues (if any) using XMLSPY or some other tool.