You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by Jacques Desmazieres <ja...@is2france.com> on 2005/09/14 09:22:24 UTC

JMeter 2.1 does not compile with JDK 1.3

Hello,

I need to run JMeter with JDK1.3. I retrieved the src build archive and
tried to compile it. But I have compilation errors in the core (jorphan)
classes. These errors does not exist anymore if I just replace with Jdk 1.4.

Is JMeter still supposed to be JDK 1.3 fully compliant ?

Jacques Desmazieres

There are 2 types of errors:

[javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
[javac]
D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\ConfigurationTree.j
ava:75: reference to add is ambiguous, both method add(java.u
til.Collection) in org.apache.jorphan.collections.HashTree and method
add(java.lang.Object) in org.apache.jorphan.collections.ListedHashTree match
[javac]             propTree.add(keys);

and

[javac]
D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:378: cannot
resolve symbol
[javac] symbol  : method replaceAll  (java.lang.String,java.lang.String)
[javac] location: class java.lang.String
[javac]             return v.trim().replaceAll("\\s+", insertion);


JVM version (java -version):
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)




---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


Re: JMeter 2.1 does not compile with JDK 1.3

Posted by Peter Lin <wo...@gmail.com>.
or as I like to say. customer often don't know what they want and ask for 
silly things

peter


On 9/14/05, sebb <se...@gmail.com> wrote:
> 
> As I'm sure you know, running JMeter on the same box as the web-server
> is fine for functional testing, but it is not advisable for
> performance tests with lots of threads.
> 
> Customers are funny sometimes ...
> 
> S.
> On 14/09/05, Jacques Desmazieres <ja...@is2france.com> 
> wrote:
> > Actually we have to generate automatic performance reports after install 
> of
> > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > available is the Weblogic's one. And our customer does not want to 
> install
> > anything else on the production server, nor running the performance 
> script
> > from a separate station running JDK 1.4.
> >
> > Thanks for your reply
> >
> > Jacques Desmazieres
> >
> > > -----Message d'origine-----
> > > De : sebb [mailto:sebbaz@gmail.com]
> > > Envoyé : mercredi 14 septembre 2005 11:59
> > > À : JMeter Developers List
> > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > >
> > >
> > > That looks like an accident - we've been trying to maintain 1.3
> > > compatibility.
> > > I'll have a look at fixing that for 2.1.1.
> > >
> > > However, be warned that the 1.3 JVM can have problems running
> > > JMeter scripts.
> > >
> > > 1.4 JVMs generally work much better.
> > >
> > > BTW, why can you not use 1.4?
> > >
> > > S.
> > > On 14/09/05, Jacques Desmazieres
> > > <ja...@is2france.com> wrote:
> > > > Hello,
> > > >
> > > > I need to run JMeter with JDK1.3. I retrieved the src build archive 
> and
> > > > tried to compile it. But I have compilation errors in the core 
> (jorphan)
> > > > classes. These errors does not exist anymore if I just replace
> > > with Jdk 1.4.
> > > >
> > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > >
> > > > Jacques Desmazieres
> > > >
> > > > There are 2 types of errors:
> > > >
> > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > [javac]
> > > >
> > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > tionTree.j
> > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > til.Collection) in org.apache.jorphan.collections.HashTree and 
> method
> > > > add(java.lang.Object) in
> > > org.apache.jorphan.collections.ListedHashTree match
> > > > [javac] propTree.add(keys);
> > > >
> > > > and
> > > >
> > > > [javac]
> > > >
> > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > 78: cannot
> > > > resolve symbol
> > > > [javac] symbol : method replaceAll (java.lang.String,
> java.lang.String)
> > > > [javac] location: class java.lang.String
> > > > [javac] return v.trim().replaceAll("\\s+", insertion);
> > > >
> > > >
> > > > JVM version (java -version):
> > > > java version "1.3.1"
> > > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > >
> > > >
> > > >
> > > >
> > > > 
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> >
> >
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> 
>

Re: JMeter 2.1 does not compile with JDK 1.3

Posted by sebb <se...@gmail.com>.
As I'm sure you know, running JMeter on the same box as the web-server
is fine for functional testing, but it is not advisable for
performance tests with lots of threads.

Customers are funny sometimes ...

