Yes sir. Here is the form declaration: <form enctype="multipart/form-data" action="projectDocuments.do" method="post" name="projectDocuments"> -Matt ... point....
We finally got it working. Another guy in the office noticed that in the form bean, our file variable was set to a type string instead of FormFile. After...
Hi, I have a requirement for client side transformation in my application. Based on documentation , i changed stxx-pipelines.xml param tag to .. <param...
Hi Guys , I am having a very unusual situation , my XML example: <Tplate> <Call AccountNumber="" Date="" Numb="1" name="CallDetail1"></Call> <Comments> ...
Hi Guys , Can someone point me to the class that copies the saved DOM , into a single DOM ? My guess is that while copying the CDATASection , it gets converted...
Stxx takes the saved dom and serializes it as SAX events to be transformed later. The class that actually does this is DefaultSAXBuilder and the serialization...
Hi Don , Thanks for the tip , by the way , did you experience the same problem ?? Is it an actual bug , or is it me ?? thanks kpt ... transformed ... find out....
If I had to guess, I'd say somewhere in the SAX pipeline, a stage only implemented ContentHandler and not LexicalHandler, which would support CDATA node,...
Hi Don , Before we both get on to looking into it , can we make sure we actually have an issue ? did you actually try it out ?? thanks kpt ... problem ?? ... ...
Doesn't look like that : class :AbstractSAXFilter : public void startCDATA() throws SAXException { if (lexicalHandler != null) lexicalHandler.startCDATA(); } ...
I dont see any xml when i did "view source" , instead i see all html source code. Is there any example that i can look for client side transformation .. Pash ...
The stxx example app has an example that uses client side transformation. It looks for Internet Explorer, and if found, sends the xml w/ a link to the xsl. Don...
i used the stxx example to implement client side transformation, but still doesnt work ..i did view source and see html source .. my config file is as below...
Dear All, This is Amit from Global Options,Mumbai. We are into recruitment of IT professionals. We have urgent openings for the following professionals for...
Nope, I haven't run into it, however, my XML comes from a persistence layer so it is clean elements and attributes. Can you give me a test app (or better yet...
hello everyone. I have a big problem. i have an element <produitgruppe > . in <produitgruppe > there are elements < produced >. in < produced > there is...
how do i get a client-side transform ? Pash mrdon@... wrote: Get rid of the test for IE and see if it you get a client-side transform. Don ... Yahoo!...
Thanks, sorry if I'd already asked this, the problem only happens when the XML is transformed by this stylesheet? The xml and cdata section is displayed...
Hi Don , Here is my understanding of the situation : Each time a saveDocument is done you are storing it an ArrayList , later inorder to club all the...
Here is what I have done : I have modified the example.xml and the intro.xsl , to include the CDATA section and to test if the CDATA section works . These...