Re: connection pool in g-mo 2.1

2008-04-05 Thread Mohammad Shamsi
hi again, after adding database plane, my application was deployed successfully. but when i call an ejb method for delete records i got this exception : *javax.ejb.EJBException: The bean encountered a non-application exception.; nested exception is:

Re: connection pool in g-mo 2.1

2008-04-05 Thread Mohammad Shamsi
this error is related to my datasource. if i comment my database related code. ejb methods call successfully done. any idea please ? On Fri, Apr 4, 2008 at 10:09 PM, Mohammad Shamsi [EMAIL PROTECTED] wrote: hi again, after adding database plane, my application was deployed successfully.

Re: pre-compiled JSPs throw exceptions

2008-04-05 Thread Łukasz Budnik
Hi Kevan, On 04/04/2008, Kevan Miller [EMAIL PROTECTED] wrote: I have some fuzzy memory of somebody reporting the same slow JSP compilation performance problem, trying it myself, and not seeing the problem. I couldn't find anything searching back through email, though (as i say it's a fuzzy

[Solution] Ant and pre-compiled JSPs

2008-04-05 Thread Łukasz Budnik
Hi All, If you use Ant to build your project you can use described below solution to pre-compile JSPs. It's extremely useful when you use complex JSP pages, for example pages with MyFaces + Tomahawk + Tomahawk Sandbox load much faster! First of all, you cannot use standard JspC task as

Re: connection pool in g-mo 2.1

2008-04-05 Thread David Jencks
Can you determine the stack trace for the nested PersistenceException and figure out which line of the deleteAll method is causing it? Without this information it will be difficult to proceed. Do any jpa operations succeed? Are there any other errors in the geronimo log? thanks david

Re: JSP Charset encoding issue

2008-04-05 Thread David Jencks
This area is pretty much a mystery wrapped in an enigma to me, but I found http://www.w3.org/International/O-HTTP-charset which indicates jsps should set the charset using a page directive %@ page contentType=text/html; charset=UTF-8 % Do you have some indication that just setting the xml

Re: pre-compiled JSPs throw exceptions

2008-04-05 Thread Kevan Miller
On Apr 5, 2008, at 6:30 AM, Łukasz Budnik wrote: Hi Kevan, On 04/04/2008, Kevan Miller [EMAIL PROTECTED] wrote: I have some fuzzy memory of somebody reporting the same slow JSP compilation performance problem, trying it myself, and not seeing the problem. I couldn't find anything searching

Re: [Solution] Ant and pre-compiled JSPs

2008-04-05 Thread Kevan Miller
On Apr 5, 2008, at 9:24 AM, Łukasz Budnik wrote: Hi All, If you use Ant to build your project you can use described below solution to pre-compile JSPs. It's extremely useful when you use complex JSP pages, for example pages with MyFaces + Tomahawk + Tomahawk Sandbox load much faster! First

Re: JSP Charset encoding issue

2008-04-05 Thread Bill Brown
Greetings David: Thanks for finding that information. That fixed the issue for the http ContentType header (posted below). I didn't digg too much but for an indication that just setting the xml content encoding should affect the http header charset. What I found was this article