You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by CharekC <ch...@gmail.com> on 2007/09/07 18:17:08 UTC

IBM JRE/JDK with Jmeter and SSL

Hi,
 does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5 etc)
to work with Jmeter in SSL mode? I have tried modifying the
jmeter.properties file (ssl.provider and ssl.pkgs values) and copying over
security libs into the jmeter/lib directory. But upon SSL playback, I
receive

2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
	at java.lang.J9VMInternals.verifyImpl(Native Method)
	at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
	at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
	at java.lang.Class.forNameImpl(Native Method)
	at java.lang.Class.forName(Class.java:131)
	at org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
	at
org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
	at
org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
	at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
	at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
	at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
	at java.lang.Thread.run(Thread.java:788)
-- 
View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
Sent from the JMeter - User mailing list archive at Nabble.com.


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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by CharekC <ch...@gmail.com>.
>> What was the change you needed to make?

IBM's JRE/JDK has different gc arguments so we need rem out the default ones
in jmeter.bat to startup

rem See the unix startup file for the rationale of the following parameters,
rem including some tuning recommendations
set HEAP=-Xms256m -Xmx256m
rem set NEW=-XX:NewSize=128m -XX:MaxNewSize=128m
rem set SURVIVOR=-XX:SurvivorRatio=8 -XX:TargetSurvivorRatio=50%
rem set TENURING=-XX:MaxTenuringThreshold=2
rem set EVACUATION=-XX:MaxLiveObjectEvacuationRatio=20%
rem set RMIGC=-Dsun.rmi.dgc.client.gcInterval=600000
-Dsun.rmi.dgc.server.gcInterval=600000
rem set PERM=-XX:PermSize=64m -XX:MaxPermSize=64m
rem set DEBUG=-verbose:gc -XX:+PrintTenuringDistribution


>> I thought that was a feature of the SSL implementation?
>> I'm not aware that JMeter has any restriction in this regard.
>> However, it might be worth changing the JMeter property:
>>    https.default.protocol
>> which defaults to TLS - does this preclude SSLv3 ?

Yes this works, in user.properties I added
https.default.protocol=SSLv3

Now all my v2 and v3 SSL server requests are processed.
Thanks!
-- 
View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12594079
Sent from the JMeter - User mailing list archive at Nabble.com.


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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by sebb <se...@gmail.com>.
On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>
> Thanks
>   Jmeter 2.3RC4 works fine with IBM JRE 1.5 in SSL mode v2. I only had to
> modify jmeter.bat to get it to start correctly.

What was the change you needed to make?

> However, it does not seem to
> support SSL v3 as for this version I get ->
> Thread Group 1-1, handling exception: javax.net.ssl.SSLHandshakeException:
> Server chose unsupported or disabled protocol: SSLv3
> Thread Group 1-1, SEND TLSv1 ALERT:  fatal, description = handshake_failure
>
> Do you know how if SSL v3 will be supported?
>

I thought that was a feature of the SSL implementation?

I'm not aware that JMeter has any restriction in this regard.

However, it might be worth changing the JMeter property:
   https.default.protocol
which defaults to TLS - does this preclude SSLv3 ?

>
> sebb-2 wrote:
> >
> > Try 2.3RC4 - 2.2 had some dependencies on sun classes.
> >
> > And the SSL handling is much better.
> >
> > On 07/09/2007, CharekC <ch...@gmail.com> wrote:
> >>
> >> Hi,
> >>  here's the following info I have
> >>
> >> C:\jakarta-jmeter-2.2\bin>jmeter -v
> >> Copyright (c) 1998-2006 The Apache Software Foundation
> >> Version 2.2
> >>
> >> C:\jakarta-jmeter-2.2\bin>java -fullversion
> >> java full version "J2RE 1.5.0 IBM Windows 32 build pwi32devifx-20060124"
> >>
> >> I tried the following SSL settings in jmeter.properties
> >> #ssl.provider=com.ibm.jsse2.IBMJSSEProvider2
> >> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
> >>
> >> #ssl.provider=com.ibm.crypto.provider.IBMJCE
> >> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
> >>
> >>
> >> sebb-2 wrote:
> >> >
> >> > Which version of JMeter are you using?
> >> >
> >> > Earlier versions had some dependencies on sun packages, but I think
> >> > they have all been removed now. [If not, then we need to know!]
> >> >
> >> > On 07/09/2007, CharekC <ch...@gmail.com> wrote:
> >> >>
> >> >> Hi,
> >> >>  does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5
> >> >> etc)
> >> >> to work with Jmeter in SSL mode? I have tried modifying the
> >> >> jmeter.properties file (ssl.provider and ssl.pkgs values) and copying
> >> >> over
> >> >> security libs into the jmeter/lib directory. But upon SSL playback, I
> >> >> receive
> >> >>
> >> >> 2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
> >> >> java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
> >> >>        at java.lang.J9VMInternals.verifyImpl(Native Method)
> >> >>        at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
> >> >>        at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
> >> >>        at java.lang.Class.forNameImpl(Native Method)
> >> >>        at java.lang.Class.forName(Class.java:131)
> >> >>        at
> >> >> org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
> >> >>        at
> >> >>
> >> org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
> >> >>        at
> >> >>
> >> org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
> >> >>        at
> >> >>
> >> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
> >> >>        at
> >> >>
> >> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
> >> >>        at
> >> >> org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
> >> >>        at java.lang.Thread.run(Thread.java:788)
> >> >> --
> >> >> View this message in context:
> >> >>
> >> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
> >> >> Sent from the JMeter - User mailing list archive at Nabble.com.
> >> >>
> >> >>
> >> >> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> >> >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >> >>
> >> >>
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> >> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12560052
> >> Sent from the JMeter - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12563659
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by CharekC <ch...@gmail.com>.
Thanks
   Jmeter 2.3RC4 works fine with IBM JRE 1.5 in SSL mode v2. I only had to