S.
On 14/09/05, Jacques Desmazieres <ja...@is2france.com> wrote:
> Actually we have to generate automatic performance reports after install of
> our application on Weblogic 6.1 (I know, it old !) and the only JVM
> available is the Weblogic's one. And our customer does not want to install
> anything else on the production server, nor running the performance script
> from a separate station running JDK 1.4.
> 
> Thanks for your reply
> 
> Jacques Desmazieres
> 
> > -----Message d'origine-----
> > De : sebb [mailto:sebbaz@gmail.com]
> > Envoyé : mercredi 14 septembre 2005 11:59
> > À : JMeter Developers List
> > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> >
> >
> > That looks like an accident - we've been trying to maintain 1.3
> > compatibility.
> > I'll have a look at fixing that for 2.1.1.
> >
> > However, be warned that the 1.3 JVM can have problems running
> > JMeter scripts.
> >
> > 1.4 JVMs generally work much better.
> >
> > BTW, why can you not use 1.4?
> >
> > S.
> > On 14/09/05, Jacques Desmazieres
> > <ja...@is2france.com> wrote:
> > > Hello,
> > >
> > > I need to run JMeter with JDK1.3. I retrieved the src build archive and
> > > tried to compile it. But I have compilation errors in the core (jorphan)
> > > classes. These errors does not exist anymore if I just replace
> > with Jdk 1.4.
> > >
> > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > >
> > > Jacques Desmazieres
> > >
> > > There are 2 types of errors:
> > >
> > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > [javac]
> > >
> > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > tionTree.j
> > > ava:75: reference to add is ambiguous, both method add(java.u
> > > til.Collection) in org.apache.jorphan.collections.HashTree and method
> > > add(java.lang.Object) in
> > org.apache.jorphan.collections.ListedHashTree match
> > > [javac]             propTree.add(keys);
> > >
> > > and
> > >
> > > [javac]
> > >
> > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > 78: cannot
> > > resolve symbol
> > > [javac] symbol  : method replaceAll  (java.lang.String,java.lang.String)
> > > [javac] location: class java.lang.String
> > > [javac]             return v.trim().replaceAll("\\s+", insertion);
> > >
> > >
> > > JVM version (java -version):
> > > java version "1.3.1"
> > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> 
> 
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


Re: JMeter 2.1 does not compile with JDK 1.3

Posted by Peter Lin <wo...@gmail.com>.
but older versions should be. 

peter


On 9/14/05, Michael Stover <ms...@apache.org> wrote:
> 
> JMeter is not jdk1.3 compliant.
> 
> 
> On Wed, 2005-09-14 at 16:48 +0200, Jacques Desmazieres wrote:
> > I agree with on that point, but the main concern is that JMeter is 
> supposed
> > to be fully JDK13 compliant but does not compile with that version of 
> JDK.
> > And unfortunately, I need to do it, even if the reasons are not good ;-)
> >
> > Jacques Desmazieres
> >
> > > -----Message d'origine-----
> > > De : Michael Stover [mailto:mstover1@apache.org]
> > > Envoyé : mercredi 14 septembre 2005 16:31
> > > À : JMeter Dev List
> > > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> > >
> > >
> > > You should explain to your customer that running JMeter on the
> > > production server just means the results will be meaningless, so 
> there's
> > > no need to even bother with it.
> > >
> > >
> > >
> > > On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > > > Actually we have to generate automatic performance reports
> > > after install of
> > > > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > > > available is the Weblogic's one. And our customer does not want
> > > to install
> > > > anything else on the production server, nor running the
> > > performance script
> > > > from a separate station running JDK 1.4.
> > > >
> > > > Thanks for your reply
> > > >
> > > > Jacques Desmazieres
> > > >
> > > > > -----Message d'origine-----
> > > > > De : sebb [mailto:sebbaz@gmail.com]
> > > > > Envoyé : mercredi 14 septembre 2005 11:59
> > > > > À : JMeter Developers List
> > > > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > > > >
> > > > >
> > > > > That looks like an accident - we've been trying to maintain 1.3
> > > > > compatibility.
> > > > > I'll have a look at fixing that for 2.1.1.
> > > > >
> > > > > However, be warned that the 1.3 JVM can have problems running
> > > > > JMeter scripts.
> > > > >
> > > > > 1.4 JVMs generally work much better.
> > > > >
> > > > > BTW, why can you not use 1.4?
> > > > >
> > > > > S.
> > > > > On 14/09/05, Jacques Desmazieres
> > > > > <ja...@is2france.com> wrote:
> > > > > > Hello,
> > > > > >
> > > > > > I need to run JMeter with JDK1.3. I retrieved the src build
> > > archive and
> > > > > > tried to compile it. But I have compilation errors in the
> > > core (jorphan)
> > > > > > classes. These errors does not exist anymore if I just replace
> > > > > with Jdk 1.4.
> > > > > >
> > > > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > > > >
> > > > > > Jacques Desmazieres
> > > > > >
> > > > > > There are 2 types of errors:
> > > > > >
> > > > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > > > [javac]
> > > > > >
> > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > > > tionTree.j
> > > > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > > > til.Collection) in org.apache.jorphan.collections.HashTree
> > > and method
> > > > > > add(java.lang.Object) in
> > > > > org.apache.jorphan.collections.ListedHashTree match
> > > > > > [javac] propTree.add(keys);
> > > > > >
> > > > > > and
> > > > > >
> > > > > > [javac]
> > > > > >
> > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > > > 78: cannot
> > > > > > resolve symbol
> > > > > > [javac] symbol : method replaceAll
> > > (java.lang.String,java.lang.String)
> > > > > > [javac] location: class java.lang.String
> > > > > > [javac] return v.trim().replaceAll("\\s+", insertion);
> > > > > >
> > > > > >
> > > > > > JVM version (java -version):
> > > > > > java version "1.3.1"
> > > > > > Java(TM) 2 Runtime Environment, Standard Edition (build 
> 1.3.1-b24)
> > > > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: 
> jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail: 
> jmeter-dev-help@jakarta.apache.org
> > > > > >
> > > > > >
> > > > >
> > > > > 
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail: 
> jmeter-dev-help@jakarta.apache.org
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > > 
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> 
>

RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Jacques Desmazieres <ja...@is2france.com>.
Ok, thanks

> -----Message d'origine-----
> De : Michael Stover [mailto:mstover1@apache.org]
> Envoyé : mercredi 14 septembre 2005 17:36
> À : JMeter Dev List
> Objet : RE: JMeter 2.1 does not compile with JDK 1.3
>
>
> The docs are out of date in this respect.
>
> On Wed, 2005-09-14 at 17:14 +0200, Jacques Desmazieres wrote:
> > I may be wrong, but in the requirements it is still said that
> JMeter runs
> > with JDK1.3, even if JDK1.4 is recommended. But in this case there is an
> > error in the doc ;-)
> >
> > So if JMeter is not JDK1.3 compliant , it is not usefully that
> I spend time
> > trying to compile it with that Java version.
> >
> > Jacques Desmazieres
> >
> > > -----Message d'origine-----
> > > De : Michael Stover [mailto:mstover1@apache.org]
> > > Envoyé : mercredi 14 septembre 2005 16:51
> > > À : JMeter Dev List
> > > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> > >
> > >
> > > JMeter is not jdk1.3 compliant.
> > >
> > >
> > > On Wed, 2005-09-14 at 16:48 +0200, Jacques Desmazieres wrote:
> > > > I agree with on that point, but the main concern is that JMeter
> > > is supposed
> > > > to be fully JDK13 compliant but does not compile with that
> > > version of JDK.
> > > > And unfortunately, I need to do it, even if the reasons are
> not good ;-)
> > > >
> > > > Jacques Desmazieres
> > > >
> > > > > -----Message d'origine-----
> > > > > De : Michael Stover [mailto:mstover1@apache.org]
> > > > > Envoyé : mercredi 14 septembre 2005 16:31
> > > > > À : JMeter Dev List
> > > > > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> > > > >
> > > > >
> > > > > You should explain to your customer that running JMeter on the
> > > > > production server just means the results will be meaningless,
> > > so there's
> > > > > no need to even bother with it.
> > > > >
> > > > >
> > > > >
> > > > > On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > > > > > Actually we have to generate automatic performance reports
> > > > > after install of
> > > > > > our application on Weblogic 6.1 (I know, it old !) and
> the only JVM
> > > > > > available is the Weblogic's one. And our customer does not want
> > > > > to install
> > > > > > anything else on the production server, nor running the
> > > > > performance script
> > > > > > from a separate station running JDK 1.4.
> > > > > >
> > > > > > Thanks for your reply
> > > > > >
> > > > > > Jacques Desmazieres
> > > > > >
> > > > > > > -----Message d'origine-----
> > > > > > > De : sebb [mailto:sebbaz@gmail.com]
> > > > > > > Envoyé : mercredi 14 septembre 2005 11:59
> > > > > > > À : JMeter Developers List
> > > > > > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > > > > > >
> > > > > > >
> > > > > > > That looks like an accident - we've been trying to
> maintain 1.3
> > > > > > > compatibility.
> > > > > > > I'll have a look at fixing that for 2.1.1.
> > > > > > >
> > > > > > > However, be warned that the 1.3 JVM can have problems running
> > > > > > > JMeter scripts.
> > > > > > >
> > > > > > > 1.4 JVMs generally work much better.
> > > > > > >
> > > > > > > BTW, why can you not use 1.4?
> > > > > > >
> > > > > > > S.
> > > > > > > On 14/09/05, Jacques Desmazieres
> > > > > > > <ja...@is2france.com> wrote:
> > > > > > > > Hello,
> > > > > > > >
> > > > > > > > I need to run JMeter with JDK1.3. I retrieved the src build
> > > > > archive and
> > > > > > > > tried to compile it. But I have compilation errors in the
> > > > > core (jorphan)
> > > > > > > > classes. These errors does not exist anymore if I
> just replace
> > > > > > > with Jdk 1.4.
> > > > > > > >
> > > > > > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > > > > > >
> > > > > > > > Jacques Desmazieres
> > > > > > > >
> > > > > > > > There are 2 types of errors:
> > > > > > > >
> > > > > > > > [javac] Compiling 37 source files to
> D:\JAKART~1.1\build\jorphan
> > > > > > > > [javac]
> > > > > > > >
> > > > > > >
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > > > > > tionTree.j
> > > > > > > > ava:75: reference to add is ambiguous, both method
> add(java.u
> > > > > > > > til.Collection) in org.apache.jorphan.collections.HashTree
> > > > > and method
> > > > > > > > add(java.lang.Object) in
> > > > > > > org.apache.jorphan.collections.ListedHashTree match
> > > > > > > > [javac]             propTree.add(keys);
> > > > > > > >
> > > > > > > > and
> > > > > > > >
> > > > > > > > [javac]
> > > > > > > >
> > > > > > >
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > > > > > 78: cannot
> > > > > > > > resolve symbol
> > > > > > > > [javac] symbol  : method replaceAll
> > > > > (java.lang.String,java.lang.String)
> > > > > > > > [javac] location: class java.lang.String
> > > > > > > > [javac]             return v.trim().replaceAll("\\s+",
> > > insertion);
> > > > > > > >
> > > > > > > >
> > > > > > > > JVM version (java -version):
> > > > > > > > java version "1.3.1"
> > > > > > > > Java(TM) 2 Runtime Environment, Standard Edition (build
> > > 1.3.1-b24)
> > > > > > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > > > > To unsubscribe, e-mail:
> > > jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > > > For additional commands, e-mail:
> > > jmeter-dev-help@jakarta.apache.org
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail:
> jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > > For additional commands, e-mail:
> > > jmeter-dev-help@jakarta.apache.org
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail:
> jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> jmeter-dev-help@jakarta.apache.org
> > > > >
> > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> jmeter-dev-help@jakarta.apache.org
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Michael Stover <ms...@apache.org>.
The docs are out of date in this respect.

On Wed, 2005-09-14 at 17:14 +0200, Jacques Desmazieres wrote:
> I may be wrong, but in the requirements it is still said that JMeter runs
> with JDK1.3, even if JDK1.4 is recommended. But in this case there is an
> error in the doc ;-)
> 
> So if JMeter is not JDK1.3 compliant , it is not usefully that I spend time
> trying to compile it with that Java version.
> 
> Jacques Desmazieres
> 
> > -----Message d'origine-----
> > De : Michael Stover [mailto:mstover1@apache.org]
> > Envoyé : mercredi 14 septembre 2005 16:51
> > À : JMeter Dev List
> > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> >
> >
> > JMeter is not jdk1.3 compliant.
> >
> >
> > On Wed, 2005-09-14 at 16:48 +0200, Jacques Desmazieres wrote:
> > > I agree with on that point, but the main concern is that JMeter
> > is supposed
> > > to be fully JDK13 compliant but does not compile with that
> > version of JDK.
> > > And unfortunately, I need to do it, even if the reasons are not good ;-)
> > >
> > > Jacques Desmazieres
> > >
> > > > -----Message d'origine-----
> > > > De : Michael Stover [mailto:mstover1@apache.org]
> > > > Envoyé : mercredi 14 septembre 2005 16:31
> > > > À : JMeter Dev List
> > > > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> > > >
> > > >
> > > > You should explain to your customer that running JMeter on the
> > > > production server just means the results will be meaningless,
> > so there's
> > > > no need to even bother with it.
> > > >
> > > >
> > > >
> > > > On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > > > > Actually we have to generate automatic performance reports
> > > > after install of
> > > > > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > > > > available is the Weblogic's one. And our customer does not want
> > > > to install
> > > > > anything else on the production server, nor running the
> > > > performance script
> > > > > from a separate station running JDK 1.4.
> > > > >
> > > > > Thanks for your reply
> > > > >
> > > > > Jacques Desmazieres
> > > > >
> > > > > > -----Message d'origine-----
> > > > > > De : sebb [mailto:sebbaz@gmail.com]
> > > > > > Envoyé : mercredi 14 septembre 2005 11:59
> > > > > > À : JMeter Developers List
> > > > > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > > > > >
> > > > > >
> > > > > > That looks like an accident - we've been trying to maintain 1.3
> > > > > > compatibility.
> > > > > > I'll have a look at fixing that for 2.1.1.
> > > > > >
> > > > > > However, be warned that the 1.3 JVM can have problems running
> > > > > > JMeter scripts.
> > > > > >
> > > > > > 1.4 JVMs generally work much better.
> > > > > >
> > > > > > BTW, why can you not use 1.4?
> > > > > >
> > > > > > S.
> > > > > > On 14/09/05, Jacques Desmazieres
> > > > > > <ja...@is2france.com> wrote:
> > > > > > > Hello,
> > > > > > >
> > > > > > > I need to run JMeter with JDK1.3. I retrieved the src build
> > > > archive and
> > > > > > > tried to compile it. But I have compilation errors in the
> > > > core (jorphan)
> > > > > > > classes. These errors does not exist anymore if I just replace
> > > > > > with Jdk 1.4.
> > > > > > >
> > > > > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > > > > >
> > > > > > > Jacques Desmazieres
> > > > > > >
> > > > > > > There are 2 types of errors:
> > > > > > >
> > > > > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > > > > [javac]
> > > > > > >
> > > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > > > > tionTree.j
> > > > > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > > > > til.Collection) in org.apache.jorphan.collections.HashTree
> > > > and method
> > > > > > > add(java.lang.Object) in
> > > > > > org.apache.jorphan.collections.ListedHashTree match
> > > > > > > [javac]             propTree.add(keys);
> > > > > > >
> > > > > > > and
> > > > > > >
> > > > > > > [javac]
> > > > > > >
> > > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > > > > 78: cannot
> > > > > > > resolve symbol
> > > > > > > [javac] symbol  : method replaceAll
> > > > (java.lang.String,java.lang.String)
> > > > > > > [javac] location: class java.lang.String
> > > > > > > [javac]             return v.trim().replaceAll("\\s+",
> > insertion);
> > > > > > >
> > > > > > >
> > > > > > > JVM version (java -version):
> > > > > > > java version "1.3.1"
> > > > > > > Java(TM) 2 Runtime Environment, Standard Edition (build
> > 1.3.1-b24)
> > > > > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail:
> > jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > > For additional commands, e-mail:
> > jmeter-dev-help@jakarta.apache.org
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> > jmeter-dev-help@jakarta.apache.org
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > >
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Jacques Desmazieres <ja...@is2france.com>.
I may be wrong, but in the requirements it is still said that JMeter runs
with JDK1.3, even if JDK1.4 is recommended. But in this case there is an
error in the doc ;-)

So if JMeter is not JDK1.3 compliant , it is not usefully that I spend time
trying to compile it with that Java version.

Jacques Desmazieres

> -----Message d'origine-----
> De : Michael Stover [mailto:mstover1@apache.org]
> Envoyé : mercredi 14 septembre 2005 16:51
> À : JMeter Dev List
> Objet : RE: JMeter 2.1 does not compile with JDK 1.3
>
>
> JMeter is not jdk1.3 compliant.
>
>
> On Wed, 2005-09-14 at 16:48 +0200, Jacques Desmazieres wrote:
> > I agree with on that point, but the main concern is that JMeter
> is supposed
> > to be fully JDK13 compliant but does not compile with that
> version of JDK.
> > And unfortunately, I need to do it, even if the reasons are not good ;-)
> >
> > Jacques Desmazieres
> >
> > > -----Message d'origine-----
> > > De : Michael Stover [mailto:mstover1@apache.org]
> > > Envoyé : mercredi 14 septembre 2005 16:31
> > > À : JMeter Dev List
> > > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> > >
> > >
> > > You should explain to your customer that running JMeter on the
> > > production server just means the results will be meaningless,
> so there's
> > > no need to even bother with it.
> > >
> > >
> > >
> > > On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > > > Actually we have to generate automatic performance reports
> > > after install of
> > > > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > > > available is the Weblogic's one. And our customer does not want
> > > to install
> > > > anything else on the production server, nor running the
> > > performance script
> > > > from a separate station running JDK 1.4.
> > > >
> > > > Thanks for your reply
> > > >
> > > > Jacques Desmazieres
> > > >
> > > > > -----Message d'origine-----
> > > > > De : sebb [mailto:sebbaz@gmail.com]
> > > > > Envoyé : mercredi 14 septembre 2005 11:59
> > > > > À : JMeter Developers List
> > > > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > > > >
> > > > >
> > > > > That looks like an accident - we've been trying to maintain 1.3
> > > > > compatibility.
> > > > > I'll have a look at fixing that for 2.1.1.
> > > > >
> > > > > However, be warned that the 1.3 JVM can have problems running
> > > > > JMeter scripts.
> > > > >
> > > > > 1.4 JVMs generally work much better.
> > > > >
> > > > > BTW, why can you not use 1.4?
> > > > >
> > > > > S.
> > > > > On 14/09/05, Jacques Desmazieres
> > > > > <ja...@is2france.com> wrote:
> > > > > > Hello,
> > > > > >
> > > > > > I need to run JMeter with JDK1.3. I retrieved the src build
> > > archive and
> > > > > > tried to compile it. But I have compilation errors in the
> > > core (jorphan)
> > > > > > classes. These errors does not exist anymore if I just replace
> > > > > with Jdk 1.4.
> > > > > >
> > > > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > > > >
> > > > > > Jacques Desmazieres
> > > > > >
> > > > > > There are 2 types of errors:
> > > > > >
> > > > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > > > [javac]
> > > > > >
> > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > > > tionTree.j
> > > > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > > > til.Collection) in org.apache.jorphan.collections.HashTree
> > > and method
> > > > > > add(java.lang.Object) in
> > > > > org.apache.jorphan.collections.ListedHashTree match
> > > > > > [javac]             propTree.add(keys);
> > > > > >
> > > > > > and
> > > > > >
> > > > > > [javac]
> > > > > >
> > > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > > > 78: cannot
> > > > > > resolve symbol
> > > > > > [javac] symbol  : method replaceAll
> > > (java.lang.String,java.lang.String)
> > > > > > [javac] location: class java.lang.String
> > > > > > [javac]             return v.trim().replaceAll("\\s+",
> insertion);
> > > > > >
> > > > > >
> > > > > > JVM version (java -version):
> > > > > > java version "1.3.1"
> > > > > > Java(TM) 2 Runtime Environment, Standard Edition (build
> 1.3.1-b24)
> > > > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail:
> jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> jmeter-dev-help@jakarta.apache.org
> > > > > >
> > > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> jmeter-dev-help@jakarta.apache.org
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Michael Stover <ms...@apache.org>.
JMeter is not jdk1.3 compliant.


