2
votes
0answers
55 views

How to capture the output of XSLT's xsl:message in Mule

I've an XSLT to transform XML in Mule 3.3.0 application. I've to stop processing and throw an error if data is not in conformance to requirements. I am using beloe code to achieve that. ...
1
vote
1answer
69 views

Unable to access xsl file from jar file (Mule)

I have been facing trouble accessing an xsl file located inside a folder in jar file. I need to get this working in mule-config file. As given below I need to access an XSL file from a filder inside ...
0
votes
1answer
93 views

MessageProcessor unit testing is not working with XSLT tansformer

I have written unit test cases to test the message processors individually in my mule flow. But the unit test fails with error org.mule.api.transformer.TransformerMessagingException: Property ...
0
votes
1answer
90 views

How to use schema aware XSLT processor in Mule 3.3 application

I intent to validate input xml and output xml from my xsl stylesheet. I am following this developerworks post to do that. When I try to run my application through Mule Server, it fails with following ...
0
votes
1answer
174 views

Multiple <xsl:template match in .xslt file in mule

I use these codes for hiding my methods in my XML(WSDL) file: <xsl:template match="wsdl:operation[@name = 'GetCityWeatherByZIP']" /> <xsl:template match="wsdl:message[@name = ...
0
votes
1answer
69 views

if condition for making hide some part of xml(WSDL) file in .xslt in mule

this is my .xslt file : <?xml version='1.0' ?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
0
votes
0answers
71 views

if-condition for remove some part of XML(WSDL) file in .xslt in MULE?

I want to remove some part of my XML(WSDL) file by puuting and checking ip-address. for this issue in .xslt file I want to check this condition that if $remoteClientAddress != my-ip-address then ...
0
votes
1answer
51 views

Remove extra part in remoteClientAddress string in .xslt in MULE server 3.3.0 CE?

In my configuration.xml in MULE server 3.3.0 CE, I pass MULE_REMOTE_CLIENT_ADDRESS to .xslt file, below I copied my codes : <logger ...
0
votes
2answers
146 views

Mule-XSLT transformation failing

I am trying to transform an XML in Mule before calling my JDBC connector, however the transformation is failing with : ERROR 2013-02-05 14:43:53,989 [WrapperListener_start_runner] ...
0
votes
1answer
127 views

if -else condition in .xslt file in MULE

In my configuration.xml in MULE server 3.3.0 I pass MULE_REMOTE_CLIENT_ADDRESS to .xslt file, below I copied my codes : <logger ...
0
votes
2answers
72 views

How to pass a logger message value to .xslt file in mule

In configuration.xml file I implemented a flow for publishing out a wsdl, during the way I put a logger that return Client's IP address. this is my code: <logger ...
0
votes
1answer
79 views

Add Authorization role to access an XML(WSDL) file by using xsl

I have a WSDL and I want to add permission on it that all people can't see all the methods on it: <wsdl:types> ... </wsdl:types> <wsdl:message> ... ...
1
vote
3answers
186 views

What is the recommended approach to use Mule choice router with XSLT

I am using the below shown snippet of choice element in my Mule 3.3 flow. XSL Transformer feeds the choice element. XSL Transformer is supposed to return a String (name of an entity) and on the basis ...
0
votes
1answer
69 views

IP permission in .XSLT file for seeing XML(WSDL) file?

I have a XML(WSDL) file that I want to manage it by using .XSLT file. I want to set IP permission in my .XSLT file for seeing some part of WSDL that some restricted IPs can see some part of my WSDL. I ...
0
votes
2answers
211 views

Delete s:element attribute-values in XML(WSDL) file?

I want to in my XML (WSDL) file remove s:element between tag: <wsdl:types> <s:schema elementFormDefault="qualified" targetNamespace="http://ws.cdyne.com/WeatherWS/"> <s:element ...
0
votes
1answer
86 views

Delete elements attribute-values in XML (WSDL) file?

I want to in my XML (WSDL) file , Remove some of the elements. This is my WSDL file: <wsdl:types> ... </wsdl:types> <wsdl:message> ... ...
0
votes
1answer
175 views

Passing XSL file in classpath to XSLT Transformer

I am trying to pass the XSL file which is located in the classpath to Mule XSL-T transformer in my flow. Bit it is giving me error. <mule-xml:xslt-transformer maxIdleTransformers="2" ...
0
votes
1answer
103 views

How to use param value used as xpath in for-each for xslt

I have a situation in xsl where I had a param value that will be assigned some where in xslt transformation. But I get that param as a String , that param may contains a node a unbounded[0 or more ...
0
votes
2answers
182 views

Adding XML piece to an existing XML using XSLT

I am trying to add a piece of an XML to an input XML using XSLT. But the output is not coming as expected. Pelase help. My input XML : <input ...
0
votes
2answers
302 views

Adding two xmls. Working with XSLT transformer

I am looking for solution for a scenario which is troubling me a lot. I am working on mule 3.3. I have some incoming XML and a second XMLcoming from the enricher. Now the xml from the enricher is ...
0
votes
2answers
70 views

Transforming XML to slightly different XML belonging to different version of same schema

I need to transform one XML (say x1.xml) which is the input to my application to a slightly different XML(say x2.xml) format which is based on the newer version of same schema. x2 is the output from ...
-1
votes
3answers
888 views

Mule 3.2 - Why am I getting this SAXParseException from XSLT transformation?

Using Mule 3.2 I am trying to build XML from inside my mule flow but I get this error I tried a few ideas online but I keep getting this message. <mulexml:xslt-transformer ...