Thanks for your reply LE,
Now I got why the code snippet is .NET based
For the following things you mentioned:
================
The service is configured for anonymous use and generally works very well.
Unless there's something else to configure than windows/forms
authentication?
(I'm grasping for straws here... )
================
Well, the service is allow anonymous means the webserver (such as IIS) has
turn off the authentication. However, the error you encounter indicate that
there is "proxy authentication" which is different from the webservice
application's authentication. I think you need to contact the server-side
to check whether there is any intermediate proxy server or firewall that
add authentication here.
Also, for .NET based webservice client, you'll find that these two
authentication are also handled difererently. e.g.
================
FindServiceSoap myFindService = new FindServiceSoap();
//this set the credentials for the service's authentication
myFindService.Credentials = xxxx;
WebProxy myProxy = new WebProxy("http://proxyserver

ort",true);
//this set the credentials for the proxy authentication
myProxy.Credentials = xxxx;
myFindService.Proxy = myProxy;
================
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?TGFycy1Fcmlr?= <lars->
>References: <230E7D5F-6C73-49DD-98D3->
<>
>Subject: RE: Possible to configure webservice to tell client to bypass prox
>Date: Sun, 22 Jun 2008 23:48:00 -0700
>
>> However, the flash component is reporting "proxy
>> authentication error" when running on web page, correct?
>
>yep
>
>> BTW, as you said the webservice client is a
>> Flash one, however, the exception message indicate that the proxy code
is
>> .NET based, is there anything I've missed?
>> If the consumer does use .NET code, I suggest you first create a rich
>> client .NET application which calls the webservice to see whether it
works.
>
>The flash version I use don't report any "good" exceptions ("connection
>failed"), so I made a test-app (rich client) to find out why the customer
>didn't get a response from the webservice. Hence the .net exception
message.
>
>
>> Also, I still suspect that the server-side intermediate proxy setting
may
>> not be configured correctly(turn off authentication).
>
>The service is configured for anonymous use and generally works very well.
>Unless there's something else to configure than windows/forms
authentication?
>(I'm grasping for straws here... )
>
>Lars-Erik
>