Re: [Resin-interest] Re sin 3.15, Groovy and hotswap

2008-10-14 Thread Daniel López
Hi there,
The same thing is happening to me, and the combined with the Ant Groovyc 
task not checking if the file has been modified or not and always 
recompiling, it's quite a pain.

However, if I'm not mistaken, I think hotswapping is enabled by Resin 
but provided by Java itself, so we might have to look for the 
cause/solution at the JDK level.

S!
D.

bumzee escribió:
 By ruby, I assume you mean Groovy and no, the Groovy classes don't implement
 the servlet API.  They are not Groovlets and the context restarts when a
 change is made to a groovy class even when all of the method signatures stay
 the same.  
 
 It restarts the context no matter what the change
 
 Angel, Eric wrote:
 I'm not all that familiar with Ruby, but do your Ruby classes implement
 the Servlet api somehow?  Usually, the context has to restart when your
 servlets change signature. 

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of bumzee
 Sent: Monday, October 13, 2008 7:57 AM
 To: resin-interest@caucho.com
 Subject: [Resin-interest] Re sin 3.15, Groovy and hotswap


 I use intellij 7.0.4 as my ide ,  resin 3.15, groovy 1.5.1   JDK 1.5
 and whether i use the resin plugin or start resin stand alone w/remote
 debugging enabled, if I modify any groovy class the context restarts.
 However, if I modify a java class it's changes are reloaded w/o a
 context restart.  

 Is there anyway to get hotswap to work w/groovy classes the same as it
 does for java classes ?


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] Re sin And Groovy

2008-10-14 Thread Ryan Vanderwerf
I do, but I compile all my groovy code into classes with Ant and embed them in 
our .war file deployment (We're mostly Java). I haven't tried to run groovy 
scripts directly like you mention - I believe I did get a demo of grails going 
at one point, but it was probably 3.1.3.

Ryan
- Original Message -
From: bumzee [EMAIL PROTECTED]
To: resin-interest@caucho.com
Sent: Tuesday, October 14, 2008 11:15:12 AM GMT -06:00 US/Canada Central
Subject: [Resin-interest] Re sin And Groovy


Is anyone successfully using Groovy with Resin ?  
What does your resin.conf look like ?

This is on the resin website, but it doesn't work for me in 3.1.5.
When it gets to a groovy file the compilation just stops or times out.


resin.conf
  web-app-default
 class-loader
   compiling-loader path=WEB-INF/classes
 compiler=groovyc
 source-extension=.groovy/
  /class-loader
  /web-app-default


-- 
View this message in context: 
http://www.nabble.com/Resin-And-Groovy-tp19976910p19976910.html
Sent from the Resin mailing list archive at Nabble.com.



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] Re sin And Groovy

2008-10-14 Thread bumzee

Yeah, it works for me too all pre-compiled, but I'm trying to get a better
development environment.
Resin will compile your java classes and reload changes and supposedly do
this with groovy too, but I've not been able to get it to work.


bumzee wrote:
 
 Is anyone successfully using Groovy with Resin ?  
 What does your resin.conf look like ?
 
 This is on the resin website, but it doesn't work for me in 3.1.5.
 When it gets to a groovy file the compilation just stops or times out.
 
 
 resin.conf
   web-app-default
  class-loader
compiling-loader path=WEB-INF/classes
  compiler=groovyc
  source-extension=.groovy/
   /class-loader
   /web-app-default
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Resin-And-Groovy-tp19976910p19977195.html
Sent from the Resin mailing list archive at Nabble.com.



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] Resin inside VMWare Player

2008-10-14 Thread Michael Prescott
I've installed Resin 3.2.0 in a minimal CentOS running inside VMWare Player
2.5, but I can't hit the running Resin in the VM from the host machine.

The VM is running in 'Bridged' mode, so it grabs a DHCP-assigned IP address
for the local LAN.  I can SSH into the VM through that IP address.  I can
also wget content from resin from within the VM, so resin is clearly
running.

