Hi When im calling a webservice like this <rde-dm:include process-mode="execute" content="/ getInfoFromWebservice.xml" /> i get a xml answere like this
<firstname>John</firstname> <lastname>Johnsson</lastname> <phoneList> <phone> <phoneNumber>123456789</phoneNumber> <displayText>HomeNumber</displayText> </phone> <phone> <phoneNumber>98567811</phoneNumber> <displayText>98567811</displayText> </phone> </phoneList> I want to set firstname and lastnames to attributes and that works greate. Nu now i also want to save the hole xmlstructor and information of <phonelist></phonelist> <phoneList> <phone> <phoneNumber>123456789</phoneNumber> <displayText>HomeNumber</displayText> </phone> <phone> <phoneNumber>98567811</phoneNumber> <displayText>Mobile</displayText> </phone> </phoneList> I want to be able to send this xml to a xsl later to get it transformed. Today they are doing it like this on several places on the page but with different xslt:s. <rde-dm:include content="getInfoFromWebservice" stylesheet="/ phonelist.xsl" /> The reason i want to do this is because i only want one webservicerequest to the servers. Is this possible? If not do you have another way to do this? The xsl should transform the parameters to a list Homenumber: 123456789 Mobile: 98567811 Greatful for help -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en.
