RE: Is there a MultiPartStream class that able to parse unicode request?Thanks.

2005-07-18 Thread Guy Katz
com.oreilly.servlet package @ www.servlets.com -Original Message- From: navid shakooian [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 7:50 AM To: commons-user@jakarta.apache.org Subject: Is there a MultiPartStream class that able to parse unicode request?Thanks. Hi , I need a

Re: [DBCP] Unable to create and use a Connection Pool

2005-07-18 Thread Dirk Verbeeck
I always use a different global name then the local one, mayby thats the problem? Otherwise your configuration looks fine to me. Mayby you can try to first put the resource definition into the context and put the context into the server.xml If that works then try to go back to this

[Jelly/JEXL] String concatenation

2005-07-18 Thread Grant Ingersoll
Hi, I would like to dynamically construct a String and for the life of me can't figure out how to concatenate two strings together. Would like to do something like (in Maven, btw): j:set var=classPath value=/ j:forEach var=lib items=${pom.artifacts} j:set var=dep

Re: [Jelly/JEXL] String concatenation

2005-07-18 Thread Grant Ingersoll
One possible way I found, to answer my own question: j:set var=classPath value=./conf / j:forEach var=lib items=${pom.artifacts} j:set var=dep value=${lib.dependency}/ j:if test=${dep.type =='jar'} ant:copy todir=${delivery.home.lib}

[JXPath1.2] jar with jdk1.3?

2005-07-18 Thread Naveen
Hello all, first of all let me say that JXPath is a really cool piece of software - that's why we decided to use it ;) I had a quick question . I recently downloded jxpath1.2 jar and found that it was built with jdk1.4. can i use this jar with jdk1.3 and wl6.1 environment? I was using the

Re: [Jelly/JEXL] String concatenation

2005-07-18 Thread J.Enrique Ruiz
Try this: j:set var=classPath value=${classPath}./lib/${dep.artifactId}.jar/ Hi, I would like to dynamically construct a String and for the life of me can't figure out how to concatenate two strings together. Would like to do something like (in Maven, btw): j:set var=classPath value=/

Re: [jelly] Still have schema validation problems

2005-07-18 Thread Adrian Herscu
Thanks for your reply, Paul. Moving the xsi namespace declaration will not help me -- I need to load those XML documents and validate them at build time. I tried to use the parse tag: jxml:parse var=classDocument xml=${classFileURL} / core:set var=validFlag

RE: [JXPath1.2] jar with jdk1.3?

2005-07-18 Thread Alfredo Ledezma Melendez
Hello: AFAIK is not possible. Generally you can't use a jar, war or ear built on a newer version with an old one. Regards, Alfredo Ledezma Meléndez. Gerencia de Sistemas CRM Consultor Externo de Sistemas de Atención a Clientes RadioMovil DIPSA, S.

RE: [JXPath1.2] jar with jdk1.3?

2005-07-18 Thread Simon Kitching
On Mon, 2005-07-18 at 18:25 -0500, Alfredo Ledezma Melendez wrote: Hello: AFAIK is not possible. Generally you can't use a jar, war or ear built on a newer version with an old one. This is not necessarily the case. The java 1.4 compiler will generate class files that are compatible with

RE: [JXPath1.2] jar with jdk1.3?

2005-07-18 Thread Naveen
Thanks a lot to everyone the jar indeed is compatabile. Specal thnks to Dmitri for his reply. --- Simon Kitching [EMAIL PROTECTED] wrote: On Mon, 2005-07-18 at 18:25 -0500, Alfredo Ledezma Melendez wrote: Hello: AFAIK is not possible. Generally you can't use a jar, war or ear

[Configuration] XMLConfiguration getFile() throws nullpointerexception

2005-07-18 Thread Mi Zhang
Hi, I am using commons-configuration-20050414 nightly build. I am getting nullpointerexception when I tried to retrieve the file, e.g. XMLConfiguration frameworkConfig = new XMLConfiguration(); frameworkConfig.load(myconfig.xml); File file = frameworkConfig.getFile(); the line

File Upload problem

2005-07-18 Thread Latha . Kamatchi
Hi experts In my application, I use commons-fileupload-1.0.jar for file upload. In the Jsp page, I use the html:form action=EventDetailsForScheduler enctype=multipart/form-data method=POST. and a file for field html:file name=eventdetailsform property=imageFile size=40/ In the Formbean

Re: [Configuration] XMLConfiguration getFile() throws nullpointerexception

2005-07-18 Thread Oliver Heger
This seems to be a bug. Could you please open a bugzilla ticket for this and provide some additional information (the complete stack trace, from where you load the config file [class path, absolute or relative path])? Thanks. Oliver Mi Zhang wrote: Hi, I am using