Is there anything in the default resin.xml that would cause this?  All of
the address attributes look okay.

Any ideas appreciated!

Regards,

Michael
___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] Resin inside VMWare Player

2008-10-14 Thread Martin Crundall
you checked all the obvious stuff like iptables config, etc.?  I use
vmware ws for resin dev, running FC6.  works good.

Michael Prescott wrote:
 I've installed Resin 3.2.0 in a minimal CentOS running inside VMWare
 Player 2.5, but I can't hit the running Resin in the VM from the host
 machine.

 The VM is running in 'Bridged' mode, so it grabs a DHCP-assigned IP
 address for the local LAN.  I can SSH into the VM through that IP
 address.  I can also wget content from resin from within the VM, so
 resin is clearly running.

 Is there anything in the default resin.xml that would cause this?  All
 of the address attributes look okay.

 Any ideas appreciated!

 Regards,

 Michael
 

 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest
   



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] Re sin And Groovy

2008-10-14 Thread bumzee

Is anyone successfully using Groovy with Resin ?  
What does your resin.conf look like ?

This is on the resin website, but it doesn't work for me in 3.1.5.
When it gets to a groovy file the compilation just stops or times out.


resin.conf
  web-app-default
 class-loader
   compiling-loader path=WEB-INF/classes
 compiler=groovyc
 source-extension=.groovy/
  /class-loader
  /web-app-default


-- 
View this message in context: 
http://www.nabble.com/Resin-And-Groovy-tp19976910p19976910.html
Sent from the Resin mailing list archive at Nabble.com.



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] Resin inside VMWare Player

2008-10-14 Thread Michael Prescott
No, of course not!  I come from the world of Windows, where servers are an
implied donation to the botnet community.  Closed source, open ports. :-)

Thanks for the tip, that was the problem.

Michael

On Tue, Oct 14, 2008 at 4:56 PM, Martin Crundall [EMAIL PROTECTED]wrote:

 you checked all the obvious stuff like iptables config, etc.?  I use
 vmware ws for resin dev, running FC6.  works good.

 Michael Prescott wrote:
  I've installed Resin 3.2.0 in a minimal CentOS running inside VMWare
  Player 2.5, but I can't hit the running Resin in the VM from the host
  machine.
 
  The VM is running in 'Bridged' mode, so it grabs a DHCP-assigned IP
  address for the local LAN.  I can SSH into the VM through that IP
  address.  I can also wget content from resin from within the VM, so
  resin is clearly running.
 
  Is there anything in the default resin.xml that would cause this?  All
  of the address attributes look okay.
 
  Any ideas appreciated!
 
  Regards,
 
  Michael
  
 
  ___
  resin-interest mailing list
  resin-interest@caucho.com
  http://maillist.caucho.com/mailman/listinfo/resin-interest
 



 ___
 resin-interest mailing list
 resin-interest@caucho.com
 http://maillist.caucho.com/mailman/listinfo/resin-interest

___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] [Resin 0002988]: OpenSSL timeout

2008-10-14 Thread Matt Pangaro
Since it's not marked on the bug in Mantis, and I can't remember, was 
this issue found in the 3.0.x tree? If so, does it affect all versions?

Thanks,
Matt

[EMAIL PROTECTED] wrote:
 The following issue has been CLOSED 
 == 
 http://bugs.caucho.com/view.php?id=2988 
 == 
 Reported By:ferg
 Assigned To:ferg
 == 
 Project:Resin
 Issue ID:   2988
 Category:   
 Reproducibility:always
 Severity:   minor
 Priority:   normal
 Status: closed
 Resolution: fixed
 Fixed in Version:   3.2.1
 == 
 Date Submitted: 10-03-2008 09:34 PDT
 Last Modified:  10-13-2008 10:31 PDT
 == 
 Summary:OpenSSL timeout
 Description: 
 (rep by Tom Hintz)



___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest