Re: Virtual Directory not working



"George Ter-Saakov" <gt-nsp@xxxxxxxxxxx> wrote in message
news:O1v5JcY5HHA.3916@xxxxxxxxxxxxxxxxxxxxxxx
1. web.config files are inheritable.
So in your case when you have www.stf.com/stage/ ASP.NET takes web.config
from www.stf.com folder and merges it with www.stf.com/stage/ folder. That
is why you get an error "The module 'ScollKeeperModule' is already in the
application and cannot be added again"

Then is there no way to do this?

I need to have ScrollKeeper in my system but I need to call it both ways: as
a website (www.stfstage.com) and as a virtual directory (www.stf.com/stage).

Also, I don't have a problem with any of the other entries in the web.config
files, such as the appSettings:

<appSettings>
<add key="ConnectionString" value="Persist Security Info=False;Data
Source=xx;Initial Catalog=yy;User ID=zz;Password=ff;"/>
</appSettings>

In my case, I have a different database for my live application and one for
my development site. In this case, which one would it use? The one from
www.stf.com or the one from the www.stf.com/stage folder?

2. When you go by www.stf.com/stage/ your root is considered to be
www.stf.com and /stage/ is subfolder. so when you refer to your controls
as '/skins/mth/MainPage.ascx' you actually refer to
www.stf.com/skins/mth/MainPage.ascx which is another application and you
can not do that. And ASP.NET pollitely tells you about it.

You should use ~/ so it will be '~/skins/mth/MainPage.ascx'. ~ symbol
means in root of application. So in your case the ASP.NET will translate
it as www.stf.com/stage/skins/mth/MainPage.ascx

You can use ~ anywere in a code that processed by ASP.NET
Example:
<img src="~/myimge.gif"> -- will not work. The ASP.NET does not parse
plain HTML.
<img src="~/myimge.gif" runat=server> --will work correctly. ASP.NET
parses out any tag that marked as runat=server.

That seems to work as you say.

I did do a trace on this page and here is what it is showing:

PATH_INFO /stage/JobSeeker/displayCompanyJobs.aspx
PATH_TRANSLATED
C:\Inetpub\wwwroot\StfStage\JobSeeker\displayCompanyJobs.aspx

So the system knows what the path is so I am not sure why I need the "~" but
it does work. As you say if I do:

<img src="~/myimge.gif">

It doesn't work and shows as a broken gif. But

<img src="/myimge.gif">

does seem to work and knows to look at the root of the Application. I would
have thought that .net objects would do the same (would have been more
consistent). I would have thought that you would use the "~" for the
exceptions. Oh well.

The other thing that doesn't seem to work is:

<img src="../../myimge.gif">

Which works fine if I call it from www.stfstage.com but why wouldn't it work
here? It has nothing to do with the root of the Application.

Thanks,

Tom


George.



"tshad" <t@xxxxxxxx> wrote in message
news:ex8rUFS5HHA.1168@xxxxxxxxxxxxxxxxxxxxxxx
I have a site www.stf.com and a site www.stfstage.com (where I do all my
testing).

The problem is that www.stfstage.com is only internal and I need to get
access from the outside (without creating a new domain).

I tried to create a Virtual directory inside my stf site so that I would
access it like: www.stf.com/stage/.

I run as www.stfstage.com fine and have for a long time.

But if I try to do it as www.stf.com/stage/ I get the error:

************************************
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.

Parser Error Message: The module 'ScollKeeperModule' is already in the
application and cannot be added again

Source Error:

Line 33: </webServices>
Line 34: <httpModules>
Line 35: <add
type="NFission.WebControls.ScrollKeeperModule,NFission.WebControls.ScrollKeeper"
Line 36: name="ScollKeeperModule" />
Line 37: </httpModules>