On Wed, 2005-09-14 at 16:48 +0200, Jacques Desmazieres wrote:
> I agree with on that point, but the main concern is that JMeter is supposed
> to be fully JDK13 compliant but does not compile with that version of JDK.
> And unfortunately, I need to do it, even if the reasons are not good ;-)
> 
> Jacques Desmazieres
> 
> > -----Message d'origine-----
> > De : Michael Stover [mailto:mstover1@apache.org]
> > Envoyé : mercredi 14 septembre 2005 16:31
> > À : JMeter Dev List
> > Objet : RE: JMeter 2.1 does not compile with JDK 1.3
> >
> >
> > You should explain to your customer that running JMeter on the
> > production server just means the results will be meaningless, so there's
> > no need to even bother with it.
> >
> >
> >
> > On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > > Actually we have to generate automatic performance reports
> > after install of
> > > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > > available is the Weblogic's one. And our customer does not want
> > to install
> > > anything else on the production server, nor running the
> > performance script
> > > from a separate station running JDK 1.4.
> > >
> > > Thanks for your reply
> > >
> > > Jacques Desmazieres
> > >
> > > > -----Message d'origine-----
> > > > De : sebb [mailto:sebbaz@gmail.com]
> > > > Envoyé : mercredi 14 septembre 2005 11:59
> > > > À : JMeter Developers List
> > > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > > >
> > > >
> > > > That looks like an accident - we've been trying to maintain 1.3
> > > > compatibility.
> > > > I'll have a look at fixing that for 2.1.1.
> > > >
> > > > However, be warned that the 1.3 JVM can have problems running
> > > > JMeter scripts.
> > > >
> > > > 1.4 JVMs generally work much better.
> > > >
> > > > BTW, why can you not use 1.4?
> > > >
> > > > S.
> > > > On 14/09/05, Jacques Desmazieres
> > > > <ja...@is2france.com> wrote:
> > > > > Hello,
> > > > >
> > > > > I need to run JMeter with JDK1.3. I retrieved the src build
> > archive and
> > > > > tried to compile it. But I have compilation errors in the
> > core (jorphan)
> > > > > classes. These errors does not exist anymore if I just replace
> > > > with Jdk 1.4.
> > > > >
> > > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > > >
> > > > > Jacques Desmazieres
> > > > >
> > > > > There are 2 types of errors:
> > > > >
> > > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > > [javac]
> > > > >
> > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > > tionTree.j
> > > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > > til.Collection) in org.apache.jorphan.collections.HashTree
> > and method
> > > > > add(java.lang.Object) in
> > > > org.apache.jorphan.collections.ListedHashTree match
> > > > > [javac]             propTree.add(keys);
> > > > >
> > > > > and
> > > > >
> > > > > [javac]
> > > > >
> > > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > > 78: cannot
> > > > > resolve symbol
> > > > > [javac] symbol  : method replaceAll
> > (java.lang.String,java.lang.String)
> > > > > [javac] location: class java.lang.String
> > > > > [javac]             return v.trim().replaceAll("\\s+", insertion);
> > > > >
> > > > >
> > > > > JVM version (java -version):
> > > > > java version "1.3.1"
> > > > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Jacques Desmazieres <ja...@is2france.com>.
I agree with on that point, but the main concern is that JMeter is supposed
to be fully JDK13 compliant but does not compile with that version of JDK.
And unfortunately, I need to do it, even if the reasons are not good ;-)

