3 messages in com.canoo.lists.webtestRe: RE: [Webtest] proxysetting with c...| From | Sent On | Attachments |
|---|---|---|
| Parker, Michael | 18 Jun 2004 03:52 | |
| Richard Hill | 18 Jun 2004 10:15 | .dat |
| sumathi P | 18 Jun 2004 21:08 |
| Subject: | Re: RE: [Webtest] proxysetting with canoo![]() |
|---|---|
| From: | sumathi P (suma...@rediffmail.com) |
| Date: | 06/18/2004 09:08:25 PM |
| List: | com.canoo.lists.webtest |
Hello , Thanks for ur responce , sorry if i'm silly can u please tell me where to set these proxy settings .
Expecting ur reply pls,
On Fri, 18 Jun 2004 Richard Hill wrote :
You can have an Ant project setup the proxy and then run your Canoo tests. You
just need to make sure that you setup the proxy first.
For example:
<project name="Run Canoo tests" default="main" basedir=".">
<property name="proxy.host" value="127.0.0.1" /> <property name="proxy.port" value="8011" />
<target name="main" depends="proxySetup, runCanooTests"> <echo message="Test run complete!" /> </target>
<target name="proxySetup"> <setproxy proxyHost="${proxy.host}" proxyPort="${proxy.port}"/> </target>
<target name="runCanooTests"> <ant antfile="canooTest1.xml"/> <ant antfile="canooTest2.xml"/> <ant antfile="canooTest3.xml"/> </target>
</project>
-----Original Message----- From: webt...@gate2.canoo.com on behalf of Parker, Michael Sent: Fri 6/18/2004 3:52 AM To: Canoo (E-Mail) Cc: Subject: [Webtest] proxysetting with canoo
Hi all,
does anybody know how I can force CANOO or ANT to run over a proxy ?
I tried to set a tag (mentioned in WebTest.dtd)
<setproxy/> inside <target>
But the setting of
<setproxy proxyhost="127.0.0.1" proxyport="8011" />
shows no effect.
The Proxy-Tool HttpTracer isn´t recording anything.
Regards, Michael
------------------------------------------------------------------------------
Aus Rechts- und Sicherheitsgruenden ist die in dieser E-Mail gegebene
Information nicht rechtsverbindlich. Eine rechtsverbindliche Bestaetigung
reichen wir Ihnen gerne auf Anforderung in schriftlicher Form nach. Beachten Sie
bitte, dass jede Form der unautorisierten Nutzung, Veroeffentlichung,
Vervielfaeltigung oder Weitergabe des Inhalts dieser E-Mail nicht gestattet ist.
Diese Nachricht ist ausschliesslich fuer den bezeichneten Adressaten oder dessen
Vertreter bestimmt. Sollten Sie nicht der vorgesehene Adressat dieser E-Mail
oder dessen Vertreter sein, so bitten wir Sie, sich mit dem Absender der E-Mail
in Verbindung zu setzen.
----------------------------
For legal and security reasons the information provided in this e-mail is not
legally binding. Upon request we would be pleased to provide you with a legally
binding confirmation in written form. Any form of unauthorised use, publication,
reproduction, copying or disclosure of the content of this e-mail is not
permitted. This message is exclusively for the person addressed or their
representative. If you are not the intended recipient of this message and its
contents, please notify the sender immediately.
==============================================================================
_______________________________________________ WebTest mailing list WebT...@lists.canoo.com http://lists.canoo.com/mailman/listinfo/webtest





.dat