473,412 Members | 2,088 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

request: 'HOWTO migrate IIS6.0 web services to ASP 2.0'

CONTENTS
summary
setup
error messages
compensation attempts
comment

SUMMARY
I have an IIS6.0 server which has recently been upgraded to ASP 2.0 as a
result of some of the patch requirements of some products I have installed
on my server.
These patches have installed a SQLEXPRESS upon which ASP 2.0 seems to have
some connection to. ASP pages have now failed when the web site was switched
from ASP 1.1 because it is constantly asking for 'authentication' on the IIS
page and no credentials. I need two things:
1) stop it from rejecting the authentication and get ASP to work.
2) SQLEXPRESS database to migrate to SQL2005 server which is working in
the same server.

SETUP
Win2003 Std R2
Office 2003
SQL 2005 std (db, client and books only)
Sharepoint 2003 + ('STS SP2' patch, then 'Portal SP2' patch')
Biztalk 2006 eval.
Portal Website is created. Website is then switched to ASP 2.0. STSADM
was run.

ERROR MESSAGES
When sharepoint website was running on ASP 1.1, everthing was ok. When
ASP2.0 was added, The web site would request for authentication as it
normally does and if you authenticated as administrator it should normall
let you in. This time no credentials would work (administrators, service
accounts) and it would continually request for authentication - failure with
403 after third password failure.
On checking the IIS 6.0 (properties of website), go to ASP tab, you will
see the ASP version is 2.0 (when we changed it earlier). On checking the
config (GLOBAL and other one). The connection string show something like
this (I am recalling as I am rebuilding the box at the moment).
LocalServer "data source=.\SQLEXPRESS; Security=SSPI;Files=|\Data
Files\datafile.mdf;Option=ua"
The line is not wrong - I just can't remember it properly, the pertinent
point it that it wasn't altered.

COMPENSATION ATTEMPTS
After checking google, I am on unfamiliar ground but I have attempted
two things:

Attempt 1
run aspnet_iisreg to create new asp database in MSSQLSERVER (the local
install on SQL2005) called ASPNET
LocalServer "data source=.\MSSQLSERVER; Security=SSPI;Initial
Catalog=ASPNET;Option=ua"
LocalServer "data source=.\MSSQLSERVER;
Security=SSPI;database=ASPNET;Option=ua"
(note MSSQLSERVER is the virtual server and ASPNET is the database I
created via aspnet_iisreg)

Attempt 2
returned connection strings of BOTH ask configs back to normal.
granted service accounts full access to SQLEXPRESS instance

COMMENT
Any pointers to documentation will be welcome. I am in process of
rebuilding workstation again, so additional requests for more info might be
sparse as I have blown the box away. I dare say I will get the problem
again. I am going to try to install the machine and see whether the pre
requesites can be configured not use an EXPRESS/MSDE instance - though I
doubt it.

Jul 5 '06 #1
1 1761

"RedStain" <Re******@redstain.comwrote in message
news:eA**************@TK2MSFTNGP04.phx.gbl...
CONTENTS
summary
setup
error messages
compensation attempts
comment

SUMMARY
I have an IIS6.0 server which has recently been upgraded to ASP 2.0 as a
result of some of the patch requirements of some products I have installed
on my server.
These patches have installed a SQLEXPRESS upon which ASP 2.0 seems to have
some connection to. ASP pages have now failed when the web site was
switched
from ASP 1.1 because it is constantly asking for 'authentication' on the
IIS
page and no credentials. I need two things:
1) stop it from rejecting the authentication and get ASP to work.
2) SQLEXPRESS database to migrate to SQL2005 server which is working in
the same server.

SETUP
Win2003 Std R2
Office 2003
SQL 2005 std (db, client and books only)
Sharepoint 2003 + ('STS SP2' patch, then 'Portal SP2' patch')
Biztalk 2006 eval.
Portal Website is created. Website is then switched to ASP 2.0. STSADM
was run.

ERROR MESSAGES
When sharepoint website was running on ASP 1.1, everthing was ok. When
ASP2.0 was added, The web site would request for authentication as it
normally does and if you authenticated as administrator it should normall
let you in. This time no credentials would work (administrators, service
accounts) and it would continually request for authentication - failure
with
403 after third password failure.
On checking the IIS 6.0 (properties of website), go to ASP tab, you
will
see the ASP version is 2.0 (when we changed it earlier). On checking the
config (GLOBAL and other one). The connection string show something like
this (I am recalling as I am rebuilding the box at the moment).
LocalServer "data source=.\SQLEXPRESS; Security=SSPI;Files=|\Data
Files\datafile.mdf;Option=ua"
The line is not wrong - I just can't remember it properly, the pertinent
point it that it wasn't altered.

COMPENSATION ATTEMPTS
After checking google, I am on unfamiliar ground but I have attempted
two things:

Attempt 1
run aspnet_iisreg to create new asp database in MSSQLSERVER (the local
install on SQL2005) called ASPNET
LocalServer "data source=.\MSSQLSERVER; Security=SSPI;Initial
Catalog=ASPNET;Option=ua"
LocalServer "data source=.\MSSQLSERVER;
Security=SSPI;database=ASPNET;Option=ua"
(note MSSQLSERVER is the virtual server and ASPNET is the database I
created via aspnet_iisreg)

Attempt 2
returned connection strings of BOTH ask configs back to normal.
granted service accounts full access to SQLEXPRESS instance

COMMENT
Any pointers to documentation will be welcome. I am in process of
rebuilding workstation again, so additional requests for more info might
be
sparse as I have blown the box away. I dare say I will get the problem
again. I am going to try to install the machine and see whether the pre
requesites can be configured not use an EXPRESS/MSDE instance - though I
doubt it.
How did you set authorization in the ASP.NET website (security tab on IIS)?
What are the ACLs on NTFS, the directory where your ASPx pages are?
What access rights are set on
c:\windows\temp
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files for
the 'network service' accouint?

What does web.Config show in the <autorizationtags?

Is this included?
<authentication mode="Windows"/>
<identity impersonate="true" />

How did you configure SQLEXPRESS authentication? Did you allow specific
groups/users to access it?

Also check this
PRB: "Access Denied" Error Message When Using ServerXMLHTTP to Access an
Authenticated Site
ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.KB.v10.en/enu_kbmsxmlkb/msxmlkb/291008.htm
Enable negotiate on IE6
ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.KB.v10.en/enu_kbie/ie/299838.htm

Troubleshoot IIS negiotiate 326985
http://www.microsoft.com/technet/pro.../tkerbdel.mspx
Enable negotiate on IIS
ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.KB.v10.en/enu_kbiis/iis/215383.htm

Enable negotiate using XMLHttp
ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.KB.v10.en/enu_kbmsxmlkb/msxmlkb/314404.htm

http://support.microsoft.com/kb/326985/

Jul 7 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Gerhard Pretorius | last post by:
ON Win 2003 IIS6, Since yesterday, (12 Aug 2003) for some strange reason, (after installing WindowsServer2003-KB823980-x86-ENU.exe) I cannot pass the Request object to to VB COM DLL. I have...
11
by: Ed Dearlove | last post by:
**Also posted in inetserver.iis newsgroup as I am unsure of where the problem lies** Hi, I have a strange problem, or I may just be stupid, but wondering if anyone can help with this one: ...
2
by: postings | last post by:
Hi I was under the mistaken impression that Application variables could be shared by websites running under the same IIS process. Looking at the documentation this isn't true. So what is the...
0
by: S. Berwanger | last post by:
Hallo, I have a PDA (WinCE 4.2) application which using a XML-Webservice for data exchanging. Both parts are developed with VS2003. When I'm using IIS5.1 the system runs without problems. But...
2
by: AnalogKid17 | last post by:
Keywords: ASP.NET app with VS2005 running on Win2003 with IIS6, and SQL2000 on a WinXP Box I've betting the following for days... it's driving me insane: Server Error in '/' Application. ...
7
by: =?Utf-8?B?QVRT?= | last post by:
HOWTO Make CStr for JavaScript on ASP w/ Request.Form and QueryString In ASP, Request.Form and Request.QueryString return objects that do not support "toString", or any JavaScript string...
9
by: Mark Rae | last post by:
Hi, Now that the VS.NET 2005 SP1 update patch is with us, I'm in the process of moving my main development environment onto 64-bit Vista Business Edition - so far, so good... However, there...
18
by: Thomas Lunsford | last post by:
I have inherited a set of asp pages that I now need to augment. In order to minimize changes to production code, I would like to make a "call" to an asp page from a new asp page. Existing code is...
2
by: CKKwan | last post by:
Dear All, Using VS2008 on Vista (IIS7). Request.ApplicationPath return something like "http://localhost:50440/" When deploy into Server 2003 (IIS6), found that Request.ApplicationPath is...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.