Microsoft Knowledge Base Email Alertz

MOSS 2007:Absolute path information required when attempting to create a new Web application

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 970816 - Last Review: April 30, 2009 - Revision: 1.0

MOSS 2007:"Absolute path information required" when attempting to create a new Web application

Source: Microsoft Support

RAPID PUBLISHING

RAPID PUBLISHING ARTICLES PROVIDE INFORMATION DIRECTLY FROM WITHIN THE MICROSOFT SUPPORT ORGANIZATION. THE INFORMATION CONTAINED HEREIN IS CREATED IN RESPONSE TO EMERGING OR UNIQUE TOPICS, OR IS INTENDED SUPPLEMENT OTHER KNOWLEDGE BASE INFORMATION.

Symptom



Attempting to create a new Web application in Central Administration will fail with the following error message:

    Absolute path information is required.

Subsequent attempts to create web applications will also fail with same error.

Cause



The error message is a result of a failed attempt to provision a new Web application.

For example:
  • An application pool was created prior to creating the Web application and the application pool was shut down and new Web application is created that uses that application pool.
  • The path to the virtual directory is mistyped (such as missing a colon as in: c\inetpub\wwwroot\wss\virtualDirectories\1111).

Resolution



As a workaround you may be able to create new web applications via the command line using stsadm utility.

To delete the offending web application the following sample code can be used as reference:

using Microsoft.SharePoint.Administration;

namespace ConsoleApplication1

{

class Program

{

static void Main(string[] args)

{

SPWebApplicationCollection oWebCollection = SPWebService.ContentService.WebApplications;

foreach (SPWebApplication oWeb in oWebCollection)

{

if (oWeb.Name == "MySampleWebApplication")

oWeb.Delete();

}

}

}

}

Note: Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

More Information

The offending failed Web application will be the last one you attempted to create as all future attempts will fail. You may notice a database created as well as an application pool but missing the Web application.

DISCLAIMER

MICROSOFT AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY, RELIABILITY OR ACCURACY OF THE INFORMATION CONTAINED IN THE DOCUMENTS AND RELATED GRAPHICS PUBLISHED ON THIS WEBSITE (THE “MATERIALS”) FOR ANY PURPOSE. THE MATERIALS MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS AND MAY BE REVISED AT ANY TIME WITHOUT NOTICE.

TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND/OR ITS SUPPLIERS DISCLAIM AND EXCLUDE ALL REPRESENTATIONS, WARRANTIES, AND CONDITIONS WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO REPRESENTATIONS, WARRANTIES, OR CONDITIONS OF TITLE, NON INFRINGEMENT, SATISFACTORY CONDITION OR QUALITY, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE MATERIALS.

APPLIES TO
  • Microsoft Office SharePoint Server 2007
Keywords: 
kbrapidpub kbnomt KB970816
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate