RE: Security problems when running code from different machine
From: Lewis Wang [MSFT] (v-lwang_at_online.microsoft.com)
Date: 08/25/03
- Previous message: Larry Brindise: "Re: Deploy .aspx, browse, get 404 error"
- In reply to: John Boghossian: "Security problems when running code from different machine"
- Next in thread: John Boghossian: "Re: Security problems when running code from different machine"
- Reply: John Boghossian: "Re: Security problems when running code from different machine"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Mon, 25 Aug 2003 03:45:05 GMT
Hi John,
The webmethod "directorysearcher.findall" may not be able to be accessed
from a remote machine. Please open the webservice using IE from another
machine, and click the "findall" method. Does the webservice give you any
information like: "The test form is only available for requests from the
local machine"? Please let me know if I misunderstood your concern, thanks.
To resolve this problem, you may add the following lines in web.config:
<system.web>
. . .
<configuration>
. . .
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
</protocols>
</webServices>
</system.web>
</configuration>
The following is an article for your reference.
Configuration Options for XML Web Services Created Using ASP.NET
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/htm
l/cpconconfigurationoptionsforaspnetwebservices.asp
Hope this helps.
Best regards,
Lewis
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "John Boghossian" <john.boghossian@investorab.com>
| Subject: Security problems when running code from different machine
| Date: Fri, 22 Aug 2003 14:26:08 +0200
| Lines: 19
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <ulnUPiKaDHA.2572@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet.security
| NNTP-Posting-Host: 212.209.235.35
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.aspnet.security:6397
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
|
| Hi there,
|
| On my develop machine i have a virtual root which requires integrated
| security and doesn´t allow anonymous access and in my web.config i have
| <identity impersonate="true" />.
|
| In here i have a small web app that requests a OU list from AD and
presents
| it in a grid.
| When i run it from my develop machine by requesting
| http://machine/vroot/page.aspx it works but when i run it from another
| machines IE and open the page by enetering http://machine/vroot/page.aspx
| the result is empty.
|
| There is NO runtime error going on because i have debugged the code and
the
| directorysearcher.findall just returns an empty result.
|
| Any ideas
|
|
|
- Previous message: Larry Brindise: "Re: Deploy .aspx, browse, get 404 error"
- In reply to: John Boghossian: "Security problems when running code from different machine"
- Next in thread: John Boghossian: "Re: Security problems when running code from different machine"
- Reply: John Boghossian: "Re: Security problems when running code from different machine"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|