Hi,

I could be able to successfully run applet-servlet HTTP communication
through JMeter Proxy Server by setting following properties in applet init:

                System.getProperties().put( "http.proxyHost", "localhost" );
                System.getProperties().put( "http.proxyPort", "7777" );

Also I had to write .java.policy file for applet to work:
grant {
  permission java.util.PropertyPermission "*", "read, write";
};

THANKS to Mike for his constant help.

But there is ONE Problem left. My applet sends data in xml format to servlet

and at the servlet end I found that xml is not in the form originally sent
by applet.
Instead all characters (", <, >, space) had been converted to combination
of % and some number. 

Is it possible if I can set some property in JMeter Proxy Server so that it
should not modify xml data sent through Proxy to the servlet.

Thanks
Shakeel

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to