Re: [Newbie] Is there a problem with proxy server settings and SOAP/XML-RPC sampler - getting Exceptions with version 2.2

2007-03-13 Thread amelaao
Has the fix to this proxy setting bug made to the nighlty build? Thanks, Amela sebb-2 wrote: > > Sorry, no. > > S. > On 04/12/06, amelaao <[EMAIL PROTECTED]> wrote: >> Thanks. Any estimates on when it will be available? >> >> Amela >> >

Re: [Newbie] Is there a problem with proxy server settings and SOAP/XML-RPC sampler - getting Exceptions with version 2.2

2007-03-13 Thread amelaao
g fixes are also recorded in changes.html which will also be in the nightly build (and changes.xml will be in the nightly src archive). If you do try the nightly, please let us know if there are any further problems. On 13/03/07, amelaao <[EMAIL PROTECTED]> wrote: > > Has the fix to th

Re: [Newbie] Is there a problem with proxy server settings and SOAP/XML-RPC sampler - getting Exceptions with version 2.2

2007-03-14 Thread amelaao
ed a new nightly - r517867. The default domain is ""; if you want to change this, edit jmeter.properties and set the following property as needed: http.proxyDomain S On 13/03/07, amelaao <[EMAIL PROTECTED]> wrote: > I did, but I still get: > > Sample Start: Tue Mar 13

Re: HTTPClient and proxy servers

2007-04-11 Thread amelaao
I haven't tried this yet, but according to Sebb this may fix it: try adding the following line to httpclient.parameters (in the bin directory): http.authentication.preemptive$Boolean=true Please post if it fixes the problem. Thanks, Amela On 4/10/07, Richard Gaywood <[EMAIL PROTECTED]> wrote

Re: XML Schema validation

2006-04-17 Thread amelaao
I can't use option 1, because I'm using industry specific schemas which I can't change. I extracted embedded message using RE extractor into a new variable, but I'm not sure in Java Request Sampler which parameter to pass the value of this variable to, so that XML Schema Assertion checks against

_BeanShell

2006-04-27 Thread amelaao
I want to get the value of current directory into a variable and use it to create a new path. I'm using BeanShell for this, having my user parameter workingDir defined as ${__BeanShell(pwd(),)}, thinking that I can use it later as ${workingDir}. My first test was just to display ${workingDir} using

_BeanShell

2006-04-27 Thread amelaao
I want to get the value of current directory into a variable and use it to create a new path. I'm using BeanShell for this, having my user parameter workingDir defined as ${__BeanShell(pwd(),)}, thinking that I can use it later as ${workingDir}. My first test was just to display ${workingDir} usin

Re: _BeanShell

2006-04-27 Thread amelaao
t;. Amela On 4/27/06, sebb <[EMAIL PROTECTED]> wrote: > > On 27/04/06, amelaao <[EMAIL PROTECTED]> wrote: > > I want to get the value of current directory into a variable and use it > to > > ${__P(user.dir)} > > might work for you. > > > create a new

Re: _BeanShell

