You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by kSridhar123 <Ka...@gmail.com> on 2010/04/07 05:53:21 UTC

Error with 18.1.6 WebService(SOAP) Request

Hello Folks,

I am new to JMeter and i would like to execute Web Services using JMeter.
I am following below link to test web service. 

Web Service - http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
Method - CelsiusToFahrenheit

http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request 
18.1.6 WebService(SOAP) Request

Here i have two questions....
1) What data should i give for .... 
Soap/XML-RPC Data

2) When i run this web service, it is showing warning in the Status (View
Results in Table)

Am i doing any wrong? Please let me know the correct process....If any one
have useful links send to me.

Thanks,
Sridhar
-- 
View this message in context: http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
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: Jmeter replace

Posted by sv...@icarinae.com.
Thanks working now...

Quoting Deepak Shetty <sh...@gmail.com>:

> Hi
> You should probably use
> str = vars.get("MyVar");
> str=str.replaceAll("<timestamp>111</timestamp>",
> "<timestamp>222<timestamp>");
>
> regards
> deepak
>
>
>
> On Wed, Apr 7, 2010 at 1:01 PM, Deepak Shetty <sh...@gmail.com> wrote:
>
>> if your code is literal then you havent closed the quote
>> str = "${MyVar}
>>
>> Check if there are beanshell errors. if not check that you dont have any
>> whitespace in the xml(or change the replace all to be a regexp that will
>> match)
>>
>> regards
>> deepak
>>
>>
>>
>> On Wed, Apr 7, 2010 at 12:49 PM, <sv...@icarinae.com> wrote:
>>
>>> Hi,
>>>
>>> I have a xml request, that I have saved in a variable. There is timestamp
>>> parameter that I need to update with system time.
>>>
>>> I understand that i can get time using time function, however I have to
>>> replace the value in the xml.
>>>
>>> for example <timestamp>111</timestamp> to be replaced with
>>> <timestamp>222<timestamp>
>>>
>>> Is there any way I can replace that value in the xml that is saved
>>> ${MyVar}.
>>>
>>> I tried using  str = "${MyVar};
>>> str=str.replaceAll("<timestamp>111</timestamp>",
>>> "<timestamp>222<timestamp>");
>>> in beanshell sampler, but it looks like " need to escaped etc..
>>>
>>> Any other solution?
>>>
>>> Thanks in advance..
>>>
>>> Deepak Tiwari
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> 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: Jmeter replace

Posted by Deepak Shetty <sh...@gmail.com>.
Hi
You should probably use
str = vars.get("MyVar");
str=str.replaceAll("<timestamp>111</timestamp>",
"<timestamp>222<timestamp>");

regards
deepak



On Wed, Apr 7, 2010 at 1:01 PM, Deepak Shetty <sh...@gmail.com> wrote:

> if your code is literal then you havent closed the quote
> str = "${MyVar}
>
> Check if there are beanshell errors. if not check that you dont have any
> whitespace in the xml(or change the replace all to be a regexp that will
> match)
>
> regards
> deepak
>
>
>
> On Wed, Apr 7, 2010 at 12:49 PM, <sv...@icarinae.com> wrote:
>
>> Hi,
>>
>> I have a xml request, that I have saved in a variable. There is timestamp
>> parameter that I need to update with system time.
>>
>> I understand that i can get time using time function, however I have to
>> replace the value in the xml.
>>
>> for example <timestamp>111</timestamp> to be replaced with
>> <timestamp>222<timestamp>
>>
>> Is there any way I can replace that value in the xml that is saved
>> ${MyVar}.
>>
>> I tried using  str = "${MyVar};
>> str=str.replaceAll("<timestamp>111</timestamp>",
>> "<timestamp>222<timestamp>");
>> in beanshell sampler, but it looks like " need to escaped etc..
>>
>> Any other solution?
>>
>> Thanks in advance..
>>
>> Deepak Tiwari
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>>
>>
>

Re: Jmeter replace

Posted by Deepak Shetty <sh...@gmail.com>.
if your code is literal then you havent closed the quote
str = "${MyVar}

Check if there are beanshell errors. if not check that you dont have any
whitespace in the xml(or change the replace all to be a regexp that will
match)

regards
deepak


On Wed, Apr 7, 2010 at 12:49 PM, <sv...@icarinae.com> wrote:

