Any Xalan gurus in Hong Kong?

2002-04-23 Thread Robert Lowe
If you are a Xalan guru (preferably developer) in Hong Kong, the Hong Kong Java User Group (http://www.hkjug.org/) would like to invite you to give a presentation about the Xalan project. If you're interested, drop me a line (rmlowe-at-rmlowe-dot-com).Best,Robert LoweProgram DirectorHong Ko

cvs commit: xml-xalan/c/src Makefile.in

2002-04-23 Thread dbertoni
dbertoni02/04/23 21:38:26 Modified:c/srcMakefile.in Log: Added link option for HP to use SHLIB_PATH. Revision ChangesPath 1.91 +1 -1 xml-xalan/c/src/Makefile.in Index: Makefile.in ===

cvs commit: xml-xalan/c/src/PlatformSupport XalanDOMStringAllocator.hpp

2002-04-23 Thread dbertoni
dbertoni02/04/23 21:08:06 Modified:c/src/PlatformSupport XalanDOMStringAllocator.hpp Log: Fixed preprocessor directive. Revision ChangesPath 1.2 +1 -1 xml-xalan/c/src/PlatformSupport/XalanDOMStringAllocator.hpp Index: XalanDOMStringAllocator.hpp ===

DO NOT REPLY [Bug 6833] - ArrayIndexOutOfBoundsException

2002-04-23 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 6833] - ArrayIndexOutOfBoundsException

2002-04-23 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util ErrorMessages.java

2002-04-23 Thread santiagopg
santiagopg02/04/23 11:56:53 Modified:java/src/org/apache/xalan/xsltc/compiler/util Tag: jaxp-ri-1_2_0-fcs-branch ErrorMessages.java Log: Fixed command line synopsis. Revision ChangesPath No revision No r

cvs commit: xml-xalan/java build.xml

2002-04-23 Thread tmiller
tmiller 02/04/23 11:08:08 Modified:java Tag: jaxp-ri-1_2_0-fcs-branch build.xml Log: Added new target 'xsltc.fcompile' for fast compile- will not recompile JLex JCUP stuff. For complete recompilations, use xsltc.compile. Revision ChangesPath No re

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime TextOutput.java

2002-04-23 Thread tmiller
tmiller 02/04/23 11:04:24 Modified:java/src/org/apache/xalan/xsltc/runtime Tag: jaxp-ri-1_2_0-fcs-branch TextOutput.java Log: escaped character handling improved by Santiago, again Revision ChangesPath No revision No

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime TextOutput.java

2002-04-23 Thread tmiller
tmiller 02/04/23 11:00:52 Modified:java/src/org/apache/xalan/xsltc/runtime Tag: jaxp-ri-1_2_0-fcs-branch TextOutput.java Log: escaped character handling improved by Santiago Revision ChangesPath No revision No

RE: XalanParsedSource - XalanDocument

2002-04-23 Thread Avula, Raj
Thanks Dave. Raj.. > -Original Message- > From: David N Bertoni/Cambridge/IBM [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 9:40 AM > To: [EMAIL PROTECTED] > Subject: RE: XalanParsedSource - XalanDocument > > > We don't support getChildNodes(), we only support getFir

RE: XalanParsedSource - XalanDocument

2002-04-23 Thread David N Bertoni/Cambridge/IBM
We don't support getChildNodes(), we only support getFirstChild(), getNextSibling(), etc. That's much more efficient, so just restructure your code accordingly. Dave |-+---> | | "Avula, Raj"| | | | |

RE: XalanParsedSource - XalanDocument

2002-04-23 Thread Avula, Raj
I did that. But getChildNodes() method is returning NULL to me XalanSourceTreeDocument::getChildNodes() const { throw XalanDOMException(XalanDOMException::NOT_SUPPORTED_ERR); // Dummy return value... return 0; }. Above method is throwing the exception. Here is my code

Re: XalanParsedSource - XalanDocument

2002-04-23 Thread David N Bertoni/Cambridge/IBM
Get the XalanDocument instance from the parsed source: /** * Get a pointer to the XalanDocument instance for the source * document * * @return A pointer to a XalanDocument instance. */ virtual XalanDocument* getDocument() const = 0; Dave |

[GUMP] Build Failure - xml-xalan2-smoketest

2002-04-23 Thread Sam Ruby
akarta/xml-xalan/test/java/build/xalan-smoketest-20020423.tar [tar] Entry: xml-xalan/test/smoketest/api/SAXTransformerFactoryAPITest/trax/sax/SAXTransformerFactoryAPITest_1.out longer than 100 characters. [tar] Resulting tar file can only be processed successfully by GNU compatib

Re: Transformer: process failed:java.lang.ArrayIndexOutOfBoundsException:

2002-04-23 Thread Ralf Steppacher
> We'd really need to see the full stack trace. You should be able to > add an exptn.printStackTrace() somewhere to get the full trace. A > copy of the stylesheet might help too. I attached the stylesheets and the stacktrace. Thank you! Ralf System Output: javax.xml.transform.Transformer

Re: locate an element with certain Id attribute

2002-04-23 Thread Pavani Mukthipudi
You can use doc.getElementById("targetID"); This returns the Element whose ID is "targetID". If no such element exists, returns null. -Pavani Shang, Crystal wrote : > > Is there a way or an API in Xerces to locate an element in a document with > certain Id attribute? E.g, given the following