Grokbase
x

RTE - Meridian Club (mer...@dataco.net)

Profile | Posts (36)

User Information

Display Name:RTE - Meridian Club
Partial Email Address:mer...@dataco.net
Posts:
36 total
36 in tomcat-user@jakarta.apache.org

5 Most Recent

All Posts
1) RTE - Meridian Club RE: Problems with graphics on Tomcat 5.5.9 [255835:132365]
| +1 vote
Many thanks for your email. This is an automated response acknowledging receipt. Please be advised...
tomcat-user@jakarta.apache.org
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club



> -----Original Message-----
> From: "Mauricio Fernandez A." <mfacontacto@ono.com>
> Received: 10/7/2005 7:14 PM
> To: "" <tomcat-user@jakarta.apache.org>
> Subject: Problems with graphics on Tomcat 5.5.9
>
> Hello
>
> I have a web App with some jspīs showing graphics generated by jfreechart,
> in my windows dev station it works fine but in my linux production server it
> was working fine to some days ago and now it doesnīt.
>
> I have Tomcat 5.5.9, JDK 1.5.0_04, Red Hat Linux on a rack
>
> Now i obtain a ServletException generated by this reason (sorry to send the
> trace but I want to be specific):
>
> java.lang.NoClassDefFoundError
> sun.java2d.SunGraphicsEnvironment.addDirFonts(SunGraphicsEnvironment.java:7
> 22)
> sun.java2d.SunGraphicsEnvironment.registerFontsInDir(SunGraphicsEnvironment
> .java:602)
> sun.java2d.SunGraphicsEnvironment.access$200(SunGraphicsEnvironment.java:58
> )
> sun.java2d.SunGraphicsEnvironment$1.run(SunGraphicsEnvironment.java:174)
> java.security.AccessController.doPrivileged(Native Method)
> sun.java2d.SunGraphicsEnvironment.<init>(SunGraphicsEnvironment.java:94)
> sun.awt.X11GraphicsEnvironment.<init>(X11GraphicsEnvironment.java:164)
> sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAcce
> ssorImpl.java:39)
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstru
> ctorAccessorImpl.java:27)
> java.lang.reflect.Constructor.newInstance(Constructor.java:494)
>  java.lang.Class.newInstance0(Class.java:350)
>  java.lang.Class.newInstance(Class.java:303)
> java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironmen
> t.java:68)
> java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1141)
> org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1243)
> org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1223)
> org.jfree.chart.ChartUtilities.writeChartAsPNG(ChartUtilities.java:173)
> org.jfree.chart.ChartUtilities.saveChartAsPNG(ChartUtilities.java:328)
> org.jfree.chart.ChartUtilities.saveChartAsPNG(ChartUtilities.java:299)
> com.Prueba.comandos.Graficador2.crearBarChart3DVertical(Graficador2.java:21
> 1)
> org.apache.jsp.jsp.grafica_jsp._jspService(org.apache.jsp.jsp.grafica_jsp:1
> 67)
>
> Thanks
>
> MauricioF
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [email protected: mer...@dataco.net]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
2) RTE - Meridian Club RE: [5.5.9] Excessive jk INFO log msgs "connection timeout reached" [255831:132361]
| +1 vote
Many thanks for your email. This is an automated response acknowledging receipt. Please be advised...
tomcat-user@jakarta.apache.org
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club