Source File: C:\Inetpub\wwwroot\StfStage\web.config Line: 35
************************************
<configuration>
<configSections>
<section name="scrollKeeper"
type="NFission.WebControls.ScrollKeeperConfigHandler,NFission.WebControls.ScrollKeeper"/>
</configSections>
<scrollKeeper default="true">
<page name="testRIA.aspx" scrollKeep="false" />
<page name="JpegImage.aspx" scrollKeep="false" />
<page name="JpegImage2.aspx" scrollKeep="false" />
<page name="/employer/registerEmployer.aspx" scrollKeep="false" />
</scrollKeeper>
<system.web>
<compilation defaultLanguage="vb" debug="true" />
<pages validateRequest="false" />
<customErrors mode="Off" />
<sessionState
mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424"
cookieless="false"
timeout="400"
/>
<authentication mode="Forms">
<forms name="staffing"
loginUrl="/applicant/ee_logon.aspx"
timeout="400"
protection="All"
path="/" />
</authentication>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
<httpModules>
<add
type="NFission.WebControls.ScrollKeeperModule,NFission.WebControls.ScrollKeeper"
name="ScollKeeperModule" />
</httpModules>
<httpHandlers>
<add verb="*" path="MetaBuilders_DialogWindow.axd"
type="MetaBuilders.WebControls.DialogImageHandler,
MetaBuilders.WebControls.DialogWindow" />
<add verb="GET"
path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
<add verb="GET" path="CaptchaImage.aspx"
type="WebControlCaptcha.CaptchaImageHandler, WebControlCaptcha" />
</httpHandlers>
</system.web>
</configuration>
************************************************************************************

Scrollkeeper is apparently causing the problem but only as a Virtual
directory. It works fine when I access it as www.stfstage.com.

If I take out the ScrollKeeper sections it seems to have a problem with
virtual paths and gets an error:
***************************************************************************************
The virtual path '/skins/mth/MainPage.ascx' maps to another application,
which is not allowed.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: The virtual path
'/skins/mth/MainPage.ascx' maps to another application, which is not
allowed.

Source Error:

Line 27: navigation = "NavigateTop" & ".ascx"
Line 28: end if
Line 29: pageControl = LoadControl(thePage)
Line 30: thePlaceHolder.Controls.Add(pageControl)
Line 31: contentControl =
CType(thePlaceHolder.FindControl("_ctl0:Navigation"),Control)

Source File:
C:\Inetpub\wwwroot\StfStage\jobSeeker\displaycompanyJobs.aspx Line: 29
***************************************************************************************

My code that is causing the problem is:

tePage = "/skins/" & session("CompanyInitials") & "/" & "MainPage" &
".ascx"
pageControl = LoadControl(thePage)

How can I make this work in my scenario - or can I?

Thanks,

Tom





.



Relevant Pages

  • Re: error in generated project
    ... if its a sample u just copied into the wwwroot folder to run, ... Services&Applications>IIS>WebSite> Default WebSite) and browse to find ... An error occurred during the processing of a configuration ... > Source Error: ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Virtual Directory not working
    ... from www.stf.com folder and merges it with www.stf.com/stage/ folder. ... An error occurred during the processing of a configuration ... Source Error: ... The virtual path '/skins/mth/MainPage.ascx' maps to another application, ...
    (microsoft.public.dotnet.framework.aspnet)
  • RE: Forms Authentication errror
    ... > I am trying to use Forms Authentication in a sample project. ... > I have also included a web.config file in that folder with following ... > configuration file required to service this request. ... > Source Error: ...
    (microsoft.public.dotnet.framework.aspnet)
  • problem with web.config
    ... folder page he me show the error ... An error occurred during the processing of a configuration file required to service this request. ... Source Error: ...
    (microsoft.public.dotnet.framework.aspnet.security)
  • Re: File Exist
    ... with file and folder paths. ... it is a relative virtual path. ... root folder of your app would be http://localhost/images/5/Video1/qbert.flv. ... you need to determine the root-relative path first. ...
    (microsoft.public.dotnet.framework.aspnet)