Re: Mail Visualizer returns "550 Please use a fully-qualified domain name for HELO/EHLO"

2009-11-19 Thread sebb
On 19/11/2009, Jörg Kalsbach  wrote:
> Hi all,
>
>
>
>  I use the Mailer Visualizer and try to send smtp requests. My understanding
>  is that the Mailer Visualizer is in fact a sampler for smtp. Is that
>  correct?
>
>  The visualizer is not able to send a message with “Test Mail”. The error
>  message is “550 Please use a fully-qualified domain name for HELO/EHLO”
>
>
>
>  The wireshark capture shows:
>
>
>
>  220 www76.your-server.de ESMTP Exim 4.69 Thu, 19 Nov 2009 09:46:21 +0100
>
>  EHLO jkalsbach
>
>  250-www76.your-server.de Hello jkalsbach [77.25.144.134]
>
>  250-SIZE 104857600
>
>  250-ETRN
>
>  250-PIPELINING
>
>  250-AUTH LOGIN PLAIN
>
>  250-STARTTLS
>
>  250 HELP
>
>  MAIL FROM:
>
>  550 Please use a fully-qualified domain name for HELO/EHLO
>
>  RSET
>
>  250 Reset OK
>
>  QUIT
>
>  221 www76.your-server.de closing connection
>
>
>
>
>
>  IP Config shows:
>
> Hostname. . . . . . . . . . . . . : jkalsbach
>
> Primary DNS-Suffix  . . . . . . . : jk-itberatung.de
>
>
>
>  I can reproduce this with telnet. The solution would be an ELHO that reads
>  “EHLO jkalsbach.jk-itberatung.de”. This works with telnet. The problem is
>  that the hostname for the EHLO ist determined by
>  “InetAddress.getLocalHost().getHostName()”. And this returns the hostname
>  and not the hostname with primary DNS-Suffix. I tried this on Windows and
>  Linux with the same result.
>
>
>
>  Can I configure away this problem? Is this a known behavior? Are there known
>  solutions/workarounds?

This is not a known problem - or at least no-one else has reported it.
It seems that your MTA is more demanding.

It looks like the solution is to define the property "mail.smtp.localhost", see:

http://java.sun.com/products/javamail/javadocs/com/sun/mail/smtp/SMTPTransport.html#setLocalHost%28java.lang.String%29

It may work if you define this as a Java system property; if not, then
a code change will be needed.

>  Many thanks in advance!
>
>
>
>  Cheers,
>
>
>
>
>  Jörg
>
>
>
>
>
>

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



Re: Mail Visualizer

2007-08-22 Thread sebb
On 22/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have checked out using a Beanshell Assertion. With it I can check the 
> Response Data and if the response is not OK I can set 'Failure = true' but 
> that does nothing for my Mail Visualiser.

The failure count does not get updated, but it will still send the
e-mail if required.

> So what do you mean by saying I can 'mark the response as failed'?

If an Assertion fails, then it marks the response as failed.