> Hi,
>
> I have a xml request, that I have saved in a variable. There is timestamp
> parameter that I need to update with system time.
>
> I understand that i can get time using time function, however I have to
> replace the value in the xml.
>
> for example <timestamp>111</timestamp> to be replaced with
> <timestamp>222<timestamp>
>
> Is there any way I can replace that value in the xml that is saved
> ${MyVar}.
>
> I tried using  str = "${MyVar};
> str=str.replaceAll("<timestamp>111</timestamp>",
> "<timestamp>222<timestamp>");
> in beanshell sampler, but it looks like " need to escaped etc..
>
> Any other solution?
>
> Thanks in advance..
>
> Deepak Tiwari
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

Jmeter replace

Posted by sv...@icarinae.com.
Hi,

I have a xml request, that I have saved in a variable. There is  
timestamp parameter that I need to update with system time.

I understand that i can get time using time function, however I have  
to replace the value in the xml.

for example <timestamp>111</timestamp> to be replaced with  
<timestamp>222<timestamp>

Is there any way I can replace that value in the xml that is saved ${MyVar}.

I tried using  str = "${MyVar};  
str=str.replaceAll("<timestamp>111</timestamp>",  
"<timestamp>222<timestamp>");
in beanshell sampler, but it looks like " need to escaped etc..

Any other solution?

Thanks in advance..

Deepak Tiwari



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


Re: Error with 18.1.6 WebService(SOAP) Request

Posted by Deepak Shetty <sh...@gmail.com>.
see
http://jakarta.apache.org/jmeter/usermanual/get-started.html
other software you may need to download
regards
deepak

On Wed, Apr 7, 2010 at 10:48 AM, kSridhar123 <Ka...@gmail.com>wrote:

>
> Hello Deepak,
>
> Thanks. I created a result tree.
>
> From Sampler Result i see this below error.
>
> Response message: java.lang.NoClassDefFoundError:
> javax/mail/MessagingException.
>
>
> Surprisingly i do not see any Request / Response Data in the Result Tree.
> Does it mean it is not getting generate properly.  Where do we check Web
> Service Load Errors? Thanks in advance.
>
>
>
> Deepak Shetty wrote:
> >
> > add a view results tree listener and check the response tab.
> >
> >
> > On Wed, Apr 7, 2010 at 8:57 AM, kSridhar123 <Ka...@gmail.com>
> > wrote:
> >
> >>
> >> Hello Deepak,
> >>
> >> Thanks for your quick reply.
> >>
> >> I tried...but it gave me warning Symbol in Results Table. Where can i
> see
> >> actual error message.
> >> Please see the below request i am sending .... Am i following correct
> >> approach? From SOAP UI it generates request automatically. Jmeter does
> >> not
> >> generate it / please let me know if i am not using it correctly.
> >>
> >> Request--
> >> <?xml version="1.0" encoding="utf-8"?>
> >> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >> xmlns:xsd="http://www.w3.org/2001/XMLSchema"
> >> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> >>  <soap:Body>
> >>    <CelsiusToFahrenheit xmlns="http://tempuri.org/">
> >>      <Celsius>45</Celsius>
> >>    </CelsiusToFahrenheit>
> >>  </soap:Body>
> >> </soap:Envelope>
> >>
> >> Thanks,
> >> Sridhar
> >>
> >>
> >> Deepak Shetty wrote:
> >> >
> >> > Hi
> >> > 1. Look at the example
> >> >
> >>
> http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
> >> > From <?xml.. onwards . (change the value of the
> >> <celsius>string</celcius>
> >> > to
> >> > the value you want to convert
> >> >
> >> > 2. what warning?
> >> > regards
> >> > deepak
> >> >
> >> > On Tue, Apr 6, 2010 at 8:53 PM, kSridhar123 <Ka...@gmail.com>
> >> > wrote:
> >> >
> >> >>
> >> >> Hello Folks,
> >> >>
> >> >> I am new to JMeter and i would like to execute Web Services using
> >> JMeter.
> >> >> I am following below link to test web service.
> >> >>
> >> >> Web Service -
> >> http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
> >> >> Method - CelsiusToFahrenheit
> >> >>
> >> >>
> >> >>
> >>
> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request
> >> >> 18.1.6 WebService(SOAP) Request
> >> >>
> >> >> Here i have two questions....
> >> >> 1) What data should i give for ....
> >> >> Soap/XML-RPC Data
> >> >>
> >> >> 2) When i run this web service, it is showing warning in the Status
> >> (View
> >> >> Results in Table)
> >> >>
> >> >> Am i doing any wrong? Please let me know the correct process....If
> any
> >> >> one
> >> >> have useful links send to me.
> >> >>
> >> >> Thanks,
> >> >> Sridhar
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
> >> >> 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
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28167080.html
> >> 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
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28168501.html
> 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: Error with 18.1.6 WebService(SOAP) Request

