[Resin-interest] Cannot Start Resin on Vista

2009-09-01 Thread Rom Sok
Hi, I am new to it so apologize for the newbie question. I have Windows Vista. I installed JRE & JDK 6. I downloaded Resin. I am running *resin start* and getting the following error: *Resin/4.0.1 can't start -server '' for watchdog at 127.0.0.1:6600. WatchdogClient[]: watchdog start failed b

[Resin-interest] Integrating Resin with NetBeans

2009-09-17 Thread Rom Sok
Hi, I am trying to set up NetBeans to build a Web App, and it requires specifying the server I will be using. It is a shame that I can't set it up generically without tying it to a particular server, but anyway, I am using Resin, and cannot find it in the list of servers NetBeans gives. Could some

[Resin-interest] Compiling Servlets in Eclipse Breaks the app

2009-09-18 Thread Rom Sok
Hi, I ran into a problem. I created an Eclipse project and I use it as the deploy directory as well in Resin, but I am also using some code that was compiled a long time ago not by me. It works fine until I attempt to compile the servlet classes in Eclipse - then I get notices from Resin on the co

Re: [Resin-interest] Compiling Servlets in Eclipse Breaks the app

2009-09-18 Thread Rom Sok
] com.caucho.config.LineConfigException: /C:/resin/conf/app-default.xml:49: `romsok_srv' is not a known servlet. Servlets belong in the classpath, often in WEB-INF/classes.* On Fri, Sep 18, 2009 at 5:24 PM, Scott Ferguson wrote: > > On Sep 18, 2009, at 1:36 PM, Rom Sok wrote: > > > Hi, > > > > I

Re: [Resin-interest] Compiling Servlets in Eclipse Breaks the app

2009-09-21 Thread Rom Sok
Actually the response from S! seems to have solved the problem. I was compiling with 1.6 - reduced it to 1.5 and it works just fine. Thank you all for your input. On Mon, Sep 21, 2009 at 10:01 AM, Michael Ludwig wrote: > Rom Sok schrieb: > > > Here is the error from the console: &

[Resin-interest] Noob question: Do I have to restart?

2009-09-22 Thread Rom Sok
Hi, Sorry about the newbie question, do I have to restart Resin every time I drop a new version of some file into the deployment directory? like say web.xml? Is there a way to just reload the app without doing the whole "Stop" - > "Quit" -> httpd.exe all over again? Also, is that what is called h

Re: [Resin-interest] Noob question: Do I have to restart?

2009-09-22 Thread Rom Sok
t; If you change JSP files they are picked up immediately, no reload > necessary. > > Jeff > > On Tue, Sep 22, 2009 at 7:23 AM, Rom Sok wrote: > > Hi, > > > > Sorry about the newbie question, do I have to restart Resin every time I > > drop a new version of so

[Resin-interest] character encoding

2009-09-23 Thread Rom Sok
Hi, Is there a way to force URI CHARACTER encoding to UTF-8? Thanks ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mailman/listinfo/resin-interest

Re: [Resin-interest] character encoding

2009-09-24 Thread Rom Sok
No, I mean in the request... on the java side. On Wed, Sep 23, 2009 at 6:07 PM, Rick Mann wrote: > In a JSP? > > <%@ page pageEncoding="UTF-8" %> > > On Sep 23, 2009, at 12:14:35, Rom Sok wrote: > > > Hi, > > > > Is there a way to f

Re: [Resin-interest] character encoding

2009-09-24 Thread Rom Sok
make sure character encoding is always consistent is set the character encoding in the server configuration for URL-decoding GET request parameters. The equivalent in Tomcat configuration is ** Is there an equivalent in Resin? Thanks. On Thu, Sep 24, 2009 at 10:01 AM, Michael Ludwig wrote:

Re: [Resin-interest] character encoding

2009-09-24 Thread Rom Sok
Thanks, Where does utf-8 go? In resin.conf? If so, what's the nesting? I.e. inside what tags is it nested. Thank you, R.S. On Thu, Sep 24, 2009 at 12:03 PM, Scott Ferguson wrote: > > On Sep 24, 2009, at 7:59 AM, Rom Sok wrote: > > Sorry, let's try this again: &

Re: [Resin-interest] character encoding

2009-09-24 Thread Rom Sok
Sorry, what do you mean by contextual? Does it mean I am required to run a cluster to use it? Not with a standalone instance? On Thu, Sep 24, 2009 at 12:16 PM, Scott Ferguson wrote: > > On Sep 24, 2009, at 9:13 AM, Rom Sok wrote: > > Thanks, > > Where does utf-8 go? In &

[Resin-interest] java.lang.OutOfMemoryError: Java heap space

2009-09-30 Thread Rom Sok
Hi, I know this is probably a rookie mistake... I got the *java.lang.OutOfMemoryError: Java heap space* I also understand that I need to pass parameters when I start Java to increase the heap size. The problem is that I am not sure where to do that: I have Windows Vista and Resin 3.0.28. Thank

Re: [Resin-interest] java.lang.OutOfMemoryError: Java heap space

2009-09-30 Thread Rom Sok
30, 2009 at 12:44 PM, Scott Ferguson wrote: > > On Sep 30, 2009, at 9:14 AM, Rom Sok wrote: > > Hi, > > I know this is probably a rookie mistake... > > I got the *java.lang.OutOfMemoryError: Java heap space* > > I also understand that I need to pass parameters when

Re: [Resin-interest] Integrating Resin with NetBeans

2009-09-30 Thread Rom Sok
Thanks, I installed the Resin Eclipse plug-in. I am now running into a small problem - the plug-in supports resin 3.1 and up. I've been using 3.0.28 so far, so I decided to up my Resin version. I copied app-default.xml and resin.conf from the 3.0.28 to the 3.1.9. I started the server from Eclipse

[Resin-interest] NoSuchMethodError

2009-10-01 Thread Rom Sok
Hi, I am trying to deploy my application on Resin 3.1.9 and when I access my app at localhost:8080/ I get the following error on the Resin console: [10:20:58.631] java.lang.NoSuchMethodError: com.caucho.jsp.JavaPage.addDepend(Ljava/util/ArrayList;L com/caucho/make/PersistentDependency;)V [10:20:

Re: [Resin-interest] Integrating Resin with NetBeans

2009-10-01 Thread Rom Sok
Also, I managed to create an instance of Resin 3.1 in Eclipse, But when I try to start it I get the following error: * Error: no 'server' JVM at 'C:\Program Files(x86)\Java\jre6\bin\server\jvm.dll'.* On Wed, Sep 30, 2009 at 3:30 PM, Rom Sok wrote: > Thanks, > >

Re: [Resin-interest] Integrating Resin with NetBeans

2009-10-01 Thread Rom Sok
JRE and looks like it doesn't include the server JVM. > Resin 3.1 now requires the server JVM. If you're doing development, > you're going to need the JDK anyway, so I'm guessing you probably > already have it and just need to use that one instead. > > Take

Re: [Resin-interest] NoSuchMethodError

2009-10-01 Thread Rom Sok
ure the WEB-INF/work directory is cleared > so JSPs can be compiled by the new Resin version. > > > > - Original Message - > Subject: [Resin-interest] NoSuchMethodError > Date: Thu, 1 Oct 2009 10:25:33 -0400 > From: Rom Sok > > Hi, > > I am trying to

[Resin-interest] Resin 3.1.9 - on Eclipse

2009-10-06 Thread Rom Sok
Hi, I just installed the Resin plug-in into Galileo. I set up a resin 3.1.9 server and I regularly start it up from Eclipse. Everything looks fine, but I get the following exceptions in the Eclipse console when I start it up: *Context initialization failed** **[17:08:42.377] org.springframework.b

[Resin-interest] Oracle driver issue

2010-01-08 Thread Rom Sok
Hi, I am using Resin 3.1.9 on Vista. This is my development machine and it is experiencing an issue that is not showing up in other environments. I am getting the following error: *java.sql.SQLException: Bigger type length than Maximum at oracle.jdbc.driver.DatabaseError.throwSqlException(D