> Regards,
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Wed 22/08/2007 3:45 AM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> As for HTTP Requests - which may return status 200 but report an error
> in the document - you can use an Assertion to check the response and
> have it mark the response as failed if the content is not to your
> liking.
>
> On 21/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I have verified that the Mail Visualiser triggers an email when associated 
> > with a Java Request when the Status field in the sampler is set <> OK. I am 
> > using Web Service requests and there is no apparent equivalent of the 
> > Status field for these requests. So can the Mail Visualiser work with Web 
> > Service requests?
> >
> > Regards,
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Tue 14/08/2007 12:26 AM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > The status is displayed in the Listeners, which run after the assertions.
> >
> > The Mail Visualiser is a Listener, so will see the same status as the
> > other Listeners.
> >
> > I've tested it and it works OK for me.
> >
> > On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > Hi Sebb,
> > >
> > > No sign of anything in the JMeter log.
> > > Where should I be able to see status change?
> > >
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > > mobile: 0402 006 291
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > > 
> > >
> > > From: sebb [mailto:[EMAIL PROTECTED]
> > > Sent: Fri 10/08/2007 7:30 PM
> > > To: JMeter Users List
> > > Subject: Re: Mail Visualizer
> > >
> > >
> > >
> > > I've looked at the code (and run a test) and found that although the
> > > Mailer Visualiser only looks at the SampleResult status, this is
> > > actually changed when the assertions are run, so it should work OK.
> > >
> > > Have you checked the jmeter log file for errors?
> > >
> > > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > > status, not the AssertionResult or Sample class used by the Listeners.
> > > >
> > > > This needs looking into further... not sure if there is a work-round at 
> > > > present.
> > > >
> > > > Perhaps you could file a bug report for this?
> > > >
> > > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > > Hi All,
> > > > >
> > > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > > based on 'failed' response assertions. Any suggestions on how to send 
> > > > > email notifications if assertions fail? It appears to me that I 
> > > > > probably need something like a BeanShell listener.
> > > > &g

RE: Mail Visualizer

2007-08-21 Thread David Schulberg
Hi,
 
I have checked out using a Beanshell Assertion. With it I can check the 
Response Data and if the response is not OK I can set 'Failure = true' but that 
does nothing for my Mail Visualiser. 
 
So what do you mean by saying I can 'mark the response as failed'?
 
Regards,
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: sebb [mailto:[EMAIL PROTECTED]
Sent: Wed 22/08/2007 3:45 AM
To: JMeter Users List
Subject: Re: Mail Visualizer



As for HTTP Requests - which may return status 200 but report an error
in the document - you can use an Assertion to check the response and
have it mark the response as failed if the content is not to your
liking.

On 21/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have verified that the Mail Visualiser triggers an email when associated 
> with a Java Request when the Status field in the sampler is set <> OK. I am 
> using Web Service requests and there is no apparent equivalent of the Status 
> field for these requests. So can the Mail Visualiser work with Web Service 
> requests?
>
> Regards,
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Tue 14/08/2007 12:26 AM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> The status is displayed in the Listeners, which run after the assertions.
>
> The Mail Visualiser is a Listener, so will see the same status as the
> other Listeners.
>
> I've tested it and it works OK for me.
>
> On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi Sebb,
> >
> > No sign of anything in the JMeter log.
> > Where should I be able to see status change?
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > mobile: 0402 006 291
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Fri 10/08/2007 7:30 PM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > I've looked at the code (and run a test) and found that although the
> > Mailer Visualiser only looks at the SampleResult status, this is
> > actually changed when the assertions are run, so it should work OK.
> >
> > Have you checked the jmeter log file for errors?
> >
> > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > status, not the AssertionResult or Sample class used by the Listeners.
> > >
> > > This needs looking into further... not sure if there is a work-round at 
> > > present.
> > >
> > > Perhaps you could file a bug report for this?
> > >
> > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > Hi All,
> > > >
> > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > based on 'failed' response assertions. Any suggestions on how to send 
> > > > email notifications if assertions fail? It appears to me that I 
> > > > probably need something like a BeanShell listener.
> > > >
> > > > David Schulberg
> > > >
> > > > Object Consulting | Senior Consultant
> > > > email: [EMAIL PROTECTED]
> > > > 
> > > > consulting | development | training | support
> > > > our experience makes the difference
> > > >
> > > > 
> > > >
> > > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > > Sent: Thu 2/08/2007 5:52 PM
> > > > To: JMeter Users List
> > > > Subject: Mail Visualizer
> > > >
> > > >
> > > >
> > > > Hi All,
> >

Re: Mail Visualizer

2007-08-21 Thread sebb
As for HTTP Requests - which may return status 200 but report an error
in the document - you can use an Assertion to check the response and
have it mark the response as failed if the content is not to your
liking.

On 21/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have verified that the Mail Visualiser triggers an email when associated 
> with a Java Request when the Status field in the sampler is set <> OK. I am 
> using Web Service requests and there is no apparent equivalent of the Status 
> field for these requests. So can the Mail Visualiser work with Web Service 
> requests?
>
> Regards,
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Tue 14/08/2007 12:26 AM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> The status is displayed in the Listeners, which run after the assertions.
>
> The Mail Visualiser is a Listener, so will see the same status as the
> other Listeners.
>
> I've tested it and it works OK for me.
>
> On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi Sebb,
> >
> > No sign of anything in the JMeter log.
> > Where should I be able to see status change?
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > mobile: 0402 006 291
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Fri 10/08/2007 7:30 PM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > I've looked at the code (and run a test) and found that although the
> > Mailer Visualiser only looks at the SampleResult status, this is
> > actually changed when the assertions are run, so it should work OK.
> >
> > Have you checked the jmeter log file for errors?
> >
> > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > status, not the AssertionResult or Sample class used by the Listeners.
> > >
> > > This needs looking into further... not sure if there is a work-round at 
> > > present.
> > >
> > > Perhaps you could file a bug report for this?
> > >
> > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > Hi All,
> > > >
> > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > based on 'failed' response assertions. Any suggestions on how to send 
> > > > email notifications if assertions fail? It appears to me that I 
> > > > probably need something like a BeanShell listener.
> > > >
> > > > David Schulberg
> > > >
> > > > Object Consulting | Senior Consultant
> > > > email: [EMAIL PROTECTED]
> > > > 
> > > > consulting | development | training | support
> > > > our experience makes the difference
> > > >
> > > > 
> > > >
> > > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > > Sent: Thu 2/08/2007 5:52 PM
> > > > To: JMeter Users List
> > > > Subject: Mail Visualizer
> > > >
> > > >
> > > >
> > > > Hi All,
> > > >
> > > > Have set up a Mail Visualizer which tests OK.
> > > > When I run a script where I have a failed assertion I thought the Mail 
> > > > Visualizer would send an email because it is set to respond when 
> > > > Failures=1 but it doesn't.
> > > >
> > > > I have
> > > > o - Request
> > > > |   - Response Assertion
> > > > |   - Assertion Results
> > > > --Mail Visualizer
> > > >
> > > > It won't work if I have my Mail Visualizer tailed off my Assertion 
> > > > Results either.
> > > >

RE: Mail Visualizer

2007-08-20 Thread David Schulberg
Hi,
 
I have verified that the Mail Visualiser triggers an email when associated with 
a Java Request when the Status field in the sampler is set <> OK. I am using 
Web Service requests and there is no apparent equivalent of the Status field 
for these requests. So can the Mail Visualiser work with Web Service requests?
 
Regards,
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: sebb [mailto:[EMAIL PROTECTED]
Sent: Tue 14/08/2007 12:26 AM
To: JMeter Users List
Subject: Re: Mail Visualizer



The status is displayed in the Listeners, which run after the assertions.

The Mail Visualiser is a Listener, so will see the same status as the
other Listeners.

I've tested it and it works OK for me.

On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi Sebb,
>
> No sign of anything in the JMeter log.
> Where should I be able to see status change?
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> mobile: 0402 006 291
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Fri 10/08/2007 7:30 PM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> I've looked at the code (and run a test) and found that although the
> Mailer Visualiser only looks at the SampleResult status, this is
> actually changed when the assertions are run, so it should work OK.
>
> Have you checked the jmeter log file for errors?
>
> On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > status, not the AssertionResult or Sample class used by the Listeners.
> >
> > This needs looking into further... not sure if there is a work-round at 
> > present.
> >
> > Perhaps you could file a bug report for this?
> >
> > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >
> > > OK it would appear that failures are classified only in terms of HTTP 
> > > response codes so I can't use a Mailer Visualizer to trigger emails based 
> > > on 'failed' response assertions. Any suggestions on how to send email 
> > > notifications if assertions fail? It appears to me that I probably need 
> > > something like a BeanShell listener.
> > >
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > > 
> > >
> > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > Sent: Thu 2/08/2007 5:52 PM
> > > To: JMeter Users List
> > > Subject: Mail Visualizer
> > >
> > >
> > >
> > > Hi All,
> > >
> > > Have set up a Mail Visualizer which tests OK.
> > > When I run a script where I have a failed assertion I thought the Mail 
> > > Visualizer would send an email because it is set to respond when 
> > > Failures=1 but it doesn't.
> > >
> > > I have
> > > o - Request
> > > |   - Response Assertion
> > > |   - Assertion Results
> > > --Mail Visualizer
> > >
> > > It won't work if I have my Mail Visualizer tailed off my Assertion 
> > > Results either.
> > >
> > > Can I have my Mail Visualizer tailed off multiple requests?
> > > Can I use variables in the Failure Subject field to report which 
> > > particular request(s) have failed?
> > >
> > >
> > > Regards,
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: Mail Visualizer

2007-08-15 Thread sebb
[Try sending again, last attempt failed with DNS error]

Does the mail test button work?

There is no script; it's just a question of using the correct values
in the address and SMTP host fields.

However, if you provide incorrect detaIls, you should see an error in
jmeter.log when the failure limit is reached.

I'll send you a sample JMX privately.

On 15/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I get no mails from the Mailer Visualizer when it is put after the 'Assertion 
> Results' of a 'Response Assertion' that fails.
>
> You tell me you do get emails. Do you have a script that works for which I 
> would just need to change the Addressee and SMTP Host in the Mailer 
> Visualizer?
>
> Regards,
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Tue 14/08/2007 7:21 PM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> No, I was referring to other visualisers such as the Table Listener,
> which will show the sample as having failed.
>
> The failure field does not seem to get updated in the Mailer GUI, but
> it will still send the message if necessary.
>
> On 14/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I am still puzzled. I have a 'Mail Visualiser' straight after an Assertion 
> > that fails. I assume you mean the Failures field in the Mail Visualiser as 
> > being reflective of status. Even though the preceding Assertion has failed 
> > the Failures field = 0 all the time.
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Tue 14/08/2007 12:26 AM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > The status is displayed in the Listeners, which run after the assertions.
> >
> > The Mail Visualiser is a Listener, so will see the same status as the
> > other Listeners.
> >
> > I've tested it and it works OK for me.
> >
> > On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > Hi Sebb,
> > >
> > > No sign of anything in the JMeter log.
> > > Where should I be able to see status change?
> > >
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > > mobile: 0402 006 291
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > > 
> > >
> > > From: sebb [mailto:[EMAIL PROTECTED]
> > > Sent: Fri 10/08/2007 7:30 PM
> > > To: JMeter Users List
> > > Subject: Re: Mail Visualizer
> > >
> > >
> > >
> > > I've looked at the code (and run a test) and found that although the
> > > Mailer Visualiser only looks at the SampleResult status, this is
> > > actually changed when the assertions are run, so it should work OK.
> > >
> > > Have you checked the jmeter log file for errors?
> > >
> > > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > > status, not the AssertionResult or Sample class used by the Listeners.
> > > >
> > > > This needs looking into further... not sure if there is a work-round at 
> > > > present.
> > > >
> > > > Perhaps you could file a bug report for this?
> > > >
> > > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > > Hi All,
> > > > >
> > > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > > based on 'failed' response assertions. Any suggestions on how to send 
&g

RE: Mail Visualizer

2007-08-14 Thread David Schulberg
Hi,
 
I get no mails from the Mailer Visualizer when it is put after the 'Assertion 
Results' of a 'Response Assertion' that fails.
 
You tell me you do get emails. Do you have a script that works for which I 
would just need to change the Addressee and SMTP Host in the Mailer Visualizer?
 
Regards,
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: sebb [mailto:[EMAIL PROTECTED]
Sent: Tue 14/08/2007 7:21 PM
To: JMeter Users List
Subject: Re: Mail Visualizer



No, I was referring to other visualisers such as the Table Listener,
which will show the sample as having failed.

The failure field does not seem to get updated in the Mailer GUI, but
it will still send the message if necessary.

On 14/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am still puzzled. I have a 'Mail Visualiser' straight after an Assertion 
> that fails. I assume you mean the Failures field in the Mail Visualiser as 
> being reflective of status. Even though the preceding Assertion has failed 
> the Failures field = 0 all the time.
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Tue 14/08/2007 12:26 AM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> The status is displayed in the Listeners, which run after the assertions.
>
> The Mail Visualiser is a Listener, so will see the same status as the
> other Listeners.
>
> I've tested it and it works OK for me.
>
> On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi Sebb,
> >
> > No sign of anything in the JMeter log.
> > Where should I be able to see status change?
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > mobile: 0402 006 291
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Fri 10/08/2007 7:30 PM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > I've looked at the code (and run a test) and found that although the
> > Mailer Visualiser only looks at the SampleResult status, this is
> > actually changed when the assertions are run, so it should work OK.
> >
> > Have you checked the jmeter log file for errors?
> >
> > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > status, not the AssertionResult or Sample class used by the Listeners.
> > >
> > > This needs looking into further... not sure if there is a work-round at 
> > > present.
> > >
> > > Perhaps you could file a bug report for this?
> > >
> > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > Hi All,
> > > >
> > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > based on 'failed' response assertions. Any suggestions on how to send 
> > > > email notifications if assertions fail? It appears to me that I 
> > > > probably need something like a BeanShell listener.
> > > >
> > > > David Schulberg
> > > >
> > > > Object Consulting | Senior Consultant
> > > > email: [EMAIL PROTECTED]
> > > > 
> > > > consulting | development | training | support
> > > > our experience makes the difference
> > > >
> > > > 
> > > >
> > > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > > Sent: Thu 2/08/2007 5:52 PM
> > > > To: JMeter Users List
> > > > Subject: Mail Visualizer
> > > >
> > > >
> > > >
> > > > Hi All,
> > > >
> > > > Ha

Re: Mail Visualizer

2007-08-14 Thread sebb
No, I was referring to other visualisers such as the Table Listener,
which will show the sample as having failed.

The failure field does not seem to get updated in the Mailer GUI, but
it will still send the message if necessary.

On 14/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am still puzzled. I have a 'Mail Visualiser' straight after an Assertion 
> that fails. I assume you mean the Failures field in the Mail Visualiser as 
> being reflective of status. Even though the preceding Assertion has failed 
> the Failures field = 0 all the time.
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Tue 14/08/2007 12:26 AM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> The status is displayed in the Listeners, which run after the assertions.
>
> The Mail Visualiser is a Listener, so will see the same status as the
> other Listeners.
>
> I've tested it and it works OK for me.
>
> On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi Sebb,
> >
> > No sign of anything in the JMeter log.
> > Where should I be able to see status change?
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> > mobile: 0402 006 291
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: sebb [mailto:[EMAIL PROTECTED]
> > Sent: Fri 10/08/2007 7:30 PM
> > To: JMeter Users List
> > Subject: Re: Mail Visualizer
> >
> >
> >
> > I've looked at the code (and run a test) and found that although the
> > Mailer Visualiser only looks at the SampleResult status, this is
> > actually changed when the assertions are run, so it should work OK.
> >
> > Have you checked the jmeter log file for errors?
> >
> > On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > > status, not the AssertionResult or Sample class used by the Listeners.
> > >
> > > This needs looking into further... not sure if there is a work-round at 
> > > present.
> > >
> > > Perhaps you could file a bug report for this?
> > >
> > > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > > Hi All,
> > > >
> > > > OK it would appear that failures are classified only in terms of HTTP 
> > > > response codes so I can't use a Mailer Visualizer to trigger emails 
> > > > based on 'failed' response assertions. Any suggestions on how to send 
> > > > email notifications if assertions fail? It appears to me that I 
> > > > probably need something like a BeanShell listener.
> > > >
> > > > David Schulberg
> > > >
> > > > Object Consulting | Senior Consultant
> > > > email: [EMAIL PROTECTED]
> > > > 
> > > > consulting | development | training | support
> > > > our experience makes the difference
> > > >
> > > > 
> > > >
> > > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > > Sent: Thu 2/08/2007 5:52 PM
> > > > To: JMeter Users List
> > > > Subject: Mail Visualizer
> > > >
> > > >
> > > >
> > > > Hi All,
> > > >
> > > > Have set up a Mail Visualizer which tests OK.
> > > > When I run a script where I have a failed assertion I thought the Mail 
> > > > Visualizer would send an email because it is set to respond when 
> > > > Failures=1 but it doesn't.
> > > >
> > > > I have
> > > > o - Request
> > > > |   - Response Assertion
> > > > |   - Assertion Results
> > > > --Mail Visualizer
> > > >
> > > > It won't work if I have my Mail Visualizer tailed off my Assertion 
> > > > Results either.
> > > >
> > 

RE: Mail Visualizer

2007-08-14 Thread David Schulberg
Hi,
 
I am still puzzled. I have a 'Mail Visualiser' straight after an Assertion that 
fails. I assume you mean the Failures field in the Mail Visualiser as being 
reflective of status. Even though the preceding Assertion has failed the 
Failures field = 0 all the time.
 
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: sebb [mailto:[EMAIL PROTECTED]
Sent: Tue 14/08/2007 12:26 AM
To: JMeter Users List
Subject: Re: Mail Visualizer



The status is displayed in the Listeners, which run after the assertions.

The Mail Visualiser is a Listener, so will see the same status as the
other Listeners.

I've tested it and it works OK for me.

On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi Sebb,
>
> No sign of anything in the JMeter log.
> Where should I be able to see status change?
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> mobile: 0402 006 291
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Fri 10/08/2007 7:30 PM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> I've looked at the code (and run a test) and found that although the
> Mailer Visualiser only looks at the SampleResult status, this is
> actually changed when the assertions are run, so it should work OK.
>
> Have you checked the jmeter log file for errors?
>
> On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > status, not the AssertionResult or Sample class used by the Listeners.
> >
> > This needs looking into further... not sure if there is a work-round at 
> > present.
> >
> > Perhaps you could file a bug report for this?
> >
> > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >
> > > OK it would appear that failures are classified only in terms of HTTP 
> > > response codes so I can't use a Mailer Visualizer to trigger emails based 
> > > on 'failed' response assertions. Any suggestions on how to send email 
> > > notifications if assertions fail? It appears to me that I probably need 
> > > something like a BeanShell listener.
> > >
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > > 
> > >
> > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > Sent: Thu 2/08/2007 5:52 PM
> > > To: JMeter Users List
> > > Subject: Mail Visualizer
> > >
> > >
> > >
> > > Hi All,
> > >
> > > Have set up a Mail Visualizer which tests OK.
> > > When I run a script where I have a failed assertion I thought the Mail 
> > > Visualizer would send an email because it is set to respond when 
> > > Failures=1 but it doesn't.
> > >
> > > I have
> > > o - Request
> > > |   - Response Assertion
> > > |   - Assertion Results
> > > --Mail Visualizer
> > >
> > > It won't work if I have my Mail Visualizer tailed off my Assertion 
> > > Results either.
> > >
> > > Can I have my Mail Visualizer tailed off multiple requests?
> > > Can I use variables in the Failure Subject field to report which 
> > > particular request(s) have failed?
> > >
> > >
> > > Regards,
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: Mail Visualizer

2007-08-13 Thread sebb
The status is displayed in the Listeners, which run after the assertions.

The Mail Visualiser is a Listener, so will see the same status as the
other Listeners.

I've tested it and it works OK for me.

On 13/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi Sebb,
>
> No sign of anything in the JMeter log.
> Where should I be able to see status change?
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> switch: + 61 3 8615 4500 fax: +61 3 8615 4501
> mobile: 0402 006 291
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: sebb [mailto:[EMAIL PROTECTED]
> Sent: Fri 10/08/2007 7:30 PM
> To: JMeter Users List
> Subject: Re: Mail Visualizer
>
>
>
> I've looked at the code (and run a test) and found that although the
> Mailer Visualiser only looks at the SampleResult status, this is
> actually changed when the assertions are run, so it should work OK.
>
> Have you checked the jmeter log file for errors?
>
> On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> > Yes, the Mailer Visualiser only seems to look at the SampleResult
> > status, not the AssertionResult or Sample class used by the Listeners.
> >
> > This needs looking into further... not sure if there is a work-round at 
> > present.
> >
> > Perhaps you could file a bug report for this?
> >
> > On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >
> > > OK it would appear that failures are classified only in terms of HTTP 
> > > response codes so I can't use a Mailer Visualizer to trigger emails based 
> > > on 'failed' response assertions. Any suggestions on how to send email 
> > > notifications if assertions fail? It appears to me that I probably need 
> > > something like a BeanShell listener.
> > >
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > > 
> > >
> > > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > > Sent: Thu 2/08/2007 5:52 PM
> > > To: JMeter Users List
> > > Subject: Mail Visualizer
> > >
> > >
> > >
> > > Hi All,
> > >
> > > Have set up a Mail Visualizer which tests OK.
> > > When I run a script where I have a failed assertion I thought the Mail 
> > > Visualizer would send an email because it is set to respond when 
> > > Failures=1 but it doesn't.
> > >
> > > I have
> > > o - Request
> > > |   - Response Assertion
> > > |   - Assertion Results
> > > --Mail Visualizer
> > >
> > > It won't work if I have my Mail Visualizer tailed off my Assertion 
> > > Results either.
> > >
> > > Can I have my Mail Visualizer tailed off multiple requests?
> > > Can I use variables in the Failure Subject field to report which 
> > > particular request(s) have failed?
> > >
> > >
> > > Regards,
> > > David Schulberg
> > >
> > > Object Consulting | Senior Consultant
> > > email: [EMAIL PROTECTED]
> > > 
> > > consulting | development | training | support
> > > our experience makes the difference
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Mail Visualizer

2007-08-12 Thread David Schulberg
Hi Sebb,
 
No sign of anything in the JMeter log.
Where should I be able to see status change?
 
David Schulberg

Object Consulting | Senior Consultant
switch: + 61 3 8615 4500 fax: +61 3 8615 4501
mobile: 0402 006 291 
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: sebb [mailto:[EMAIL PROTECTED]
Sent: Fri 10/08/2007 7:30 PM
To: JMeter Users List
Subject: Re: Mail Visualizer



I've looked at the code (and run a test) and found that although the
Mailer Visualiser only looks at the SampleResult status, this is
actually changed when the assertions are run, so it should work OK.

Have you checked the jmeter log file for errors?

On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> Yes, the Mailer Visualiser only seems to look at the SampleResult
> status, not the AssertionResult or Sample class used by the Listeners.
>
> This needs looking into further... not sure if there is a work-round at 
> present.
>
> Perhaps you could file a bug report for this?
>
> On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi All,
> >
> > OK it would appear that failures are classified only in terms of HTTP 
> > response codes so I can't use a Mailer Visualizer to trigger emails based 
> > on 'failed' response assertions. Any suggestions on how to send email 
> > notifications if assertions fail? It appears to me that I probably need 
> > something like a BeanShell listener.
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > Sent: Thu 2/08/2007 5:52 PM
> > To: JMeter Users List
> > Subject: Mail Visualizer
> >
> >
> >
> > Hi All,
> >
> > Have set up a Mail Visualizer which tests OK.
> > When I run a script where I have a failed assertion I thought the Mail 
> > Visualizer would send an email because it is set to respond when Failures=1 
> > but it doesn't.
> >
> > I have
> > o - Request
> > |   - Response Assertion
> > |   - Assertion Results
> > --Mail Visualizer
> >
> > It won't work if I have my Mail Visualizer tailed off my Assertion Results 
> > either.
> >
> > Can I have my Mail Visualizer tailed off multiple requests?
> > Can I use variables in the Failure Subject field to report which particular 
> > request(s) have failed?
> >
> >
> > Regards,
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> >
> >
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: Mail Visualizer

2007-08-10 Thread sebb
I've looked at the code (and run a test) and found that although the
Mailer Visualiser only looks at the SampleResult status, this is
actually changed when the assertions are run, so it should work OK.

Have you checked the jmeter log file for errors?

On 09/08/07, sebb <[EMAIL PROTECTED]> wrote:
> Yes, the Mailer Visualiser only seems to look at the SampleResult
> status, not the AssertionResult or Sample class used by the Listeners.
>
> This needs looking into further... not sure if there is a work-round at 
> present.
>
> Perhaps you could file a bug report for this?
>
> On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> > Hi All,
> >
> > OK it would appear that failures are classified only in terms of HTTP 
> > response codes so I can't use a Mailer Visualizer to trigger emails based 
> > on 'failed' response assertions. Any suggestions on how to send email 
> > notifications if assertions fail? It appears to me that I probably need 
> > something like a BeanShell listener.
> >
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> > 
> >
> > From: David Schulberg [mailto:[EMAIL PROTECTED]
> > Sent: Thu 2/08/2007 5:52 PM
> > To: JMeter Users List
> > Subject: Mail Visualizer
> >
> >
> >
> > Hi All,
> >
> > Have set up a Mail Visualizer which tests OK.
> > When I run a script where I have a failed assertion I thought the Mail 
> > Visualizer would send an email because it is set to respond when Failures=1 
> > but it doesn't.
> >
> > I have
> > o - Request
> > |   - Response Assertion
> > |   - Assertion Results
> > --Mail Visualizer
> >
> > It won't work if I have my Mail Visualizer tailed off my Assertion Results 
> > either.
> >
> > Can I have my Mail Visualizer tailed off multiple requests?
> > Can I use variables in the Failure Subject field to report which particular 
> > request(s) have failed?
> >
> >
> > Regards,
> > David Schulberg
> >
> > Object Consulting | Senior Consultant
> > email: [EMAIL PROTECTED]
> > 
> > consulting | development | training | support
> > our experience makes the difference
> >
> >
> >
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Mail Visualizer

2007-08-09 Thread sebb
Yes, the Mailer Visualiser only seems to look at the SampleResult
status, not the AssertionResult or Sample class used by the Listeners.

This needs looking into further... not sure if there is a work-round at present.

Perhaps you could file a bug report for this?

On 03/08/07, David Schulberg <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> OK it would appear that failures are classified only in terms of HTTP 
> response codes so I can't use a Mailer Visualizer to trigger emails based on 
> 'failed' response assertions. Any suggestions on how to send email 
> notifications if assertions fail? It appears to me that I probably need 
> something like a BeanShell listener.
>
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
> 
>
> From: David Schulberg [mailto:[EMAIL PROTECTED]
> Sent: Thu 2/08/2007 5:52 PM
> To: JMeter Users List
> Subject: Mail Visualizer
>
>
>
> Hi All,
>
> Have set up a Mail Visualizer which tests OK.
> When I run a script where I have a failed assertion I thought the Mail 
> Visualizer would send an email because it is set to respond when Failures=1 
> but it doesn't.
>
> I have
> o - Request
> |   - Response Assertion
> |   - Assertion Results
> --Mail Visualizer
>
> It won't work if I have my Mail Visualizer tailed off my Assertion Results 
> either.
>
> Can I have my Mail Visualizer tailed off multiple requests?
> Can I use variables in the Failure Subject field to report which particular 
> request(s) have failed?
>
>
> Regards,
> David Schulberg
>
> Object Consulting | Senior Consultant
> email: [EMAIL PROTECTED]
> 
> consulting | development | training | support
> our experience makes the difference
>
>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Mail Visualizer

2007-08-02 Thread David Schulberg
Hi All,
 
OK it would appear that failures are classified only in terms of HTTP response 
codes so I can't use a Mailer Visualizer to trigger emails based on 'failed' 
response assertions. Any suggestions on how to send email notifications if 
assertions fail? It appears to me that I probably need something like a 
BeanShell listener.
 
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference 



From: David Schulberg [mailto:[EMAIL PROTECTED]
Sent: Thu 2/08/2007 5:52 PM
To: JMeter Users List
Subject: Mail Visualizer



Hi All,

Have set up a Mail Visualizer which tests OK.
When I run a script where I have a failed assertion I thought the Mail 
Visualizer would send an email because it is set to respond when Failures=1 but 
it doesn't.

I have
o - Request
|   - Response Assertion
|   - Assertion Results
--Mail Visualizer

It won't work if I have my Mail Visualizer tailed off my Assertion Results 
either.

Can I have my Mail Visualizer tailed off multiple requests?
Can I use variables in the Failure Subject field to report which particular 
request(s) have failed?


Regards,
David Schulberg

Object Consulting | Senior Consultant
email: [EMAIL PROTECTED]

consulting | development | training | support
our experience makes the difference






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Mail Visualizer

2003-09-03 Thread Desai, Mehul P
Yes, I did download both and put them in the correct folder. No luck.

Mehul.

-Original Message-
From: Shaik Afgal Bhasha [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 02, 2003 9:46 PM
To: JMeter Users List
Subject: RE: Mail Visualizer

Hi,
did you downloaded javamail and javabean activation framework?The mail.jar
and activation.jar should be in the lib folder of Jmeter.It is working for
me.
Good luck,
Afzal.

-Original Message-
From: Desai, Mehul P [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 03, 2003 5:26 AM
To: 'JMeter Users List'
Subject: Mail Visualizer


I have added the Mail Visualizer - my smtp server is setup correctly - when
I click on "Test mail" no email is being generated. Any ideas why? I am
using JMeter 1.9.1.

Thanks,
Mehul.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Mail Visualizer

2003-09-02 Thread Shaik Afgal Bhasha
Hi,
did you downloaded javamail and javabean activation framework?The mail.jar and 
activation.jar should be in the lib folder of Jmeter.It is working for me.
Good luck,
Afzal.

-Original Message-
From: Desai, Mehul P [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 03, 2003 5:26 AM
To: 'JMeter Users List'
Subject: Mail Visualizer


I have added the Mail Visualizer - my smtp server is setup correctly - when
I click on "Test mail" no email is being generated. Any ideas why? I am
using JMeter 1.9.1.

Thanks,
Mehul.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Mail Visualizer does not show up

2003-01-21 Thread Wolfram Rittmeyer
Finally I must admit that I was wrong, because if you just use the CVS and
never built the project with the jar-files in place it will not work. A
bout the other issue Mike raised (see below): I will post an
enhancement-request to the bug-database. This is a serious issue in my
opinion.

Greetings,

Wolfram

> -Ursprüngliche Nachricht-
> Von: Mike Stover [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 21. Januar 2003 14:46
> An: Wolfram Rittmeyer
> Betreff: Re: Mail Visualizer does not show up
>
>
> One thing about the Mailer Visualizer is that the emailing code
> is in the GUI
> element.  If someone runs JMeter in non-gui mode, I don't think
> it will work.
> Ideally, there should be a MailerResultCollector test element,
> and the email code
> should be in there.
>
> I have never had to recompile JMeter to get the email to work.
> Is it possible
> someone is trying to run it in non-gui mode and that that is the
> real issue?
>
> -Mike


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Mail Visualizer does not show up

2003-01-20 Thread Wolfram Rittmeyer
Hi Oliver,

I know about the jar-files. But I am surprised that one should have to
recompile JMeter. Due to increasing lack of time I was not able to test it
at home. But at work we use Windows NT and for Windows it is not necessary
to recompile. So I still cannot understand why I should have to
recompile/rebuild under Linux. Just putting the jar-files in the correct
place (lib-directory) should be enough (with the emphasis is on the word
"should"). It's just the difference of behaviour of JMeter running under
Linux and Windows that's puzzles me. Since I use the MailerVisualizer for
notifications and therefore always keep the jar-files in the lib-directory
and because I haven't noticed this difference before.

Still a bit puzzled,

Wolfram




> -Ursprüngliche Nachricht-
> Von: Oliver Rossmueller [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 21. Januar 2003 01:00
> An: JMeter Users List
> Betreff: Re: AW: Mail Visualizer does not show up
>
>
> Wolfram,
>
> mail.jar and activation.jar are not in the JMeter cvs (because of the
> Sun License I guess), so you have to add these two jars to the lib
> directory and then build JMeter (or build again if you did it already as
> in Gero's case). Don't be puzzled everything works as expected.
>
> Oliver
>
>
>
> Wolfram Rittmeyer wrote:
> > Hi Gero,
> >
> > since I'm at work I cannot test it under linux but that shouldn't make a
> > difference here anyway. And so you *shouldn't* have to
> recompile. But maybe
> > that's just theory.
> >
> > Anyway: Using Win NT and a fresh CVS-checkout I could see the
> > MailerVisualizer just depending upon the jar-files being in the
> > lib-directory or not without the need to recompile. I cannot see why it
> > should work any different under linux. I'm really interested to
> see what the
> > results will be at home this evening.
> >
> > I must admit, I'm puzzled by your findings...
> >
> > Wolfram
> >
> >
> >
> >>-Ursprüngliche Nachricht-
> >>Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> >>Gesendet: Samstag, 18. Januar 2003 15:33
> >>An: JMeter Users List
> >>Betreff: Re: Mail Visualizer does not show up
> >>
> >>
> >>Thanks Oliver.
> >>
> >>I was not aware that I had to rebuild jmeter in order to get the mail
> >>support. I was expecting it to pick that up at runtime. It
> works fine now.
> >>
> >>Regards,
> >>
> >>Gero
> >>
> >>Oliver Rossmueller wrote:
> >>
> >>
> >>>Gero,
> >>>
> >>>I just tried
> >>>
> >>>- cvs co jakarte-jmeter
> >>>- copy mail.jar and activation.jar to jakarta-jmeter/lib
> >>>- call jakarta-jmeter/build.sh
> >>>- start JMeter using jakarta-jmeter/bin/jmeter
> >>>
> >>>and the Mail Visualizer is in the Listeners list (using JDK 1.4.1 on
> >>>Linux, I did not try JDK 1.3.1). It is not necessary to  change the
> >>>jmeter script, the build script, build.xml or any other file to get it
> >>>work.
> >>>
> >>>Please check if there is a message "Classes for Mail support not found
> >>>in classpath" in the output when you build JMeter. In this case check
> >>>your lib directory and the jars you put there.
> >>>
> >>>Oliver
> >>>
> >>>Gero Vermaas wrote:
> >>>
> >>>
> >>>>Hi,
> >>>>
> >>>>I retrieved the latest version of jmeter from CVS today and am trying
> >>>>to use the Mail Visualizer. I read in the documentation that I needed
> >>>>to add jar files to the classpath in order for it to show up so i
> >>>>added mail.jar (from JavaMail) and activation.jar (from JAF) to the
> >>>>'lib' directory of jmeter. According to the documentation these jars
> >>>>should then be picked up by jmeter.
> >>>>
> >>>>Unfortunately the Mail Visualizer still does not show up under the
> >>>>listeners sub menu.
> >>>>
> >>>>I also added the 2 jar files to the classpath in the 'jmeter' script
> >>>>but that did not help either.
> >>>>
> >>>>I'm running jmeter on Mandrake Linux 9.0 and tried JDK1.3.1_06 and
> >>>>JDK1.4.1. Both without results.
> >>>>
> >>>>Any idea what the problem is or how I can debug it? Where in the
> >>>>source code should I look?
> >>>>
> >>>>Regards,
> >>>>Gero
> >>>>
> >>>>
> >>>>--
> >>>>To unsubscribe, e-mail:
> >>>><mailto:[EMAIL PROTECTED]>
> >>>>For additional commands, e-mail:
> >>>><mailto:[EMAIL PROTECTED]>
> >>>>
> >>>>
> >>
> >>
> >>
> >>--
> >>To unsubscribe, e-mail:
> >
> > <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Mail Visualizer does not show up

2003-01-18 Thread Gero Vermaas
Thanks Oliver.

I was not aware that I had to rebuild jmeter in order to get the mail 
support. I was expecting it to pick that up at runtime. It works fine now.

Regards,

Gero

Oliver Rossmueller wrote:

Gero,

I just tried

- cvs co jakarte-jmeter
- copy mail.jar and activation.jar to jakarta-jmeter/lib
- call jakarta-jmeter/build.sh
- start JMeter using jakarta-jmeter/bin/jmeter

and the Mail Visualizer is in the Listeners list (using JDK 1.4.1 on 
Linux, I did not try JDK 1.3.1). It is not necessary to  change the 
jmeter script, the build script, build.xml or any other file to get it 
work.

Please check if there is a message "Classes for Mail support not found 
in classpath" in the output when you build JMeter. In this case check 
your lib directory and the jars you put there.

Oliver

Gero Vermaas wrote:

Hi,

I retrieved the latest version of jmeter from CVS today and am trying 
to use the Mail Visualizer. I read in the documentation that I needed 
to add jar files to the classpath in order for it to show up so i 
added mail.jar (from JavaMail) and activation.jar (from JAF) to the 
'lib' directory of jmeter. According to the documentation these jars 
should then be picked up by jmeter.

Unfortunately the Mail Visualizer still does not show up under the 
listeners sub menu.

I also added the 2 jar files to the classpath in the 'jmeter' script 
but that did not help either.

I'm running jmeter on Mandrake Linux 9.0 and tried JDK1.3.1_06 and 
JDK1.4.1. Both without results.

Any idea what the problem is or how I can debug it? Where in the 
source code should I look?

Regards,
Gero


--
To unsubscribe, e-mail:   

For additional commands, e-mail: 









--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Mail Visualizer does not show up

2003-01-18 Thread Oliver Rossmueller
Gero,

I just tried

- cvs co jakarte-jmeter
- copy mail.jar and activation.jar to jakarta-jmeter/lib
- call jakarta-jmeter/build.sh
- start JMeter using jakarta-jmeter/bin/jmeter

and the Mail Visualizer is in the Listeners list (using JDK 1.4.1 on 
Linux, I did not try JDK 1.3.1). It is not necessary to  change the 
jmeter script, the build script, build.xml or any other file to get it work.

Please check if there is a message "Classes for Mail support not found 
in classpath" in the output when you build JMeter. In this case check 
your lib directory and the jars you put there.

Oliver

Gero Vermaas wrote:
Hi,

I retrieved the latest version of jmeter from CVS today and am trying to use the Mail Visualizer. I read in the documentation that I needed to add jar files to the classpath in order for it to show up so i added mail.jar (from JavaMail) and activation.jar (from JAF) to the 'lib' directory of jmeter. According to the documentation these jars should then be picked up by jmeter.

Unfortunately the Mail Visualizer still does not show up under the listeners sub menu.

I also added the 2 jar files to the classpath in the 'jmeter' script but that did not help either.

I'm running jmeter on Mandrake Linux 9.0 and tried JDK1.3.1_06 and JDK1.4.1. Both without results.

Any idea what the problem is or how I can debug it? Where in the source code should I look?

Regards,
Gero


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 







smime.p7s
Description: S/MIME Cryptographic Signature