modify jmeter.bat to get it to start correctly. However, it does not seem to
support SSL v3 as for this version I get ->
Thread Group 1-1, handling exception: javax.net.ssl.SSLHandshakeException:
Server chose unsupported or disabled protocol: SSLv3
Thread Group 1-1, SEND TLSv1 ALERT:  fatal, description = handshake_failure

Do you know how if SSL v3 will be supported?



sebb-2 wrote:
> 
> Try 2.3RC4 - 2.2 had some dependencies on sun classes.
> 
> And the SSL handling is much better.
> 
> On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>>
>> Hi,
>>  here's the following info I have
>>
>> C:\jakarta-jmeter-2.2\bin>jmeter -v
>> Copyright (c) 1998-2006 The Apache Software Foundation
>> Version 2.2
>>
>> C:\jakarta-jmeter-2.2\bin>java -fullversion
>> java full version "J2RE 1.5.0 IBM Windows 32 build pwi32devifx-20060124"
>>
>> I tried the following SSL settings in jmeter.properties
>> #ssl.provider=com.ibm.jsse2.IBMJSSEProvider2
>> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
>>
>> #ssl.provider=com.ibm.crypto.provider.IBMJCE
>> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
>>
>>
>> sebb-2 wrote:
>> >
>> > Which version of JMeter are you using?
>> >
>> > Earlier versions had some dependencies on sun packages, but I think
>> > they have all been removed now. [If not, then we need to know!]
>> >
>> > On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>> >>
>> >> Hi,
>> >>  does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5
>> >> etc)
>> >> to work with Jmeter in SSL mode? I have tried modifying the
>> >> jmeter.properties file (ssl.provider and ssl.pkgs values) and copying
>> >> over
>> >> security libs into the jmeter/lib directory. But upon SSL playback, I
>> >> receive
>> >>
>> >> 2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
>> >> java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
>> >>        at java.lang.J9VMInternals.verifyImpl(Native Method)
>> >>        at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
>> >>        at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
>> >>        at java.lang.Class.forNameImpl(Native Method)
>> >>        at java.lang.Class.forName(Class.java:131)
>> >>        at
>> >> org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
>> >>        at
>> >>
>> org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
>> >>        at
>> >>
>> org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
>> >>        at
>> >>
>> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
>> >>        at
>> >>
>> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
>> >>        at
>> >> org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
>> >>        at java.lang.Thread.run(Thread.java:788)
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
>> >> Sent from the JMeter - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
>> >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>> >>
>> >>
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
>> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>> >
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12560052
>> Sent from the JMeter - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12563659
Sent from the JMeter - User mailing list archive at Nabble.com.


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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by sebb <se...@gmail.com>.
Try 2.3RC4 - 2.2 had some dependencies on sun classes.

And the SSL handling is much better.

