Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Deployment problem

Status
Not open for further replies.

japes89

IS-IT--Management
Oct 1, 2002
63
US
Hello,
When I try to remotely access my site, no graphic, background is displayed. Only text is available.

And trying to access any database module gets an:

Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON

I'm a little bit lost between all those accesses (Windows, IIS, SQL)...

ISS security is set to:

-Integrated Windows Authentication
-Anonymous access

The remote user is declared in the SQL database in read mode.

I have also added it as user having full control of my directory with the option "allow inheritable permissions from parent to propagate to his object".

An extract of my Web.config:

<appSettings>
<add key=&quot;Conn&quot; value=&quot;data source = MyServer;Initial Catalog= MyApp;user id=sa;Integrated Security=SSPI&quot;/>
</appSettings>

<system.web>
<identity impersonate=&quot;true&quot; />
<customErrors mode=&quot;Off&quot;/>
<authentication mode=&quot;Windows&quot; />

<authorization>
<allow users=&quot;*&quot; /> <!-- Allow all users -->
</authorization>

</system.web>

Please heeeeeelp me !! _______________________________________________
OutsideIntranets.com
Stop wasting time, get to work
 
How are you connecting to your database? Do you declare the username/pass in the connection string or are you using Windows NT integrated security? That'l do donkey, that'l do
[bravo] Mark
If you are unsure of forum etiquette check here faq796-2540
 
I have the same issue all i get is text when trying to view my pages..
 
Thanks Zarcom,
I found where part of the problem was. For my tests I declared the connection string in the Web.config file using the sa account with no password + Windows NT integrated security.
Removing the sa account, the graphic display is now quite working.
But when I launch a request that makes a link to the Database, I get an error message. I'll work on it before asking you for some help.


 
otay That'l do donkey, that'l do
[bravo] Mark
If you are unsure of forum etiquette check here faq796-2540
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top