> -----Original Message-----
> From: "Rick" <tomcatdev@vidyah.com>
> Received: 10/7/2005 6:35 PM
> To: "'Tomcat Users List'" <tomcat-user@jakarta.apache.org>
> Subject: RE: [5.5.9] Excessive jk INFO log msgs "connection timeout reached"
>
> Hi Marcus,
> About that log entry that doesn't seem to be caught by the default
> java.util.logging, I was wondering if it's a bug in the code per my original
> post, noted below.. On all calls to log, isn't it required to do a check
> for that log level before making the call... i.e. isDebugEnabled(),
> isInfoEnabled(), etc. Maybe for some reason, log4j with filter without the
> check? (speculation), if this is the case.. The below mentioned change may
> fix the problem, I don't have the tomcat build environment setup or I would
> try it.. Anyone else do their own tomcat builds that could try it quick?
>
> > > 'org.apache.jk.common.ChannelSocket', the line reads...
> > >
> > > log.info( "connection timeout reached");
> > >
> > > Should it not instead read...
> > >
> > > if(log.isInfoEnabled()) log.info( "connection timeout reached");
>
> -Rick
>
> -----Original Message-----
> From: Marcus Franke [email protected: mf...@evendi.de]
> Posted At: Friday, October 07, 2005 10:07 AM
> Posted To: Tomcat Dev
> Conversation: [5.5.9] Excessive jk INFO log msgs "connection timeout
> reached"
> Subject: Re: [5.5.9] Excessive jk INFO log msgs "connection timeout reached"
>
>
> On Fri, Oct 07, 2005 at 05:24:27PM +0100, Allistair Crossley wrote:
> > Hi,
> >
> > looks like jk is using commons logging, you'll have better success using a
> log4j or commons-logging properties configuration to set the threshold to
> ERROR. you may be able to do that in jk's config files too, i am sure there
> is an error level setting. check out the jk docs.
> >
>
> Hello Allistair,
>
>
> Ok, did not understand a word :)
> Seems to be too late.
>
> I now changed the debug value in the Connector now step by step down to
> Zero.
> But no changes, the catalina.out file still fills with those timeout Infos.
>
> <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
>     <Connector port="8009" 
> enableLookups="false" redirectPort="8443" debug="0"
> minProcessors="50" maxProcessors="500"
> connectionTimeout="20000"
>                protocol="AJP/1.3" />
>
> I tried to modify the logger definition in the server.xml using
> verbosity="0"
>
> <!-- Global logger unless overridden at lower levels -->
> <Logger className="org.apache.catalina.logger.FileLogger"
> prefix="catalina_log." suffix=".txt" verbosity="0"
>               timestamp="true"/>
>
>
> But its just the catalina_log and not the catalina.out which according to
> the start scripts of the tomcat daemon is a redirection of stdout of the
> daemon itself into the logfile.
>
> Is there an option to make the tomcat daemon less noisy?
>
>
>
> Thanks,
> Marcus
>
>
>
> --
>
> History tends to exaggerate.
> -- Col. Green, "The Savage Curtain", stardate 5906.4
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [email protected: mer...@dataco.net]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
3) RTE - Meridian Club RE: Executing custom action on deploy [255827:132357]
| +1 vote
Many thanks for your email. This is an automated response acknowledging receipt. Please be advised...
tomcat-user@jakarta.apache.org
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club



> -----Original Message-----
> From: "Caldarale, Charles R" <Chuck.Caldarale@unisys.com>
> Received: 10/7/2005 6:09 PM
> To: "Tomcat Users List" <tomcat-user@jakarta.apache.org>
> Subject: RE: Executing custom action on deploy
>
> > From: Matteo Miraz [email protected: telegraph...@gmail.com]
> > Subject: Executing custom action on deploy
> >
> > I have written such behaviour in a method, so what can I do
> > to execute it?
>
> Sounds like you need a ContextListener. Read the spec:
> http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html
>
> Look at section 10.
>
>  - Chuck
>
>
> THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
> MATERIAL and is thus for use only by the intended recipient. If you
> received this in error, please contact the sender and delete the e-mail
> and its attachments from all computers.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [email protected: mer...@dataco.net]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
4) RTE - Meridian Club Re: [5.5.9] Excessive jk INFO log msgs "connection timeout reached" [255825:132355]
| +1 vote
Many thanks for your email. This is an automated response acknowledging receipt. Please be advised...
tomcat-user@jakarta.apache.org
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club



