Re: [Resin-interest] Startup differences between 3.0.23 and 3.1.0

2007-03-12 Thread Scott Ferguson

On Mar 12, 2007, at 9:02 AM, Jose Quinteiro wrote:

> Those are passed inside a configuration tag now:
>
> http://www.caucho.com/resin-3.1/doc/server-tags.xtp#jvm-arg
>
> I guess the watchdog uses those parameters to launch Java with the
> appropriate args. I don't know if you can control the Java args to the
> watchdog itself.  I don't see anything encouraging here:
>
> http://www.caucho.com/resin-3.1/doc/server-tags.xtp#watchdog-arg

The watchdog-arg add a command-line argument to the watchdog process  
itself.

Although, since the watchdog doesn't do much, it's only really useful  
if you're adding something like remote JMX.  There's no need to set  
any memory values for the watchdog.

-- Scott

>
> HTH,
> Jose.
>
> John Steel wrote:
>> As a longtime resin user we have built up some scripts to control
>> running instances, some of which fail with 3.1.0.
>> Specifically, in 3.0.23
>>
>>  - in httpd.sh the args= isn't picked up, we used args="-Xmn100M
>> -Xms500M -Xmx500M -J-Duser.timezone=Europe/London"
>>  - a startup script (restart-a.sh) just has this line
>> $RESIN_HOME/bin/httpd.sh -conf conf/resin.conf -pid resin-a.pid  
>> restart
>> but 3.1.0 complains about the pid
>>
>> Pointers gratefully received, Thanks.
>>
>
>
> ___
> 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] Startup differences between 3.0.23 and 3.1.0

2007-03-12 Thread Jose Quinteiro
Those are passed inside a configuration tag now:

http://www.caucho.com/resin-3.1/doc/server-tags.xtp#jvm-arg

I guess the watchdog uses those parameters to launch Java with the 
appropriate args. I don't know if you can control the Java args to the 
watchdog itself.  I don't see anything encouraging here:

http://www.caucho.com/resin-3.1/doc/server-tags.xtp#watchdog-arg

HTH,
Jose.

John Steel wrote:
> As a longtime resin user we have built up some scripts to control 
> running instances, some of which fail with 3.1.0.
> Specifically, in 3.0.23
> 
>  - in httpd.sh the args= isn't picked up, we used args="-Xmn100M 
> -Xms500M -Xmx500M -J-Duser.timezone=Europe/London"
>  - a startup script (restart-a.sh) just has this line 
> $RESIN_HOME/bin/httpd.sh -conf conf/resin.conf -pid resin-a.pid restart 
> but 3.1.0 complains about the pid
> 
> Pointers gratefully received, Thanks.
> 


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


[Resin-interest] Startup differences between 3.0.23 and 3.1.0

2007-03-12 Thread John Steel
As a longtime resin user we have built up some scripts to control 
running instances, some of which fail with 3.1.0.
Specifically, in 3.0.23

 - in httpd.sh the args= isn't picked up, we used args="-Xmn100M 
-Xms500M -Xmx500M -J-Duser.timezone=Europe/London"
 - a startup script (restart-a.sh) just has this line 
$RESIN_HOME/bin/httpd.sh -conf conf/resin.conf -pid resin-a.pid restart 
but 3.1.0 complains about the pid

Pointers gratefully received, Thanks.

-- 
--
http://www.phonewebcam.com
[EMAIL PROTECTED]



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


Re: [Resin-interest] PHP and UTF-8

2007-03-12 Thread MexIQ
Thank you Markus, It is not matter of the file encoding because the
problem also happened with my database results (using mysql 5). If I
run mysql from console it display correctly the Japanese text, but
when displaying it on the browser not.

So, I tried other way around. I installed Tomcat, php-cgi and java-php
bridge and now all my applications are running without any problem and
without having to configure any file.