On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>
> Hi,
>  here's the following info I have
>
> C:\jakarta-jmeter-2.2\bin>jmeter -v
> Copyright (c) 1998-2006 The Apache Software Foundation
> Version 2.2
>
> C:\jakarta-jmeter-2.2\bin>java -fullversion
> java full version "J2RE 1.5.0 IBM Windows 32 build pwi32devifx-20060124"
>
> I tried the following SSL settings in jmeter.properties
> #ssl.provider=com.ibm.jsse2.IBMJSSEProvider2
> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
>
> #ssl.provider=com.ibm.crypto.provider.IBMJCE
> #ssl.pkgs=com.ibm.net.ssl.internal.www.protocol
>
>
> sebb-2 wrote:
> >
> > Which version of JMeter are you using?
> >
> > Earlier versions had some dependencies on sun packages, but I think
> > they have all been removed now. [If not, then we need to know!]
> >
> > On 07/09/2007, CharekC <ch...@gmail.com> wrote:
> >>
> >> Hi,
> >>  does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5
> >> etc)
> >> to work with Jmeter in SSL mode? I have tried modifying the
> >> jmeter.properties file (ssl.provider and ssl.pkgs values) and copying
> >> over
> >> security libs into the jmeter/lib directory. But upon SSL playback, I
> >> receive
> >>
> >> 2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
> >> java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
> >>        at java.lang.J9VMInternals.verifyImpl(Native Method)
> >>        at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
> >>        at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
> >>        at java.lang.Class.forNameImpl(Native Method)
> >>        at java.lang.Class.forName(Class.java:131)
> >>        at
> >> org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
> >>        at
> >> org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
> >>        at
> >> org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
> >>        at
> >> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
> >>        at
> >> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
> >>        at
> >> org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
> >>        at java.lang.Thread.run(Thread.java:788)
> >> --
> >> View this message in context:
> >> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
> >> Sent from the JMeter - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12560052
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by CharekC <ch...@gmail.com>.
Hi,
 here's the following info I have

C:\jakarta-jmeter-2.2\bin>jmeter -v
Copyright (c) 1998-2006 The Apache Software Foundation
Version 2.2

C:\jakarta-jmeter-2.2\bin>java -fullversion
java full version "J2RE 1.5.0 IBM Windows 32 build pwi32devifx-20060124"

I tried the following SSL settings in jmeter.properties
#ssl.provider=com.ibm.jsse2.IBMJSSEProvider2
#ssl.pkgs=com.ibm.net.ssl.internal.www.protocol

#ssl.provider=com.ibm.crypto.provider.IBMJCE
#ssl.pkgs=com.ibm.net.ssl.internal.www.protocol


sebb-2 wrote:
> 
> Which version of JMeter are you using?
> 
> Earlier versions had some dependencies on sun packages, but I think
> they have all been removed now. [If not, then we need to know!]
> 
> On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>>
>> Hi,
>>  does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5
>> etc)
>> to work with Jmeter in SSL mode? I have tried modifying the
>> jmeter.properties file (ssl.provider and ssl.pkgs values) and copying
>> over
>> security libs into the jmeter/lib directory. But upon SSL playback, I
>> receive
>>
>> 2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
>> java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
>>        at java.lang.J9VMInternals.verifyImpl(Native Method)
>>        at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
>>        at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
>>        at java.lang.Class.forNameImpl(Native Method)
>>        at java.lang.Class.forName(Class.java:131)
>>        at
>> org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
>>        at
>> org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
>>        at
>> org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
>>        at
>> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
>>        at
>> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
>>        at
>> org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
>>        at java.lang.Thread.run(Thread.java:788)
>> --
>> View this message in context:
>> http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
>> Sent from the JMeter - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12560052
Sent from the JMeter - User mailing list archive at Nabble.com.


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


Re: IBM JRE/JDK with Jmeter and SSL

Posted by sebb <se...@gmail.com>.
Which version of JMeter are you using?

Earlier versions had some dependencies on sun packages, but I think
they have all been removed now. [If not, then we need to know!]

On 07/09/2007, CharekC <ch...@gmail.com> wrote:
>
> Hi,
>  does anyone have information about getting IBM's JDK/JRE (1.4.2, 1.5 etc)
> to work with Jmeter in SSL mode? I have tried modifying the
> jmeter.properties file (ssl.provider and ssl.pkgs values) and copying over
> security libs into the jmeter/lib directory. But upon SSL playback, I
> receive
>
> 2007/09/06 18:22:11 ERROR - jmeter.threads.JMeterThread: Test failed!
> java.lang.NoClassDefFoundError: com.sun.net.ssl.HostnameVerifier
>        at java.lang.J9VMInternals.verifyImpl(Native Method)
>        at java.lang.J9VMInternals.verify(J9VMInternals.java:42)
>        at java.lang.J9VMInternals.initialize(J9VMInternals.java:111)
>        at java.lang.Class.forNameImpl(Native Method)
>        at java.lang.Class.forName(Class.java:131)
>        at org.apache.jmeter.util.SSLManager.getInstance(SSLManager.java:229)
>        at
> org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:148)
>        at
> org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:404)
>        at
> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:658)
>        at
> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:647)
>        at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
>        at java.lang.Thread.run(Thread.java:788)
> --
> View this message in context: http://www.nabble.com/IBM-JRE-JDK-with-Jmeter-and-SSL-tf4402208.html#a12558459
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

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