Jacques Desmazieres

> -----Message d'origine-----
> De : Michael Stover [mailto:mstover1@apache.org]
> Envoyé : mercredi 14 septembre 2005 16:31
> À : JMeter Dev List
> Objet : RE: JMeter 2.1 does not compile with JDK 1.3
>
>
> You should explain to your customer that running JMeter on the
> production server just means the results will be meaningless, so there's
> no need to even bother with it.
>
>
>
> On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> > Actually we have to generate automatic performance reports
> after install of
> > our application on Weblogic 6.1 (I know, it old !) and the only JVM
> > available is the Weblogic's one. And our customer does not want
> to install
> > anything else on the production server, nor running the
> performance script
> > from a separate station running JDK 1.4.
> >
> > Thanks for your reply
> >
> > Jacques Desmazieres
> >
> > > -----Message d'origine-----
> > > De : sebb [mailto:sebbaz@gmail.com]
> > > Envoyé : mercredi 14 septembre 2005 11:59
> > > À : JMeter Developers List
> > > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> > >
> > >
> > > That looks like an accident - we've been trying to maintain 1.3
> > > compatibility.
> > > I'll have a look at fixing that for 2.1.1.
> > >
> > > However, be warned that the 1.3 JVM can have problems running
> > > JMeter scripts.
> > >
> > > 1.4 JVMs generally work much better.
> > >
> > > BTW, why can you not use 1.4?
> > >
> > > S.
> > > On 14/09/05, Jacques Desmazieres
> > > <ja...@is2france.com> wrote:
> > > > Hello,
> > > >
> > > > I need to run JMeter with JDK1.3. I retrieved the src build
> archive and
> > > > tried to compile it. But I have compilation errors in the
> core (jorphan)
> > > > classes. These errors does not exist anymore if I just replace
> > > with Jdk 1.4.
> > > >
> > > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > > >
> > > > Jacques Desmazieres
> > > >
> > > > There are 2 types of errors:
> > > >
> > > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > > [javac]
> > > >
> > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > > tionTree.j
> > > > ava:75: reference to add is ambiguous, both method add(java.u
> > > > til.Collection) in org.apache.jorphan.collections.HashTree
> and method
> > > > add(java.lang.Object) in
> > > org.apache.jorphan.collections.ListedHashTree match
> > > > [javac]             propTree.add(keys);
> > > >
> > > > and
> > > >
> > > > [javac]
> > > >
> > > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > > 78: cannot
> > > > resolve symbol
> > > > [javac] symbol  : method replaceAll
> (java.lang.String,java.lang.String)
> > > > [javac] location: class java.lang.String
> > > > [javac]             return v.trim().replaceAll("\\s+", insertion);
> > > >
> > > >
> > > > JVM version (java -version):
> > > > java version "1.3.1"
> > > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > >
> > > >
> > > >
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> > >
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Michael Stover <ms...@apache.org>.
You should explain to your customer that running JMeter on the
production server just means the results will be meaningless, so there's
no need to even bother with it.



On Wed, 2005-09-14 at 12:12 +0200, Jacques Desmazieres wrote:
> Actually we have to generate automatic performance reports after install of
> our application on Weblogic 6.1 (I know, it old !) and the only JVM
> available is the Weblogic's one. And our customer does not want to install
> anything else on the production server, nor running the performance script
> from a separate station running JDK 1.4.
> 
> Thanks for your reply
> 
> Jacques Desmazieres
> 
> > -----Message d'origine-----
> > De : sebb [mailto:sebbaz@gmail.com]
> > Envoyé : mercredi 14 septembre 2005 11:59
> > À : JMeter Developers List
> > Objet : Re: JMeter 2.1 does not compile with JDK 1.3
> >
> >
> > That looks like an accident - we've been trying to maintain 1.3
> > compatibility.
> > I'll have a look at fixing that for 2.1.1.
> >
> > However, be warned that the 1.3 JVM can have problems running
> > JMeter scripts.
> >
> > 1.4 JVMs generally work much better.
> >
> > BTW, why can you not use 1.4?
> >
> > S.
> > On 14/09/05, Jacques Desmazieres
> > <ja...@is2france.com> wrote:
> > > Hello,
> > >
> > > I need to run JMeter with JDK1.3. I retrieved the src build archive and
> > > tried to compile it. But I have compilation errors in the core (jorphan)
> > > classes. These errors does not exist anymore if I just replace
> > with Jdk 1.4.
> > >
> > > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> > >
> > > Jacques Desmazieres
> > >
> > > There are 2 types of errors:
> > >
> > > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > > [javac]
> > >
> > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> > tionTree.j
> > > ava:75: reference to add is ambiguous, both method add(java.u
> > > til.Collection) in org.apache.jorphan.collections.HashTree and method
> > > add(java.lang.Object) in
> > org.apache.jorphan.collections.ListedHashTree match
> > > [javac]             propTree.add(keys);
> > >
> > > and
> > >
> > > [javac]
> > >
> > D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> > 78: cannot
> > > resolve symbol
> > > [javac] symbol  : method replaceAll  (java.lang.String,java.lang.String)
> > > [javac] location: class java.lang.String
> > > [javac]             return v.trim().replaceAll("\\s+", insertion);
> > >
> > >
> > > JVM version (java -version):
> > > java version "1.3.1"
> > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
> >
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