I'll continue testing caucho and quercus on other port because I think
it can be useful on the future. So any configuration tip it would be
welcome.

Thank you!

On 3/12/07, Markus Ken Baron-Moriyama <[EMAIL PROTECTED]> wrote:
> Hi,
> I tried out this configuration:
>   servlet-class="com.caucho.quercus.servlet.QuercusServlet">
> 
>   UTF-8
> 
>   
>
> and the php:
> $charset = "UTF-8";
>header("Content-Type: text/html; charset=".$charset);
>echo "";
>$var = utf8_encode("バリューパック"); //Japanese text
>echo utf8_decode($var);
>echo "";
> ?>
>
> and it works for me with the correct Japanese output.
> I am using Resin 3.0.23 with JDK 1.5 on Win XP. Are you sure that your
> utf8Test.php is really in UTF-8? As default, I think japanese files are
> created with EUC-JP on linux, so maybe you will have to convert the file
> first.
>
> Best regards,
> markus
>
>
> MexIQ MexIQ wrote:
> > Maybe I'm doing something else wrong... I added at the default 
> > resin-web.xml:
> >
> >   
> > ISO-8859-1
> >   
> >
> > And I had the same results.
> >
> > My directory structure is:
> >
> > /WEB-INF/web.xml
> > /utf8Test.php
> >
> > I need something else?
> >
> > I'm sorry to ask, but I have been looking on the wiki and the web and
> > I don't find what I need. Do you know what part of the documentation I
> > have to read?
> >
> > thank you.
> >
> > On 3/11/07, MexIQ MexIQ <[EMAIL PROTECTED]> wrote:
> >
> >> Thank you Sun,
> >>
> >> I have in my WEB-INF/web.xml
> >> ISO-8859-1
> >>
> >> I will try to add it to resin-web.xml and see what happen...
> >>
> >> I will reply...
> >>
> >> On 3/11/07, sun baoming <[EMAIL PROTECTED]> wrote:
> >>
> >>> official document says in your web.xml or resin-web.xml :
> >>>
> >>>
> >>> http://caucho.com/ns/resin";>
> >>>   >>>
> >>>  servlet-class="com.caucho.quercus.servlet.QuercusServlet">
> >>>  
> >>>  
> >>>
> >>> ISO-8859-1
> >>>  
> >>>
> >>>  
> >>> 
> >>> give it a try.
> >>>
> >>> when i used  this with chinese encoding ,maybe the same as your problem, 
> >>> in
> >>> my experience it never worked .
> >>>
> >>> 2007/3/10, MexIQ MexIQ < [EMAIL PROTECTED] >:
> >>>
>  (Sorry to send it again, but I used other email account and I was not
>  sure if it was received).
> 
>  Hello everyone, I was always expecting to have JAVA and PHP together
>  (I develop in both languages and I wanted a simple and fast way to run
>  my applications in just one server and one port and taking advantage
>  of my java codes). I wanted to give caucho a look and I tried to run a
>  small system buy I'm having some problems trying to get some special
>  characters to display.
> 
>  I made this test:
> 
>   $charset = "UTF-8";
> header("Content-Type: text/html; charset=".$charset);
> echo "";
> $var = utf8_encode("バリューパック"); //Japanese text
> echo utf8_decode($var);
> echo "";
>  ?>
> 
>  I think it have to display it as the original text. But it just
>  display the UTF-8 charset on the screen:
> 
>  バリューãƒ'ック
> 
>  If I comment the line: header("Content-Type: text/html;
> 
> >>> charset=".$charset);
> >>>
>  and manually I select "UTF-8" encoding, the correct (original) text is
>  displayed.
> 
>  I'm using firefox in linux, but I tested also with I.E. and firefox
>  (windows) from other computer.
> 
>  Maybe I have something wrong in my configuration.
>  It is not just Japanese, I also tested with latin characters and was
>  the same thing.
> 
>  By the way, do you know if Quercus will add the Multi-byte functions?
> 
>  And... sure! I would like to help Quercus to grow...
>  ___
>  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
> >
>
> --
> --
> Dipl.-Ing. Markus Ken Baron-Moriyama <[EMAIL PROTECTED]>
> Director of Global IT Relations and Re

[Resin-interest] When does Resin 3.1.1 release?

2007-03-12 Thread Liao Xuefeng
I'm expecting Rein 3.1.1 release. 3.1.0 has too many bugs.


Yours
sincerely.

Liao Xuefeng

Email: [EMAIL PROTECTED]
Website: http://www.javaeedev.com




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


Re: [Resin-interest] Quercus script-encoding don't work with double char encoding like CJK

2007-03-12 Thread Markus Ken Baron-Moriyama
Hello Sun,
I tried out your problem with the japanese Shift-JIS encoding. And it
works for me:
Resin-Pro 3.0.23, Win XP, JDK 1.5

As the servlet mapping:


Shift_JIS



And the php file (in Shift-JIS as stated in the script-encoding element):


will print out the correct japanese text in Shift-JIS. If I leave out
the header function, the output will be in UTF-8, but nevertheless not
garbled.

If I save my test php file in UTF-8 and set the script-encoding
accordingly also to UTF-8, this also works. Are you 100% sure that your
php file is actually in gb2312 ?

Best regards,
markus


sun baoming wrote:
>
>
> -- Forwarded message --
> From: *sun baoming* <[EMAIL PROTECTED] >
> Date: 2007-3-10 上午11:06
> Subject: Quercus script-encoding don't work with double char encoding
> like CJK
> To: resin-interest@caucho.com 
>
>
>
> i try the config from Getting Started with Quercus like the following,
> when i use the GB2312 script-encoding, my test.php don't work ,
> display some human unreadable code instead of normal chinese char.
>
> the second, i change the test.php with encoding iso-8859-1, and try
> the script-encoding iso-8859-1, and it works well.
>
>
> system: windows xp (simplified chinese version)
> resin : 3.1.0
> jdk : sun jdk 1.5.0_09
> php script-encoding: gb2312
>
>
> resin-web.xml
> http://caucho.com/ns/resin
>  ">
>   
>servlet-class="com.caucho.quercus.servlet.QuercusServlet">
> 
>   
>
> GB2312
> 
>   
> 
>
>
>
>
>
> 
>
> ___
> resin-interest mailing list
> resin-interest@caucho.com
> http://maillist.caucho.com/mailman/listinfo/resin-interest
>   

-- 
--
Dipl.-Ing. Markus Ken Baron-Moriyama <[EMAIL PROTECTED]>
Director of Global IT Relations and Research
Co-Founder

Wazap AG
Karl-Liebknecht-Str. 5
10178 Berlin
Germany

Tel:  +49 30 278744 2241
Fax:  +49 30 278744 29

URL: http://wazap.com/

Wazap Aktiengesellschaft
HRB 103534 B
Sitz der Gesellschaft: Berlin
Amtsgericht:Berlin-Charlottenburg
Vorstand:   Andreas Ruehrig (Vors.), Timo Meyer, Alexander Piutti, Philip 
Gienandt
Aufsichtsrat:   Martin Sinner (Vors.), Frank Bo"hnke, Florian Seubert



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


Re: [Resin-interest] PHP and UTF-8

2007-03-12 Thread Markus Ken Baron-Moriyama
Hi,
I tried out this configuration:
  

  UTF-8

  

and the php:
";
   $var = utf8_encode("バリューパック"); //Japanese text
   echo utf8_decode($var);
   echo "";
?>

and it works for me with the correct Japanese output.
I am using Resin 3.0.23 with JDK 1.5 on Win XP. Are you sure that your 
utf8Test.php is really in UTF-8? As default, I think japanese files are 
created with EUC-JP on linux, so maybe you will have to convert the file 
first.

Best regards,
markus


MexIQ MexIQ wrote:
> Maybe I'm doing something else wrong... I added at the default resin-web.xml:
>
>   
> ISO-8859-1
>   
>
> And I had the same results.
>
> My directory structure is:
>
> /WEB-INF/web.xml
> /utf8Test.php
>
> I need something else?
>
> I'm sorry to ask, but I have been looking on the wiki and the web and
> I don't find what I need. Do you know what part of the documentation I
> have to read?
>
> thank you.
>
> On 3/11/07, MexIQ MexIQ <[EMAIL PROTECTED]> wrote:
>   
>> Thank you Sun,
>>
>> I have in my WEB-INF/web.xml
>> ISO-8859-1
>>
>> I will try to add it to resin-web.xml and see what happen...
>>
>> I will reply...
>>
>> On 3/11/07, sun baoming <[EMAIL PROTECTED]> wrote:
>> 
>>> official document says in your web.xml or resin-web.xml :
>>>
>>>
>>> http://caucho.com/ns/resin";>
>>>  >>
>>>  servlet-class="com.caucho.quercus.servlet.QuercusServlet">
>>>  
>>>  
>>>
>>> ISO-8859-1
>>>  
>>>
>>>  
>>> 
>>> give it a try.
>>>
>>> when i used  this with chinese encoding ,maybe the same as your problem, in
>>> my experience it never worked .
>>>
>>> 2007/3/10, MexIQ MexIQ < [EMAIL PROTECTED] >:
>>>   
 (Sorry to send it again, but I used other email account and I was not
 sure if it was received).

 Hello everyone, I was always expecting to have JAVA and PHP together
 (I develop in both languages and I wanted a simple and fast way to run
 my applications in just one server and one port and taking advantage
 of my java codes). I wanted to give caucho a look and I tried to run a
 small system buy I'm having some problems trying to get some special
 characters to display.

 I made this test:

 >>>$charset = "UTF-8";
header("Content-Type: text/html; charset=".$charset);
echo "";
$var = utf8_encode("バリューパック"); //Japanese text
echo utf8_decode($var);
echo "";
 ?>

 I think it have to display it as the original text. But it just
 display the UTF-8 charset on the screen:

 バリューãƒ'ック

 If I comment the line: header("Content-Type: text/html;
 
>>> charset=".$charset);
>>>   
 and manually I select "UTF-8" encoding, the correct (original) text is
 displayed.

 I'm using firefox in linux, but I tested also with I.E. and firefox
 (windows) from other computer.

 Maybe I have something wrong in my configuration.
 It is not just Japanese, I also tested with latin characters and was
 the same thing.

 By the way, do you know if Quercus will add the Multi-byte functions?

 And... sure! I would like to help Quercus to grow...
 ___
 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
>   

-- 
--
Dipl.-Ing. Markus Ken Baron-Moriyama <[EMAIL PROTECTED]>
Director of Global IT Relations and Research
Co-Founder

Wazap AG
Karl-Liebknecht-Str. 5
10178 Berlin
Germany

Tel:  +49 30 278744 2241
Fax:  +49 30 278744 29

URL: http://wazap.com/

Wazap Aktiengesellschaft
HRB 103534 B
Sitz der Gesellschaft: Berlin
Amtsgericht:Berlin-Charlottenburg
Vorstand:   Andreas Ruehrig (Vors.), Timo Meyer, Alexander Piutti, Philip 
Gienandt
Aufsichtsrat:   Martin Sinner (Vors.), Frank Bo"hnke, Florian Seubert



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


Re: [Resin-interest] Quercus is fantastic !

2007-03-12 Thread Ahmed Mohombe



David Campbell wrote:
> 
> Ahmed Mohombe wrote:
>> Sorry but this does not apply here.
>> AFAIK Caucho is a company, not a "one man show".
> 
> How many engineers do you think Caucho have?
> 
I don't know if Caucho has many engineers or not.
The only public information is here:
http://www.caucho.com/about.xtp

It would be however strange for a comany to have 4 people for management and
"no employees to manage" :). 


Ahmed.


-- 
View this message in context: 
http://www.nabble.com/Quercus-is-fantastic-%21-tf3381184.html#a9433155
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] Quercus is fantastic !