2006-04-28 Thread amelaao
ectory and then use it to calculate the path to some other file. It may be a bit confusing, but the bottom line is that I have to use a different way of finding current directory. Thanks, Amela On 4/27/06, sebb <[EMAIL PROTECTED]> wrote: > > On 28/04/06, amelaao <[EMAIL PR

Re: _BeanShell

2006-04-28 Thread amelaao
each host Try it and see. On 28/04/06, amelaao <[EMAIL PROTECTED]> wrote: > I realized property user.dir is a solution for my local machine. However I > can't have this dependency since our scripts are deployed on different > machines and used for different releases, plus I

regex extractor

2006-05-06 Thread amelaao
I'm testing a WS using SOAP-RPC Request. I'm extracting part of the WS Response message using RegEx Extractor Post Processor. However, sometimes response message contains newline characters that mess up the RegEx extractor and it can't find the match. I would like to replace newline with "", and I

Re: regex extractor

2006-05-07 Thread amelaao
Thanks. I didn't realize you have to have parenthesis around ?s. Amela On 5/7/06, sebb <[EMAIL PROTECTED]> wrote: On 06/05/06, amelaao <[EMAIL PROTECTED]> wrote: > I'm testing a WS using SOAP-RPC Request. I'm extracting part of the WS > Response message usi

params and variables

2006-05-17 Thread amelaao
My Thread consists of several SOAP/XML-RPC samplers.Samplers are similar regarding the input variables, but assertions are very different so it doesn't make sense to use CSV file as input. I need to set several variables for each sampler and the each variable needs to be local for the sampler. I u

Re: params and variables

2006-05-17 Thread amelaao
On 5/17/06, sebb <[EMAIL PROTECTED]> wrote: On 17/05/06, amelaao <[EMAIL PROTECTED]> wrote: > My Thread consists of several SOAP/XML-RPC samplers.Samplers are similar > regarding the input variables, but assertions are very different so it Do you mean response assertions?

location for bsh.jar

2006-05-18 Thread amelaao
Is there a way to place bsh.jar to some other dir rather than jakarta-jmeter-2.1.1/lib and let jmeter know where it is? -- Regards, Amela

showing SOAP-RPC XML data in a listener

2006-06-22 Thread amelaao
I would like to find a way to show SOAP-RPC XML Sampler request data together with the results in a listener. I use JMeter for automated tests from Ant and would like to see both request and response data in the generated html (from *.jtl file). I use standard xslt transformation that came with th

User Defined variable and BeanShell function

2006-08-01 Thread amelaao
I'm trying to manipulate a string (replace some characters) using BeanShell function and store this new string as a user defined variable. This is the code I have but it does not do what it is supposed to do: ${__BeanShell(String str = new String("${Attributes}"); String newstr = str.replace("<"\

Re: User Defined variable and BeanShell function

2006-08-01 Thread amelaao
To explain this a bit more. This is a sequence: 1. Variable Attributes is returned from a RegEx in a step before. 2. I have a Soap RPC Sampler with a preprocessor - User Parameters. This parameter NewAttributes needs to be populated with whatever BeanShell function returns in order for that Soap

Re: User Defined variable and BeanShell function

2006-08-01 Thread amelaao
so I would like my parameter productAttributes to get its value from this function string I created, but still no results: ${__BeanShell(String str = vars.get("Attributes"); String newstr = str.replace("<"\," wrote: To explain this a bit more. This is a sequence: 1. Variable Attributes is retu

Re: User Defined variable and BeanShell function

2006-08-01 Thread amelaao
I think my problem comes from the way I'm referencing this variable created by RegEx from BeanShell. My RegEx look like: ReferenceName: Attributes Regular Expression: (.+?) Template:$1$ Match No: 1 and the BeanShell function string: ${__BeanShell(String str=v

More on RegEx and BeanShell function

2006-08-02 Thread amelaao
I think my problem comes from the way I'm referencing this variable created by RegEx from BeanShell. My RegEx look like: ReferenceName: Attributes Regular Expression: (.+?) Template:$1$ Match No: 1 and the BeanShell function string: ${__BeanShell(String str=v

Re: More on RegEx and BeanShell function

2006-08-06 Thread amelaao
I tried ${__BeanShell(vars.get("Attributes").replace("<"\," wrote: On 02/08/06, amelaao <[EMAIL PROTECTED]> wrote: > I think my problem comes from the way I'm referencing this variable created > by RegEx from BeanShell. Yes, see be

attributes and element names in JTL file for 2.2

2006-09-26 Thread amelaao
I upgraded to JMeter 2.2 and ran bunch of jmx scripts from Ant. When I look at the generated jtl file I realized that attribute names has changed to short version (like "s" fro "success", etc), and that instead of sampleResult I have now different child elements of testResult (sample, httpSample).

Http sampler, unable to see Response data.

2006-10-17 Thread amelaao
I am testing XML over Http service. I have an Http Sampler which sends an xml request as a parameter. I added a "View Results in a Tree" listener and a Reg Ex to extract the result. Problem I have is that the Response data is not displayed in the tree view. That pane is totally empty. In the sam

Re: Http sampler, unable to see Response data.

2006-10-23 Thread amelaao
abWare LIMS Solutions - Results Count amelaao <[EMAIL PROTECTED]> 10/18/2006 10:14 AM Please respond to "JMeter Users List" To "JMeter Users List" cc Subject Http sampler, unable to see Response data. I am testing XML over Http service. I have an Http Sampler

help with XPath extractor

2006-11-10 Thread amelaao
Hi, I have a SOAP sampler that returns a valid XML response,which I need to manipulate afterwards. I want to extract certain element. XPath always returns default value, like it can't find the match. However, I am able to do it using Regular Extractor. My xml file looks like:

Xml Schema Assertion - fails on CDATA

2006-11-30 Thread amelaao
Hi, I'm using Xml Schema Assertion to validate bunch of XML response files. Some of the XML contain some CDATA elements and my validation fails on them. Can I do anything to turn off validation for CDATA section. Thanks, Amela

Is there a problem with proxy server settings and SOAP/XML-RPC sampler - getting Exceptions with version 2.2

2006-12-04 Thread amelaao
I am using SOAP/XML-RPC Request to test a Webservices which is behind the firewall. I'm providing arguments for the proxy server from the command line. I've been doing this before with 2.1 version and it worked fine. Now I'm using jmeter 2.2 and I"m getting following exceptions. java.lang.Illeg

Re: Is there a problem with proxy server settings and SOAP/XML-RPC sampler - getting Exceptions with version 2.2

2006-12-04 Thread amelaao
Thanks. Any estimates on when it will be available? Amela On 12/4/06, sebb <[EMAIL PROTECTED]> wrote: Yes, this is a bug in 2.2. Fixed in CVS, but not yet released. S. On 04/12/06, amelaao <[EMAIL PROTECTED]> wrote: > I am using SOAP/XML-RPC Request to test a Webservices