Re: See You In Amsterdam?

2007-02-10 Thread Sean Schofield

Matthias

I ran it by my wife about stopping in Germany but we both feel there's
not enough time and we would be rushed (we only have a week since the
little one will staying behind.)  We would rather go to Germany as
part of a separate trip and come see you then!

We'll be arriving in Amsterdam on Saturday night so I'd love to try
and get together with you before the conference starts.

Email me offlist and we can make a plan.

Sean

On 2/2/07, Matthias Wessendorf [EMAIL PROTECTED] wrote:

how long are you staying in Europe, Sean ?
wanna see Germany ?

On 2/2/07, Sean Schofield [EMAIL PROTECTED] wrote:
 Craig,

 My wife and I are both going to be there.  We're also planning on
 arriving early.

 Sean

 On 1/26/07, Craig McClanahan [EMAIL PROTECTED] wrote:
  My general session on Shale got accepted for ApacheCon Europe 2007 ... it's
  Friday May 4 at 10h30.  Hope to see anyone else who is coming there!  And
  I'm planning on coming in early enough for Queen's Day on Monday.  Now I
  just need to go find an orange shirt ...
 
  Craig
 
 



--
Matthias Wessendorf
http://tinyurl.com/fmywh

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com



Re: Problem using shale-tiger with OC4J

2007-02-10 Thread Craig McClanahan

On 2/10/07, Gary VanMatre [EMAIL PROTECTED] wrote:


I ran into a funky problem using the shale-tiger library with embedded
OC4J  10.1.3.1.1.  The class loader doesn't like paths that start with the
forward slash.  It took me some work to find the problem since the container
eats the exception raised in the servlet context listener.  The first
exception is raised when trying to scan the web classes /WEB-INF/lib/.  I
found a workaround by specifying the package(s) to scan using the context
param in the web.xml.

context-param
  param-nameorg.apache.shale.tiger.SCAN_PACKAGES/param-name
  param-valueus/co/cde/ccat/view/backing/param-value
/context-param


Notice that my package doesn't start with a forward slash.  For some
reason the starting forward slash throws off the class loader?  Is this an
older spec thing or just a bug?



Hmm ... that seems odd.

There is a very annoying inconsistency between Class.getResource() and
ClassLoader.getResource() ... the former wants a leading slash, but the
latter does not.  ServletContext.getResource() does want a slash ... so
maybe it has something to do with using the wrong getResource() call
somewhere?  Will need to look.

Craig

Oh well, thankfully I found a simple workaround and the tiger library

coupled with the view library seems to work with the ADF Faces
Components.  Although I've found them inferior to Trinidad ;-)


Gary