From: Masoud V. <ma...@gm...> - 2015-12-30 15:03:58
|
Hi all, I am programming a module with java for extensions. My Method works with two String argument. in fact, I read two xml documents (in XQuery Side) and then pass them as string serialized to method. but when the documents are very long, the java process will be crash! by searching, I noticed the java limitation for String data type length! therefor, I decided to write a method with two org.w3c.dom.Document datatype argument and pass Document to it instead. how can I pass doc() xquery result to Java and convert in to Convert to org.w3c.dom.Document? thanks. |