Posted by kSridhar123 <Ka...@gmail.com>.
Hello Deepak,

Thanks. I created a result tree. 

>From Sampler Result i see this below error.

Response message: java.lang.NoClassDefFoundError:
javax/mail/MessagingException.


Surprisingly i do not see any Request / Response Data in the Result Tree.
Does it mean it is not getting generate properly.  Where do we check Web
Service Load Errors? Thanks in advance.



Deepak Shetty wrote:
> 
> add a view results tree listener and check the response tab.
> 
> 
> On Wed, Apr 7, 2010 at 8:57 AM, kSridhar123 <Ka...@gmail.com>
> wrote:
> 
>>
>> Hello Deepak,
>>
>> Thanks for your quick reply.
>>
>> I tried...but it gave me warning Symbol in Results Table. Where can i see
>> actual error message.
>> Please see the below request i am sending .... Am i following correct
>> approach? From SOAP UI it generates request automatically. Jmeter does
>> not
>> generate it / please let me know if i am not using it correctly.
>>
>> Request--
>> <?xml version="1.0" encoding="utf-8"?>
>> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
>>  <soap:Body>
>>    <CelsiusToFahrenheit xmlns="http://tempuri.org/">
>>      <Celsius>45</Celsius>
>>    </CelsiusToFahrenheit>
>>  </soap:Body>
>> </soap:Envelope>
>>
>> Thanks,
>> Sridhar
>>
>>
>> Deepak Shetty wrote:
>> >
>> > Hi
>> > 1. Look at the example
>> >
>> http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
>> > From <?xml.. onwards . (change the value of the
>> <celsius>string</celcius>
>> > to
>> > the value you want to convert
>> >
>> > 2. what warning?
>> > regards
>> > deepak
>> >
>> > On Tue, Apr 6, 2010 at 8:53 PM, kSridhar123 <Ka...@gmail.com>
>> > wrote:
>> >
>> >>
>> >> Hello Folks,
>> >>
>> >> I am new to JMeter and i would like to execute Web Services using
>> JMeter.
>> >> I am following below link to test web service.
>> >>
>> >> Web Service -
>> http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
>> >> Method - CelsiusToFahrenheit
>> >>
>> >>
>> >>
>> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request
>> >> 18.1.6 WebService(SOAP) Request
>> >>
>> >> Here i have two questions....
>> >> 1) What data should i give for ....
>> >> Soap/XML-RPC Data
>> >>
>> >> 2) When i run this web service, it is showing warning in the Status
>> (View
>> >> Results in Table)
>> >>
>> >> Am i doing any wrong? Please let me know the correct process....If any
>> >> one
>> >> have useful links send to me.
>> >>
>> >> Thanks,
>> >> Sridhar
>> >> --
>> >> View this message in context:
>> >>
>> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
>> >> 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
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28167080.html
>> 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
>>
>>
> 
> 

-- 
View this message in context: http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28168501.html
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: Error with 18.1.6 WebService(SOAP) Request

Posted by Deepak Shetty <sh...@gmail.com>.
add a view results tree listener and check the response tab.


On Wed, Apr 7, 2010 at 8:57 AM, kSridhar123 <Ka...@gmail.com> wrote:

>
> Hello Deepak,
>
> Thanks for your quick reply.
>
> I tried...but it gave me warning Symbol in Results Table. Where can i see
> actual error message.
> Please see the below request i am sending .... Am i following correct
> approach? From SOAP UI it generates request automatically. Jmeter does not
> generate it / please let me know if i am not using it correctly.
>
> Request--
> <?xml version="1.0" encoding="utf-8"?>
> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
>  <soap:Body>
>    <CelsiusToFahrenheit xmlns="http://tempuri.org/">
>      <Celsius>45</Celsius>
>    </CelsiusToFahrenheit>
>  </soap:Body>
> </soap:Envelope>
>
> Thanks,
> Sridhar
>
>
> Deepak Shetty wrote:
> >
> > Hi
> > 1. Look at the example
> >
> http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
> > From <?xml.. onwards . (change the value of the <celsius>string</celcius>
> > to
> > the value you want to convert
> >
> > 2. what warning?
> > regards
> > deepak
> >
> > On Tue, Apr 6, 2010 at 8:53 PM, kSridhar123 <Ka...@gmail.com>
> > wrote:
> >
> >>
> >> Hello Folks,
> >>
> >> I am new to JMeter and i would like to execute Web Services using
> JMeter.
> >> I am following below link to test web service.
> >>
> >> Web Service -
> http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
> >> Method - CelsiusToFahrenheit
> >>
> >>
> >>
> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request
> >> 18.1.6 WebService(SOAP) Request
> >>
> >> Here i have two questions....
> >> 1) What data should i give for ....
> >> Soap/XML-RPC Data
> >>
> >> 2) When i run this web service, it is showing warning in the Status
> (View
> >> Results in Table)
> >>
> >> Am i doing any wrong? Please let me know the correct process....If any
> >> one
> >> have useful links send to me.
> >>
> >> Thanks,
> >> Sridhar
> >> --
> >> View this message in context:
> >>
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
> >> 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
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28167080.html
> 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: Error with 18.1.6 WebService(SOAP) Request

Posted by kSridhar123 <Ka...@gmail.com>.
Hello Deepak,

Thanks for your quick reply.

I tried...but it gave me warning Symbol in Results Table. Where can i see
actual error message.
Please see the below request i am sending .... Am i following correct
approach? From SOAP UI it generates request automatically. Jmeter does not
generate it / please let me know if i am not using it correctly.

Request--
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CelsiusToFahrenheit xmlns="http://tempuri.org/">
      <Celsius>45</Celsius>
    </CelsiusToFahrenheit>
  </soap:Body>
</soap:Envelope>

Thanks,
Sridhar


Deepak Shetty wrote:
> 
> Hi
> 1. Look at the example
> http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
> From <?xml.. onwards . (change the value of the <celsius>string</celcius>
> to
> the value you want to convert
> 
> 2. what warning?
> regards
> deepak
> 
> On Tue, Apr 6, 2010 at 8:53 PM, kSridhar123 <Ka...@gmail.com>
> wrote:
> 
>>
>> Hello Folks,
>>
>> I am new to JMeter and i would like to execute Web Services using JMeter.
>> I am following below link to test web service.
>>
>> Web Service - http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
>> Method - CelsiusToFahrenheit
>>
>>
>> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request
>> 18.1.6 WebService(SOAP) Request
>>
>> Here i have two questions....
>> 1) What data should i give for ....
>> Soap/XML-RPC Data
>>
>> 2) When i run this web service, it is showing warning in the Status (View
>> Results in Table)
>>
>> Am i doing any wrong? Please let me know the correct process....If any
>> one
>> have useful links send to me.
>>
>> Thanks,
>> Sridhar
>> --
>> View this message in context:
>> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
>> 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
>>
>>
> 
> 

-- 
View this message in context: http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28167080.html
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: Error with 18.1.6 WebService(SOAP) Request

Posted by Deepak Shetty <sh...@gmail.com>.
Hi
1. Look at the example
http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
>From <?xml.. onwards . (change the value of the <celsius>string</celcius> to
the value you want to convert

2. what warning?
regards
deepak

On Tue, Apr 6, 2010 at 8:53 PM, kSridhar123 <Ka...@gmail.com> wrote:

>
> Hello Folks,
>
> I am new to JMeter and i would like to execute Web Services using JMeter.
> I am following below link to test web service.
>
> Web Service - http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
> Method - CelsiusToFahrenheit
>
>
> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#SOAP/XML-RPC_Request
> 18.1.6 WebService(SOAP) Request
>
> Here i have two questions....
> 1) What data should i give for ....
> Soap/XML-RPC Data
>
> 2) When i run this web service, it is showing warning in the Status (View
> Results in Table)
>
> Am i doing any wrong? Please let me know the correct process....If any one
> have useful links send to me.
>
> Thanks,
> Sridhar
> --
> View this message in context:
> http://old.nabble.com/Error-with-18.1.6-WebService%28SOAP%29-Request-tp28160253p28160253.html
> 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
>
>