2007-03-12 Thread David Campbell
Ahmed Mohombe wrote:
> Sorry but this does not apply here.
> AFAIK Caucho is a company, not a "one man show".

How many engineers do you think Caucho have?

> Judging by your logic, all companies would do only one product at a time.

Perhaps small companies should be fixing bugs rather than developing non 
core functionality.

I think Caucho support for PHP is quite cool, I can't think of any 
scenario where I might use it but cool none the less.

> just my 2 cents,
> 
> Ahmed.
> P.S. I understand that some (maybe many - I can't appreciate) users are
> frustrated with some "ugly" Resin bugs, but IMHO this is not the way these
> problems will be solved.
> Some constructuive bug reports with simple and reproductible test cases
> would help much more.


http://bugs.caucho.com/view_all_bug_page.php

Dave


--
Visit Guardian Unlimited - the UK's most popular newspaper website
http://guardian.co.uk http://observer.co.uk
--
The Newspaper Marketing Agency
Opening Up Newspapers
http://www.nmauk.co.uk
--

This e-mail and all attachments are confidential and may also
be privileged. If you are not the named recipient, please notify
the sender and delete the e-mail and all attachments immediately.
Do not disclose the contents to another person. You may not use
the information for any purpose, or store, or copy, it in any way.

Guardian News & Media Limited is not liable for any computer
viruses or other material transmitted with or as part of this
e-mail. You should employ virus checking software.

Guardian News & Media Limited
A member of Guardian Media Group PLC
Registered Office
Number 1 Scott Place, Manchester M3 3GG
Registered in England Number 908396


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


Re: [Resin-interest] Quercus is fantastic !

2007-03-12 Thread Ahmed Mohombe


Mattias Jiderhamn-4 wrote:
> 
>> Also let's not forget that most of the PHP development takes place on
>> Windows machines, where making things work (e.g. with IIS) is even more
>> error prone.
>> So for all these people, just downloading an application server,
>> unpacking
>> and starting it is much simpler and secure above all.
>>   
> The problem is that Windows users normally don't have a JDK installed.
> 
Maybe, but this is true for any other things as well (or does windows come
with the Zend platform pre-installed?). Also installing the JDK is dead
simple
as there is a setup that can be installed by just clicking, with no further
configuration/tunning required.
If this is mentioned everywhere with the according link, all users can do it
(not so when command line work or editing config files is required).


Mattias Jiderhamn-4 wrote:
> 
>> David Campbell wrote:
>>   
>>> Why Caucho decided to have php support in their webserver rather than 
>>> fix the bugs in the Servlet container is something that confuses my and 
>>> my colleagues almost daily.
>>>
>>> 
>> The one has nothing to do with the other.
>> PHP support is webserver independent so it does not exclude the other.
>>   
> If you are watching TV instead of cleaning the house or mowing the lawn,
> does your spouse agree with you that "The one has nothing to do with the
> other"...?
> 
Sorry but this does not apply here.
AFAIK Caucho is a company, not a "one man show".

Judging by your logic, all companies would do only one product at a time.

just my 2 cents,

Ahmed.
P.S. I understand that some (maybe many - I can't appreciate) users are
frustrated with some "ugly" Resin bugs, but IMHO this is not the way these
problems will be solved.
Some constructuive bug reports with simple and reproductible test cases
would help much more.
Also since Resin comes with most of the sources, it's simpler in many cases
to point the code lines where the problems appear and maybe propose a
solution. I can't believe if Issues are approached this way, Caucho wouldn't
fix them ASAP. 
IMHO the above is true for every project, open source or not.


-- 
View this message in context: 
http://www.nabble.com/Quercus-is-fantastic-%21-tf3381184.html#a9432821
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] o.k. can get to quercus.caucho.com but now its wiki.caucho.com

2007-03-12 Thread Alex Sharaz
Get the following



500 Servlet Exception

java.lang.NoClassDefFoundError
at sun.reflect.GeneratedMethodAccessor635.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.caucho.quercus.program.CompiledClassDef.initClass(CompiledClassDef.j
ava:80)
at
com.caucho.quercus.env.QuercusClass.(QuercusClass.java:114)
at com.caucho.quercus.env.Env.createQuercusClass(Env.java:2948)
at com.caucho.quercus.env.Env.createClassImpl(Env.java:2862)
at com.caucho.quercus.env.Env.createClassImpl(Env.java:2877)
at com.caucho.quercus.env.Env.findClass(Env.java:2828)
at com.caucho.quercus.env.Env.findClass(Env.java:2805)
at com.caucho.quercus.env.Env.getClass(Env.java:2924)
at
_quercus._includes._Wiki__php$quercus_MediaWiki$fun_checkInitialQueries.
callMethod(var/www/hosts/wiki.caucho.com/webapps/ROOT/includes/Wiki.php:
74)
at
com.caucho.quercus.env.ObjectExtValue.callMethod(ObjectExtValue.java:692
)
at com.caucho.quercus.env.Var.callMethod(Var.java:1023)
at
_quercus._index__php.execute(var/www/hosts/wiki.caucho.com/webapps/ROOT/
index.php:17)
at
com.caucho.quercus.page.QuercusPage.executeTop(QuercusPage.java:115)
at
com.caucho.quercus.servlet.ResinQuercusServlet.service(ResinQuercusServl
et.java:122)
at
com.caucho.quercus.servlet.QuercusServlet.service(QuercusServlet.java:29
8)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:92)
at
com.caucho.server.dispatch.ServletFilterChain.doFilter(ServletFilterChai
n.java:103)
at
com.caucho.server.cache.CacheFilterChain.doFilter(CacheFilterChain.java:
159)
at
com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.ja
va:167)
at
com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.j
ava:226)
at
com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:263)
at
com.caucho.server.port.TcpConnection.run(TcpConnection.java:477)
at com.caucho.util.ThreadPool$Item.runTasks(ThreadPool.java:600)
at com.caucho.util.ThreadPool$Item.run(ThreadPool.java:522)
at java.lang.Thread.run(Thread.java:595)*
To view the terms under which this email is distributed, please go to 
http://www.hull.ac.uk/legal/email_disclaimer.html
*___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


Re: [Resin-interest] Quercus is fantastic !

2007-03-12 Thread Mattias Jiderhamn
Ahmed Mohombe:
> Also let's not forget that most of the PHP development takes place on
> Windows machines, where making things work (e.g. with IIS) is even more
> error prone.
> So for all these people, just downloading an application server, unpacking
> and starting it is much simpler and secure above all.
>   
The problem is that Windows users normally don't have a JDK installed.


> David Campbell wrote:
>   
>> Why Caucho decided to have php support in their webserver rather than 
>> fix the bugs in the Servlet container is something that confuses my and 
>> my colleagues almost daily.
>>
>> 
> The one has nothing to do with the other.
> PHP support is webserver independent so it does not exclude the other.
>   
If you are watching TV instead of cleaning the house or mowing the lawn,
does your spouse agree with you that "The one has nothing to do with the
other"...?
___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] Cant connect to quercus.caucho.com

2007-03-12 Thread Alex Sharaz
Get 

500 Servlet Exception

java.lang.OutOfMemoryError: PermGen space

*
To view the terms under which this email is distributed, please go to 
http://www.hull.ac.uk/legal/email_disclaimer.html
*___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest