FileUpload fails at parseRequest

2008-04-10 Thread bombay55
Hi all, I am using FileUpload from apache.commons for the first time. I am using multipart/form-data with a servlet. I have tried everything exactly like the examples but for some reason, fail at fileItems = upload.parseRequest(req) and get the FileUploadException. The classpath include

Re: [SCXML] W3C specs compatibility and state transition issues

2008-04-10 Thread Rahul Akolkar
On Thu, Apr 10, 2008 at 8:30 PM, Ouyang, Landon - ES/RDR -Gil <[EMAIL PROTECTED]> wrote: > Apologize for the duplicate e-mail, I had to be schooled on the proper format > by Mr. Cooper. :) > > > I am a new user of Commons SCXML. I have two very basic questions: > > 1) How much of the W3C spec

Re: New user here

2008-04-10 Thread Rahul Akolkar
I'll reply to the other email, thanks for changing the subject :-) On Thu, Apr 10, 2008 at 8:11 PM, Ouyang, Landon - ES/RDR -Gil <[EMAIL PROTECTED]> wrote: > Hi, > > I am a new user of Commons SCXML. I have two very basic questions: > > > 1) How much of the W3C specs for SCXML is supported wi

[SCXML] W3C specs compatibility and state transition issues

2008-04-10 Thread Ouyang, Landon - ES/RDR -Gil
Apologize for the duplicate e-mail, I had to be schooled on the proper format by Mr. Cooper. :) I am a new user of Commons SCXML. I have two very basic questions: 1) How much of the W3C specs for SCXML is supported with Common SCXML? Are all of the tags recognized? 2) Basing my code

New user here

2008-04-10 Thread Ouyang, Landon - ES/RDR -Gil
Hi, I am a new user of Commons SCXML. I have two very basic questions: 1) How much of the W3C specs for SCXML is supported with Common SCXML? Are all of the tags recognized? 2) Basing my code off of the simple stopwatch example, I created a simple Java app that navigated across 10 s

Re: [Commons Configuratin]: Suppress exceptions about missing optional property files?

2008-04-10 Thread uma_rk
ConfigurationBuilder yields CombinedConfiguration. I have so far based my stuff on CompositeConfiguration. I do not see a type relationship (is-a) between the two. How do we migrate from CompositeConfiguration to CombinedConfiguration? What are the risks? Regards /Ur -- Original m

Re: [jxpath 1.2] Why does InfoSetUtil.booleanValue method handle strings in the manner that it does???

2008-04-10 Thread Matt Benson
--- Tom Muldoon <[EMAIL PROTECTED]> wrote: > Can anyone explain why the > InfoSetUtil.booleanValue(Object object) method > returns true when the object is a String if and only > if it is a non-zero length string? Here's a code > excerpt ... > > else if (object instanceof String) { >

[jxpath 1.2] Why does InfoSetUtil.booleanValue method handle strings in the manner that it does???

2008-04-10 Thread Tom Muldoon
Can anyone explain why the InfoSetUtil.booleanValue(Object object) method returns true when the object is a String if and only if it is a non-zero length string? Here's a code excerpt ... else if (object instanceof String) { return ((String) object).length() != 0; } I