There are two ways you can achieve this
a. You specify a proxy . In visual basic/c# i believe there is a WebProxy
object which you must create and populate (with the host and port of your
proxy , this can be the Jmeter proxy or any other proxy) and specify this
WebProxy object to the webservice
http://msdn.microsoft.com/en-us/library/system.net.webproxy%28VS.71%29.aspx
This would need you to change code. if you can then most of the instructions
are available
http://jakarta.apache.org/jmeter/usermanual/jmeter_proxy_step_by_step.pdf
Im not sure whether this will work correctly I think you need to try it
out...


b. You can use a sort of tcp monitor(e.g. https://tcpmon.dev.java.net/).
Instead of your VB code making a request to the webservice , it makes a
request to the monitor and the monitor forwards the request to the actual
service.
This should only be a configuration change in the VB code (i.e. instead of
calling http://webserviceserver:port/whatever you simply call
http://tcpmonitor:port/whatever and tcpmonitor is configured to forward the
request). this method will not automatically create test samplers but it
should allow you to log what messages are being sent played.

regards
deepak

On Thu, Oct 15, 2009 at 12:24 AM, The_S <[email protected]>wrote:

>
> Good Morning,
>
> I have a VisualBasic-Client and a backend with WebServices. Now I want to
> "log", which services are called from VB to create automatically test
> cases/samplers for JMeter. I think I have to use an HTTP-Proxy but no idea
> how.
>
> Can somebody help me?
>
> Thanking you in anticipation
> --
> View this message in context:
> http://www.nabble.com/Log-WebService-calls-tp25904097p25904097.html
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to