RE: JMeter 2.1 does not compile with JDK 1.3

Posted by Jacques Desmazieres <ja...@is2france.com>.
Actually we have to generate automatic performance reports after install of
our application on Weblogic 6.1 (I know, it old !) and the only JVM
available is the Weblogic's one. And our customer does not want to install
anything else on the production server, nor running the performance script
from a separate station running JDK 1.4.

Thanks for your reply

Jacques Desmazieres

> -----Message d'origine-----
> De : sebb [mailto:sebbaz@gmail.com]
> Envoyé : mercredi 14 septembre 2005 11:59
> À : JMeter Developers List
> Objet : Re: JMeter 2.1 does not compile with JDK 1.3
>
>
> That looks like an accident - we've been trying to maintain 1.3
> compatibility.
> I'll have a look at fixing that for 2.1.1.
>
> However, be warned that the 1.3 JVM can have problems running
> JMeter scripts.
>
> 1.4 JVMs generally work much better.
>
> BTW, why can you not use 1.4?
>
> S.
> On 14/09/05, Jacques Desmazieres
> <ja...@is2france.com> wrote:
> > Hello,
> >
> > I need to run JMeter with JDK1.3. I retrieved the src build archive and
> > tried to compile it. But I have compilation errors in the core (jorphan)
> > classes. These errors does not exist anymore if I just replace
> with Jdk 1.4.
> >
> > Is JMeter still supposed to be JDK 1.3 fully compliant ?
> >
> > Jacques Desmazieres
> >
> > There are 2 types of errors:
> >
> > [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> > [javac]
> >
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\Configura
> tionTree.j
> > ava:75: reference to add is ambiguous, both method add(java.u
> > til.Collection) in org.apache.jorphan.collections.HashTree and method
> > add(java.lang.Object) in
> org.apache.jorphan.collections.ListedHashTree match
> > [javac]             propTree.add(keys);
> >
> > and
> >
> > [javac]
> >
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:3
> 78: cannot
> > resolve symbol
> > [javac] symbol  : method replaceAll  (java.lang.String,java.lang.String)
> > [javac] location: class java.lang.String
> > [javac]             return v.trim().replaceAll("\\s+", insertion);
> >
> >
> > JVM version (java -version):
> > java version "1.3.1"
> > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>
>




---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


Re: JMeter 2.1 does not compile with JDK 1.3

Posted by sebb <se...@gmail.com>.
That looks like an accident - we've been trying to maintain 1.3 compatibility. 
I'll have a look at fixing that for 2.1.1.

However, be warned that the 1.3 JVM can have problems running JMeter scripts.

1.4 JVMs generally work much better.

BTW, why can you not use 1.4?

S.
On 14/09/05, Jacques Desmazieres <ja...@is2france.com> wrote:
> Hello,
> 
> I need to run JMeter with JDK1.3. I retrieved the src build archive and
> tried to compile it. But I have compilation errors in the core (jorphan)
> classes. These errors does not exist anymore if I just replace with Jdk 1.4.
> 
> Is JMeter still supposed to be JDK 1.3 fully compliant ?
> 
> Jacques Desmazieres
> 
> There are 2 types of errors:
> 
> [javac] Compiling 37 source files to D:\JAKART~1.1\build\jorphan
> [javac]
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\collections\ConfigurationTree.j
> ava:75: reference to add is ambiguous, both method add(java.u
> til.Collection) in org.apache.jorphan.collections.HashTree and method
> add(java.lang.Object) in org.apache.jorphan.collections.ListedHashTree match
> [javac]             propTree.add(keys);
> 
> and
> 
> [javac]
> D:\JAKART~1.1\src\jorphan\org\apache\jorphan\util\Converter.java:378: cannot
> resolve symbol
> [javac] symbol  : method replaceAll  (java.lang.String,java.lang.String)
> [javac] location: class java.lang.String
> [javac]             return v.trim().replaceAll("\\s+", insertion);
> 
> 
> JVM version (java -version):
> java version "1.3.1"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org