Questions tagged [subapplication]
35 questions
8
votes
2 answers
IIS7: disabling HttpModule in subapplication - sites, application and virtual directories
I have a few aspx files in a "Cache" folder in my application and I do not want HttpModules to run for those files in that folder. I tried having a web.config in subdirectory but learned that HttpModules take the root web.config and not that of the…

ram
- 11,468
- 16
- 63
- 89
6
votes
2 answers
Blocking web.config inheritance in a sub-application
We have a legacy .NET solution which has a combination of MVC and WebForms stuff, and some Web API projects as applications under the website root. Obviously these Web API applications will inherit the website's web.config settings.
We also have…

awj
- 7,482
- 10
- 66
- 120
4
votes
2 answers
How to mount express.js sub-apps over uri with parameter
I'd like to be able to mount a whole express sub-app on a uri containing a parameter. I've something similar to the following:
in app.js:
var app_authors = require('./api/authors');
var app = express();
...
app.use('/api/authors',…

Marco Pantaleoni
- 2,529
- 15
- 14
3
votes
1 answer
.NET Core 3.1 with ReactJs 16.9.0 - Run in IIS sub-folder
I have a .NET Core 3.1 with ReactJs frontend (I am using the switch bionic framework) that I am trying to run in a sub folder (subapp) on IIS. Installing the app on IIS as a website works fine. The application runs without problems. But, when…

user5763204
- 99
- 1
- 11
3
votes
3 answers
ASP.NET 4.0 app mapped through virtual folder on SharePoint 2010
I'm considering publishing an an ASP.NET MVC 3 app under a SharePoint 2010 application on IIS (not inside SharePoint as a SPSite or whatnot, just a regular IIS application for SSO-integration w. SP).
The MVC app would then only inherit some configs.…

John Korsnes
- 2,277
- 2
- 20
- 31
3
votes
0 answers
How do I setup a subapplication on appharbor
I'm currently working on a website, discgolfauctions.com. As currently setup, it has two pieces, the main application (currently just a landing page) and a blog. The blog is run using BlogEngine.NET and lives in underneath the main application as a…

Mike Cellini
- 340
- 2
- 11
3
votes
0 answers
how to make a sub_application request in parent_application?
I have two web application: parent_app and sub_app
say that, http://www.some.com/parent.png will be handled by parent_app.
if it is refererd in another website, parent_app get a HTTP_REFERER, say that is http://www.other.com/path?query=value,
I…

netroyal
- 257
- 3
- 10
3
votes
1 answer
iis7.5 rewrite 500.52 for sub virtual app
I've just migrated from IIS6 svr2003 to IIS7.5 server 2008r2 and installed the url rewrite. That all works great. The website in question is large and running under .net 2 integrated pipeline. Can't redo in .net 4 at this time. I'm brand new to…

user1368644
- 31
- 3
2
votes
2 answers
Can't seem to listen for UncaughtErrorEvent for SubApplication loaded by SWFLoader
I have a main Flex Application ('A.swf') loading a SubApplication (defined in' B.swf') via a SWFLoader and I need to listen for UncaughtErrorEvent from the SubApplication. I'm not able to get my event listeners to be called when I throw an error…

AnthonyCor
- 41
- 3
2
votes
1 answer
Serve static files from sub-app in web.py
I am writing a web-app in web.py (a rewrite/extension of mongs) which I want to function both as a standalone application, and as a sub-app that requests can be forwarded to. The issue that I am having is that when it is used as a sub-app, static…

slang
- 626
- 7
- 26
1
vote
0 answers
Asp.net core application Ajax post is hitting wrong action after publishing
I have hosted a new ASP.Net core application as a sub-site of another application in IIS. In local everything has been working fine. But, after publishing this application as a subsite, Ajax post request is hitting the wrong controller and…

Mohanraj Periyannan
- 309
- 3
- 14
1
vote
1 answer
How to add a sub application (developed with asp.net mvc) in Dynamics 365?
I want to add a sub application in Dynamics 365 IIS site app, and I had copied all dlls to my app 'bin' folder, but it still not work, and the page throw the '404' error.
Is there any way else to help me?

yehen
- 15
- 3
1
vote
0 answers
react-redux sub-apps, what's the recommended way to access parent store
I am creating an app that contains 2 sub-app components.
each one has it's own store/reducers etc.
The sub-app components are rendered in a parent component that holds a "Main" redux-store with shared redux-props (eg. user name, is loading state…

Shai Kimchi
- 746
- 1
- 4
- 22
1
vote
1 answer
How do I run another Android application/activity in a window inside my app
What I want to do is be able to start another Android sub application (which I have not written myself) to run inside a window within my main application. I would want certain touch events etc on the elements of the main app that are still visible…

Simon East
- 2,516
- 2
- 18
- 21
1
vote
1 answer
Whether I should use more than one store instances, when managing an elevator manager like app?
Multiple store instances in a React Redux app, I know it's not recommended but I think in my case they are.
I am doing an elevator logic app for a building with 2 elevators.
When an elevator is requested on any floor selected, is the one that could…

Shai Kimchi
- 746
- 1
- 4
- 22