The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

Unable to evaluate expression in XPath

I;m using XPath to parse XML document returned by a URL, when i run my code with given inputs it works but when giving it inputs as a user input it throws an exception. The Code: class{ private ...
0
votes
1answer
31 views

Strange XML indentation

So I'm writing an XML file, and the tabbing is coming out slightly wrong : <BusinessEvents> <MailEvent> <to>Wellington</to> ...
0
votes
0answers
20 views

Hibernate BasicPropertyAccessor Exception when Using Transformer aliasToBean

We have a custom AliasToBeanResultTransformer, which is used to transform a Hibernate result into a custom object. (The Transformer doesn't do anything special, other than remove certain unneeded ...
0
votes
1answer
38 views

adding content without delete original content in XML java

I want to add new content inside a XML file, without delete the original content. How can I do that. Original XML: <collection> <data> <type>CHD</type> <values> ...
3
votes
3answers
89 views

Racket with-hash macro and rename transformers

I created this: (define-syntax (with-hash stx) (syntax-parse stx [(_ obj:id ((~or key:id [new-key:id hash-key:id]) ...) body:expr ...+) #'(let ([key (hash-ref obj 'key)] ... ...
1
vote
2answers
60 views

TransformerFactoryConfigurationError when trying to use Saxon with a web service

My web service, living on Axis2 inside a WSO2 WSAS application server, contains the following code: String prop = "javax.xml.transform.TransformerFactory"; String val = ...
0
votes
0answers
29 views

Need to have multiline xml element in to single line

i've xml got from transformer as below <address> <city> xxxx</city> <state> yyyy</state> <zip>07834</zip> </address> but i want ...
0
votes
0answers
99 views

Spring Data Transformers.aliasToBean(AgentRecordDTO.class)

I want to use Hibernate Transformation with Spring Data. I have an entity AgentRecord with attributes as @Entity public class AgentRecord extends AbstractEntity<Long> { @ManyToOne ...
4
votes
0answers
304 views

transformer.setOutputProperty(OutputKeys.ENCODING, “UTF-8”) is NOT working

I have the following method to write an XMLDom to a stream: public void writeToOutputStream(Document fDoc, OutputStream out) throws Exception { fDoc.setXmlStandalone(true); DOMSource ...
1
vote
0answers
99 views

Java Transformer throws “Could not compile stylesheet” error but only in Netbeans IDE

I was trying to follow an example from here: http://docs.oracle.com/javase/tutorial/jaxp/xslt/transformingXML.html And if I run the example independent of the Netbeans IDE, it works. However, within ...
0
votes
1answer
89 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 ...
1
vote
1answer
79 views

Java XML Transformer replacing “\n” with a space

I'm using a Java Transformer to convert XML into HTML. When I display the output, everywhere I had a newline string literal delimiter of "\n" in a field, there's simply a space. The only suggestion ...
-2
votes
1answer
73 views

Connecting Oracle 11g in Powerplay Transformer 7.3 via ODBC

I am using Cognos Powerplay Transformer 7.3 and wants to connect Oracle 11g through ODBC, but i can not see the ODBC as a data source options, the options i see are : - Impromptu Query Definition - ...
1
vote
1answer
97 views

Change DOM parser to not use short notation for empty nodes

Is there anyway to change DOM Parser Empty notation from short to long form? I need <book></book> instead of book <book/> We have a third party XML reader which won't work ...
1
vote
1answer
84 views

Transformer object appends namespace automatically to child elements

In order to make some changes on XML file, I use the code below: public boolean run() throws Exception { XMLReader xr = new XMLFilterImpl(XMLReaderFactory.createXMLReader()) { public void ...
1
vote
1answer
38 views

Parsing Mixed Markup with MOXy, maybe using Transformers

Using MOXy 2.3.1, but could upgrade if it would help. I have the following XML: <myelement> text content <b>mixed</b> with tags </myelement> Which I would like to be stored ...
0
votes
2answers
384 views

Java XML file fail to write

Okay, I have a class createUser which is supposed to create an XML file to store data on a user. Problem is when I run it I'm getting this error > ERROR: '' > ...
1
vote
1answer
144 views

Transformer Java XML CDATA Duplicate Lines

I am using transformer in JDK 7 to write out some XML and I have in the CDATA a freemarker template as follows: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <fileExport ...
0
votes
0answers
107 views

Why is my NSManagedObject Subclass not using my transformer?

the variables names here are just for the questions sake, not how they are in code, sorry for poor naming conventions. I have an NSManagedObject Subclass that holds a transformable property ...
1
vote
2answers
918 views

Mule ESB JAXB XML To Object Transformer Better Way?

Mule 3.3 can automatically unmarshall an XML string to an object using JAXB given that: 1. you first register your jaxb annotated classes with spring. 2. there is a component that requires ...
0
votes
2answers
220 views

Java XML Transformer : Empty elements in long notation instead of short

I have created a conversion tool to add some information to an existing xml file. This is done by using DOM and the Transformer class. The output file will be processed by third party software. This ...
0
votes
0answers
331 views

Transformer#transform(Source, Result) throws FileNotFoundException?

I am trying to output my XML Document using Transformer.transform(Source, Result), but it does not export the Document, only throws a FileNotFoundException. I am trying to export it to ...
0
votes
1answer
124 views

pass <xsl:param> to <a href>

I try to pass parameter <xsl:param name="current_item" /> Before that I sent parameter as transformer.setParameter("current_item", "Ball"); But when I try to set this parameter as parameter ...
0
votes
0answers
63 views

Asus Transformer 101 remove paired bluetooth device

I have device (NXT Lego) which I renamed at one time. Now I seem to be unable to remove this from the List of Paired Devices. Apparently you have to turn BT off and on to remove unpaired devices!
0
votes
1answer
147 views

Vertex painter encounter error when loading vertex and edges from database

Im building simple family tree application and using Jung to draw the chart. So far I am able to draw and save the chart into embedded database using sqlitejdbc from zentus. I've yet create the ...
1
vote
0answers
40 views

Running ipython script using a new extenction

I am writing an IPython extension that defines a new shell transformer (see http://ipython.org/ipython-doc/dev/api/generated/IPython.core.prefilter.html#IPython.core.prefilter.PrefilterManager), and I ...
0
votes
1answer
1k views

MULE 3.2 - How to access Flow Session Property Values from a java component

This Question relates to Mule ESB 3.2. If I have read values from JMS, transform to JSON and store the values in my session like this: <message-properties-transformer scope="session" ...
-1
votes
3answers
880 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 ...
0
votes
0answers
256 views

Output CDATA section with java transformer

I have an org.w3c.dom.Document created from XML like <docElement xmlns="uri-myNamespace"> <element> </element> </docElement> I add a CDATA element by: String innerS ...
0
votes
1answer
457 views

HTML DOM Tree to String - Transformer NullPointerException

I'm trying to convert the content of an org.w3c.dom.Document object into a string. I get the Document object of the current page displayed in the JBrowser component. The most common way to convert a ...
0
votes
1answer
1k views

Mule custom transformer with

I'm having some trouble finding out how to create a custom transformer that can input and output a file in Mule 3.2. I have prototyped the code for the transformation and that works fine but I can't ...
2
votes
1answer
2k views

The “touchmove” event on android system: Transformer Prime

I am working on a Transformer Pad and developing a drawing plate. I use PhoneGap(javascript) to write the code instead of JAVA. But the touchmove event is quite weird. I think as I move my finger ...
0
votes
1answer
103 views

web.config transformer does nothing

I'm trying to use the web.config transformer, but it does nothing. Here is my last part of web.config: <system.serviceModel> <bindings> <basicHttpBinding> <binding ...
2
votes
1answer
4k views

Asus transformer is not visible through adb [closed]

I have a problem with adb on Windows 7 and Asus Transformer (ISC, 4.0.3) adb devices shows empty list. I've installed Asus PC Suit, USB debugging is switched on. On Linux everything works fine.
0
votes
2answers
3k views

Setting namespaces and prefixes in a Java DOM document

I'm trying to convert a ResulSet to an XML file. I've first used this example for the serialization. import org.w3c.dom.bootstrap.DOMImplementationRegistry; import org.w3c.dom.Document; import ...
0
votes
2answers
173 views

How to set org.apache.xalan.xsltc.trax.SmartTransformerFactoryImpl as transformer in JBoss AS 7.0.2 Managed server

I'm having a problem setting the org.apache.xalan.xsltc.trax.SmartTransformerFactoryImpl as the javax.xml.transform.TransformerFactory when using the JBoss AS 7.0.2 in domain mode. If I put the ...
2
votes
2answers
4k views

How to convert JAVA Object to JSON Efficiently..?

I am using Mule. I have a JAVA Object that is populated from my internal Class..It is actually a HashMap<String,Object>. Object can be anything..another HashMap, OR List etc ..Now i have to ...
0
votes
1answer
358 views

Writing entity references (quote,apostrophe) to xml file - java

I am writing a java program which writes an xml file as output. Now, there are certain node values in the xml which contain entity references like <, >, ' and ". Current output is something like ...
2
votes
1answer
547 views

Omitting XML Declaration when invoking Transformer with StAXResult

I would like to copy multiple XML nodes from a source XML file to a target file. Both source and target files are very large, so I will use StAX. Typically the file I'm trying to process looks as ...
3
votes
1answer
1k views

Spring Integration Get HTTP Outbound Gateway Response

I need to POST a REST service call and get the data it returns (all of this is with JSON). I have an outbound-gateway with its reply-channel as a chain, and the chain has one transformer. ...
0
votes
1answer
168 views

Android can't get result from standard camera intent

I'm trying to use the standard camera of the ASUS Transformer EE Tablet. I can open the camera and take a picture. But I'm not able to accept the taken picture. I can cancel or take a new picture. But ...
0
votes
5answers
841 views

Use Asus Transformer Prime as USB Debugger

I am thinking about buying the Asus Transformer Prime, to start developing on android. Currently I am borrowing a Motorola Xoom to develop, and that has a Micro USB port, that I can plug into, and use ...
0
votes
2answers
273 views

prevent java transformer from replacing

I have this XML file <test>&#13; &#xD; &lt;</test> and i am tranforming it with the java code below, the xslt file just makes a copy of the xml public class XMLTransform { ...
2
votes
0answers
97 views

HornetQ: Divert + Transformer class usage

I was looking forward to using a divert on HornetQ to divert messages on a given address to many other addresses. What I would like to do is add some additional properties on the message ONCE it gets ...
0
votes
0answers
403 views

Java Transformer, TransformerFactory messes up multiline xml comments

I'm having a bit of trouble using Transformer/TransformerFactory to update an existing XML file (on a Wowza server). It works great and updates correctly, but it makes a mess of multiline comments. ...
0
votes
1answer
359 views

How to suppress the xml element added by Transformer of javax.xml.transform.Transformer

I've been using the Java APIs to parse an XML file so I could add, remove, or update elements/attributes. Everything works the way I want, except that the Transformer object I'm using adds <?xml ...
0
votes
1answer
83 views

How to unit test on Customer Transformer implementation of Solr

How can I do unit test on Customer Transformer implementation of Solr ? Thanks
1
vote
0answers
483 views

Remapping the Asus Transformer keyboard. How to insert acute accent?

I am trying to change the keyboard dock layout to that of Icelandic standard keyboard using this guide : xda developers, however im having difficulties finding the acute accent ยด that is used to type ...
0
votes
1answer
2k views

Java 1.6: javax.xml.transform.Transformer refuses to indent xml strings which contain newlines

I need to be able to pretty print xml strings using Java APIs and have found multiple solutions for this both on the web and on this particular website. However despite multiple attempts to get this ...
1
vote
2answers
398 views

QCAR on ASUS Transformer (eee Pad)

I'm starting to develop an AR applcation and my development device is the one in the subject. This target runs Android 3.1. i covered all the steps needed to setup my environment and tried to run the ...

1 2