-
Posted to
Performance
by
shivashankarp
on
10-02-2008, 1:49 AM
I have requirement to set up a XMPP chat server and enable web-based-chat (similar to Facebook/GTalk). A huge number of XMPP clients would be connected via HTTP at any point of time (approx. 100,000 clients can be handled concurrently by the XMPP server we use). If possible I would like to proxy the HTTP requests from the client ...
-
Posted to
IIS7 - URL Rewrite Module
by
shivashankarp
on
09-10-2008, 10:50 PM
No I haven't tried setting that. I would prefer not to set that due to the associated performance implications. Is a fix from IIS team expected any time soon?
-
Posted to
IIS7 - URL Rewrite Module
by
shivashankarp
on
09-09-2008, 5:34 AM
Detailed info here http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=357248.
Due to this bug, extensionless urls becomes impossible with IIS7 on a site that uses session state and url rewriting extensively.
Any workarounds other than the one mentioned in the above link?
-
Posted to
IIS7 - General
by
shivashankarp
on
09-06-2008, 11:13 AM
The CSS paths emitted by the ASP.NET Theme component doesn't align itself relative to the source page when the source path is executed via Server.TransferRequest introduced in IIS7. The CSS path is aligned relative to the originally requested page. Is this a known issue? Any workarounds?
-
Posted to
IIS7 - General
by
shivashankarp
on
09-05-2008, 1:35 AM
But, won't the two virtual directories run in different app domains? In that case, it is a problem for me as my application is cache intensive and can't afford to run multiple instances on the same machine.
Any other suggestions?
-
Posted to
IIS7 - URL Rewrite Module
by
shivashankarp
on
09-04-2008, 12:09 PM
The only reason i'm uncomfortable with the ARR solution is due to the hop involved and the associated performance impact.
The HttpListener API supports the ability to listen to multiple url paths. Any reason why this feature is not exposed at IIS level? It would have been good if we were able to map multiple url paths to a single virtual ...
-
Posted to
IIS7 - General
by
shivashankarp
on
09-04-2008, 4:05 AM
I have a requirement to bind multiple paths to a single virtual directory. For example, consider the below urls...
1. http://localhost/
2. http://localhost/A
3. http://localhost/BUrl 1 would point to the default website. I want url 2 and url 3 to point to a single virtual directory under the default website. How to achieve ...
-
Posted to
IIS7 - URL Rewrite Module
by
shivashankarp
on
09-04-2008, 4:02 AM
Is it possible to rewrite across application pools? To the extent I tested, the server throws out error saying that it is not possible. Is there any alternative for that?