I though the WSDL was only used to populate the other fields?

Can't one just populate them directly?

On 24/08/06, Karr, David <[EMAIL PROTECTED]> wrote:
I'm seeing the problem with both the SOAP/XML-RPC Request and HTTPClient
request.  I don't have a WSDL, so I can't use the WebService(SOAP)
request.

> -----Original Message-----
> From: Sen, Kakoli [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 23, 2006 10:14 PM
> To: JMeter Users List
> Subject: RE: Unable to get out through authenticated proxy
>
> Hi,
>   Is it through the 'SOAP/XML-RPC Request' or
> 'WebService(SOAP)' Request?
> So in 2.2, these requests cannot pierce authenticated proxy?
>
> Regards,
> Kakoli
>
> -----Original Message-----
> From: Karr, David [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 23, 2006 2:59 AM
> To: JMeter Users List
> Subject: Unable to get out through authenticated proxy
>
>
> I've been making progress on testing the service that runs on
> my localhost, but I'm also trying to test an external
> service, through our authenticated proxy.
>
> I found that the request wasn't going anywhere.  I monitored
> it with etheral, and it never tried to hit the proxy or the
> downstream host.  I turned on all the debug levels, but the
> log file didn't show me anything meaningful.
>
> I finally thought to add a "Save results to file"
> postprocessor.  When I inspected the file, I found this:
>
> java.lang.IllegalArgumentException: Host may not be null
>       at
> org.apache.commons.httpclient.NTCredentials.<init>(NTCredentia
> ls.java:83
> )
>       at
> org.apache.jmeter.protocol.http.sampler.HTTPSampler2.setupConn
> ection(HTT
> PSampler2.java:274)
>       at
> org.apache.jmeter.protocol.http.sampler.HTTPSampler2.sample(HT
> TPSampler2
> .java:518)
>       at
> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample
> (HTTPSampl
> erBase.java:658)
>       at
> org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample
> (HTTPSampl
> erBase.java:647)
>       at
> org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
>       at java.lang.Thread.run(Thread.java:534)
>
> I looked at the code for HTTPSampler2, and it has this code:
>
> ------------
>             if (PROXY_USER.length() > 0){
>                 httpClient.getState().setProxyCredentials(
>                     new
> AuthScope(PROXY_HOST,PROXY_PORT,null,AuthScope.ANY_SCHEME),
>                     // NT Includes other types of Credentials
>                     new NTCredentials(
>                             PROXY_USER,
>                             PROXY_PASS,
>                             null, // "thishost",
>                             "" // domain
>                 ));
>             }
> ------------
>
> I looked at the javadoc for NTCredentials, and it
> specifically says that the hostname cannot be null.
>
> ---------------------------------------------------------------------
> 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]

Reply via email to