> -----Original Message-----
> From: "Marcus Franke" <mfranke@evendi.de>
> Received: 10/7/2005 6:05 PM
> To: "Tomcat Users List" <tomcat-user@jakarta.apache.org>
> Subject: Re: [5.5.9] Excessive jk INFO log msgs "connection timeout reached"
>
> On Fri, Oct 07, 2005 at 05:24:27PM +0100, Allistair Crossley wrote:
> > Hi,
> >
> > looks like jk is using commons logging, you'll have better success using a log4j or commons-logging properties configuration to set the threshold to ERROR. you may be able to do that in jk's config files too, i am sure there is an error level setting. check out the jk docs.
> >
>
> Hello Allistair,
>
>
> Ok, did not understand a word :)
> Seems to be too late.
>
> I now changed the debug value in the Connector now step by step down to Zero.
> But no changes, the catalina.out file still fills with those timeout Infos.
>
> <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
>     <Connector port="8009" 
> enableLookups="false" redirectPort="8443" debug="0"
> minProcessors="50" maxProcessors="500" connectionTimeout="20000"
>                protocol="AJP/1.3" />
>
> I tried to modify the logger definition in the server.xml using verbosity="0"
>
> <!-- Global logger unless overridden at lower levels -->
> <Logger className="org.apache.catalina.logger.FileLogger"
> prefix="catalina_log." suffix=".txt" verbosity="0"
>               timestamp="true"/>
>
>
> But its just the catalina_log and not the catalina.out which according to
> the start scripts of the tomcat daemon is a redirection of stdout of the
> daemon itself into the logfile.
>
> Is there an option to make the tomcat daemon less noisy?
>
>
>
> Thanks,
> Marcus
>
>
>
> --
>
> History tends to exaggerate.
> -- Col. Green, "The Savage Curtain", stardate 5906.4
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [email protected: mer...@dataco.net]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
5) RTE - Meridian Club Re: Embedded Tomcat and SSL? [255821:132351]
| +1 vote
Many thanks for your email. This is an automated response acknowledging receipt. Please be advised...
tomcat-user@jakarta.apache.org
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club



> -----Original Message-----
> From: [email protected: lmuxer-mailing...@yahoo.com]
> Received: 10/7/2005 5:45 PM
> To: "Tomcat Users List" <tomcat-user@jakarta.apache.org>;" Mark" <elihusmails@gmail.com>
> Subject: Re: Embedded Tomcat and SSL?
>
> I am using Tomcat as standalone and not with Apache.
> I got it to work after playing with it for a while.
>
> You have to set these undocumented properties to get SSL working
> properly:
>
>  if (isSSLEnabled) {
> IntrospectionUtils.setProperty(httpConnector, "sslProtocol",
> "TLS");
> IntrospectionUtils.setProperty(httpConnector, "keystoreFile",
> getPath()+"/conf/tomcat.keystore");
> IntrospectionUtils.setProperty(httpConnector, "keystoreType",
> "JKS");
> IntrospectionUtils.setProperty(httpConnector, "clientAuth",
> "false");
>         httpConnector.setProtocol( "SSL");
>    }
>
> HTH
>
> --- Mark <elihusmails@gmail.com> wrote:
>
> > are you using Apace with Tomcat? I have done embedded Tomcat and
> > SSL,
> > but it was Apache sitting in front of Tomcat.
> >
> > On 10/6/05, [email protected: lmuxer-mailing...@yahoo.com]
> > <lmuxer-mailinglists@yahoo.com> wrote:
> > > Hi,
> > >
> > > I am using an embedded tomcat instance within my application. I am
> > > trying to set up a connector using SSL. When I start the server, it
> > > creates the connector and bind to the port successfully. When I
> > request
> > > a page from the web browser, I get the following error in my
> > browser:
> > >
> > > "The connection to the server has terminated unexpectedly. Some
> > data
> > > may have been transferred."
> > >
> > > The same scenario works fine with HTTP.
> > >
> > > Here is my code snippet:
> > > // APPPORT and isSSLEnabled are set correctly to 8443 and true.
> > > Connector httpConnector =
> > > this._server.createConnector((java.net.InetAddress)null,
> > >
> >
> Integer.parseInt(ApplicationResourcesUtil.getProperty(Constants.RESOURCEKEY_APPPORT)),isSSLEnabled);
> > >
> > > //add new Connector to set of Connectors for embedded server,
> > > associated with Engine
> > > this._server.addConnector(httpConnector);
> > > this._server.start();
> > >
> > > Looking at the tomcat website, they talk about registering
> > keystore.
> > > What APIs do I use to programmatically specify the keystore file?
> > Is
> > > there something else that needs to be configured before SSL will
> > work
> > > in the embedded more?
> > >
> > > Thanks,
> > >
> > > -Andy
> > >
> > >
> > >
> > >
> > >
> > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> > > For additional commands, e-mail:
> > [email protected: tomcat-user...@jakarta.apache.org]
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> > For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
> For additional commands, e-mail: [email protected: tomcat-user...@jakarta.apache.org]
>
>
>

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [email protected: mer...@dataco.net]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected: tomcat-user-unsubs...@jakarta.apache.org]
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org

spacer
Profile | Posts (36)
Home > People > RTE - Meridian Club