Re: Loading wsdl

2004-11-02 Thread John Ferron
No... the WSDL is actually generated by GLUE not axis. [EMAIL PROTECTED] 11/1/2004 5:00:17 PM is the WSDL generated by Axis? if it is, you will need to grab the latest version or this version in my directory http://cvs.apache.org/~woolfel/jakarta-jmeter.zip warning though, the version in my

Re: Loading wsdl

2004-11-02 Thread Peter Lin
can you send me an example WSDL? I haven't tested the WSDL helper in jmeter against Glue's wsdl . thanks peter On Tue, 02 Nov 2004 09:01:45 -0600, John Ferron [EMAIL PROTECTED] wrote: No... the WSDL is actually generated by GLUE not axis. [EMAIL PROTECTED] 11/1/2004 5:00:17 PM is

Re: Loading wsdl

2004-11-02 Thread John Ferron
As far as sending a sample WSDL, I can't cuz I'm not sure on how to create one. The one we use was creating by some consultants who are working with us on the project. And due to the project, I can't send you ours. Any other ideas? [EMAIL PROTECTED] 11/2/2004 9:08:48 AM can you send me an

Re: createing MM/DD/YYYY date string

2004-11-02 Thread sebb
On Mon, 1 Nov 2004 23:46:58 -0800, Xie, Shawn Y. [EMAIL PROTECTED] wrote: Hi, In my functional test plan, I need to assert a page contains today's date string as MM/DD/ (e.g. 01/02/2004 for Jan 2, 2004) or not. I tried to use JMeter javascript function to dynamically generate the date

Re: Redirect

2004-11-02 Thread sebb
On Mon, 1 Nov 2004 17:14:03 +0100, Coret Bob [EMAIL PROTECTED] wrote: Hi all, What's the difference between Redirect Automatically and Follow Redirects? The help only show the Follow Redirects option... Good point - I'll update the docs. Redirect automatically means that the HTTP

RE: createing MM/DD/YYYY date string

2004-11-02 Thread Xie, Shawn Y.
Sebb, Thanks for your reply. I knew I can pass the date string to JMeter but what I want to achieve is to dynamically generate it. I am already very close to get what I want, but just those tail white spaces give me trouble. I think this might be a bug of the javaScript function at JMeter.

Re: createing MM/DD/YYYY date string

2004-11-02 Thread sebb
On Tue, 2 Nov 2004 16:06:19 -0800, Xie, Shawn Y. [EMAIL PROTECTED] wrote: Sebb, Thanks for your reply. I knew I can pass the date string to JMeter but what I want to achieve is to dynamically generate it. I am Re-reading my reply, I see I was not very clear: I was suggesting that you

RE: createing MM/DD/YYYY date string

2004-11-02 Thread Xie, Shawn Y.
Sebb, Your suggestion is a good idea. Unfortunately, when I tried it, I found it returns nothing (an empty string). Maybe I did something wrong in my test. Are there any detail documents that includes examples about this function some where? The doc of this function (and actually all other

Re: createing MM/DD/YYYY date string

2004-11-02 Thread Neil Alcoseba
Try this : ${__javaScript(var d = new Date(); var date = d.getDate(); $DATE = (d.getMonth() + 1) + / + (date 10 ? 0+date : date) + / + d.getFullYear();,DATE)} On Tue, 2 Nov 2004 21:54:41 -0800, Xie, Shawn Y. [EMAIL PROTECTED] wrote: Sebb, Your suggestion is a good idea. Unfortunately, when I