<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tag 'web service'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=web+service&amp;orTags=0</link><description>Search results matching tag 'web service'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>DLLImport doesn't work with Web Service</title><link>http://forums.iis.net/p/1161507/1919627.aspx#1919627</link><pubDate>Tue, 06 Oct 2009 09:44:58 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1919627</guid><dc:creator>Superkew</dc:creator><cs:applicationKey>troubleshooting--1</cs:applicationKey><description>Hey
&lt;br /&gt;
&lt;br /&gt;
I posted this on the asp.net forum, and they suggested to put it here. Sorry for the formatting.
&lt;br /&gt;
&lt;br /&gt;
I really hope you can help me!
&lt;br /&gt;
&lt;br /&gt;
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/e3bcbf6f-c51a-4c53-89f2-8e083c5e8981
&lt;br /&gt;
&lt;br /&gt;
I have been searching many sites and forums. I am developing on the same set of dlls as this post:
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/d5a92d8e-1c11-44af-b635-4f89471a3351
&lt;br /&gt;
&lt;br /&gt;
The issue I have is that these are the new c++ dlls from the same source. There is one main dll (agproxy.dll), and 3 dependency dlls: utility.dll, sockets.dll, async.dll.
&lt;br /&gt;
&lt;br /&gt;
When natively consuming the dlls in an application it works 100%. When I use the run debug on a web service in VS2008 (.NET 2.0) it works. (dlls get encapsulated in the wonderful MS exe that holds the debug env.)
&lt;br /&gt;
&lt;br /&gt;
BUT as soon as I publish to IIS... fails.
&lt;br /&gt;
&lt;br /&gt;
Unable to load DLL &amp;#39;agproxy.dll&amp;#39;: A dynamic link library (DLL) initialization routine failed. (Exception from HRESULT: 0x8007045A)
&lt;br /&gt;
&lt;br /&gt;
Here is some information...
&lt;br /&gt;
&lt;br /&gt;
We use an unsafe class, and pass some values by ref in the following manner:
&lt;br /&gt;
&lt;br /&gt;
[WebMethod]
        public string OpenUsingLocal()
        {
            int blah;
            // This method will create a new transaction.
            try
            {
                    ft2_open_transaction(0, &amp;amp;blah, 2);
            }
            catch (Exception ex)
            {
                return ex.Message;
            }

            return &amp;quot;Success&amp;quot;;
        }

        [DllImport(&amp;quot;agproxy.dll&amp;quot;)]
        public static extern int ft2_open_transaction(int invoicehandlex, int* transactionhandle, int timeout);
&lt;br /&gt;
&lt;br /&gt;
I have also tried manually setting permission on the folder and dlls to full access for all IIS users and the Everyone account to just see if it works.
&lt;br /&gt;
&lt;br /&gt;
Any help would be appreciated!
&lt;br /&gt;
&lt;br /&gt;
I have a log from process monitor here. As you can see the search pattern and how it loads the files... I have only pasted from the IIS process w3wp.exe.
&lt;br /&gt;
&lt;br /&gt;
w3wp.exe QueryOpen C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\nomadtest\e0b02f7d\7d2f67bb\assembly\dl3\5dcabd59\1c759893_4943ca01\agproxy.dll NAME NOT FOUND 
w3wp.exe QueryOpen C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\nomadtest\e0b02f7d\7d2f67bb\assembly\dl3\5dcabd59\1c759893_4943ca01\agproxy.dll NAME NOT FOUND  
w3wp.exe QueryOpen C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS CreationTime: 10/5/2009 2:58:35 PM, LastAccessTime: 10/5/2009 5:06:33 PM, LastWriteTime: 8/26/2008 6:32:40 AM, ChangeTime: 10/5/2009 3:30:23 PM, AllocationSize: 155,648, EndOfFile: 155,648, FileAttributes: A
w3wp.exe CreateFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Desired Access: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a, OpenResult: Opened
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE
w3wp.exe QueryStandardInformationFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS AllocationSize: 155,648, EndOfFile: 155,648, NumberOfLinks: 1, DeletePending: False, Directory: False
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CloseFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS 
w3wp.exe Load Image C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Image Base: 0x10950000, Image Size: 0x28000
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 147,456, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 4,096, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 36,864, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 69,632, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 102,400, Length: 12,288, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 114,688, Length: 16,384, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 131,072, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\agproxy.dll SUCCESS Offset: 139,264, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe QueryOpen C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS CreationTime: 10/2/2009 11:25:05 AM, LastAccessTime: 10/5/2009 5:06:33 PM, LastWriteTime: 8/26/2008 6:32:34 AM, ChangeTime: 10/5/2009 3:30:23 PM, AllocationSize: 176,128, EndOfFile: 176,128, FileAttributes: A
w3wp.exe CreateFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Desired Access: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a, OpenResult: Opened
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE
w3wp.exe QueryStandardInformationFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS AllocationSize: 176,128, EndOfFile: 176,128, NumberOfLinks: 1, DeletePending: False, Directory: False
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CloseFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS 
w3wp.exe Load Image C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Image Base: 0x10eb0000, Image Size: 0x2d000
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 163,840, Length: 12,288, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 4,096, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 36,864, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 69,632, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 102,400, Length: 16,384, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 118,784, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 126,976, Length: 16,384, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 143,360, Length: 12,288, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\utility.dll SUCCESS Offset: 155,648, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe QueryOpen C:\WINDOWS\system32\inetsrv\async.dll SUCCESS CreationTime: 10/2/2009 11:25:05 AM, LastAccessTime: 10/5/2009 5:06:33 PM, LastWriteTime: 8/26/2008 6:32:40 AM, ChangeTime: 10/5/2009 3:30:23 PM, AllocationSize: 90,112, EndOfFile: 90,112, FileAttributes: A
w3wp.exe CreateFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Desired Access: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a, OpenResult: Opened
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\async.dll SUCCESS SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE
w3wp.exe QueryStandardInformationFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS AllocationSize: 90,112, EndOfFile: 90,112, NumberOfLinks: 1, DeletePending: False, Directory: False
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\async.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\async.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CloseFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS 
w3wp.exe Load Image C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Image Base: 0x2460000, Image Size: 0x17000
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 81,920, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 4,096, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 36,864, Length: 12,288, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 49,152, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 57,344, Length: 16,384, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\async.dll SUCCESS Offset: 73,728, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe QueryOpen C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS CreationTime: 10/2/2009 11:25:05 AM, LastAccessTime: 10/5/2009 5:06:33 PM, LastWriteTime: 8/26/2008 6:32:40 AM, ChangeTime: 10/5/2009 3:30:23 PM, AllocationSize: 86,016, EndOfFile: 86,016, FileAttributes: A
w3wp.exe CreateFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Desired Access: Read Data/List Directory, Execute/Traverse, Synchronize, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: n/a, ShareMode: Read, Delete, AllocationSize: n/a, OpenResult: Opened
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE
w3wp.exe QueryStandardInformationFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS AllocationSize: 86,016, EndOfFile: 86,016, NumberOfLinks: 1, DeletePending: False, Directory: False
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CreateFileMapping C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS SyncType: SyncTypeOther
w3wp.exe CloseFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS 
w3wp.exe Load Image C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Image Base: 0x10ff0000, Image Size: 0x16000
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 77,824, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 4,096, Length: 32,768, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 36,864, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 45,056, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 53,248, Length: 16,384, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O
w3wp.exe ReadFile C:\WINDOWS\system32\inetsrv\sockets.dll SUCCESS Offset: 69,632, Length: 8,192, I/O Flags: Non-cached, Paging I/O, Synchronous Paging I/O</description></item><item><title>Web Service unable to connect to 3rd party software</title><link>http://forums.iis.net/p/1160293/1914537.aspx#1914537</link><pubDate>Tue, 25 Aug 2009 11:00:43 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1914537</guid><dc:creator>Riisto</dc:creator><cs:applicationKey>troubleshooting--1</cs:applicationKey><description>&lt;p&gt;I&amp;#39;m running Windows XP with IIS installed on it. Everything happens on the same computer.&lt;/p&gt;&lt;p&gt;I&amp;#39;ve built a Web Service with Visual Studio 2005. It uses 3rd party programs API to operate the 3rd party program. I&amp;#39;ve added the required references and testing it in Visual Studio by &amp;#39;View in browser&amp;#39; shows that it works just fine. Exporting it to the IIS with Visual Studios &amp;#39;Publish Web site&amp;#39; as a precompiled Web Service it works from localhost:\\ as it should (giving the basic screen with info) but when making a call for the WS from the browser through the provided basic form it doesn&amp;#39;t seem to be able to contact the 3rd party software anymore.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I think this might have to do with Windows or IIS security, cause it would seem quite hazardous to let people connect and use any software installed on the same computer. I do have administrator rights and I do use the snap-in computer management tool.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance,&lt;/p&gt;&lt;p&gt;Risto &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;edit: if the topic is in wrong forum please be free to move it &lt;br /&gt;&lt;/p&gt;</description></item><item><title>What to do for a rootkit...</title><link>http://forums.iis.net/p/1158419/1906905.aspx#1906905</link><pubDate>Sun, 14 Jun 2009 13:01:38 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1906905</guid><dc:creator>rgsnowman</dc:creator><cs:applicationKey>iis7_-_security--1</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;I have recently found a rootkit on my computer through AVG and am wondering how to get this thing off. I tried to get AVG to delete it but it said it cannot. I heard you can re-install windows vista and also restore default settings but I am not sure if that deletes everything and I&amp;#39;ll have to get external hd and if the rootkit would get itself into there and I&amp;#39;d be re-installing a rootkit. This rootkit is screwing up my xps one it tiny ways, it changed all my security setting and turned my anti-viruses off and I can&amp;#39;t turn them back on, messed up background, screwed up start menu and toolbar, and the side panel. I just want to know the best way to get this off computer. Thanks in advance.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>is there Antivirus and firewall for web server 2003 sp2 ii6 ?</title><link>http://forums.iis.net/p/1155596/1894850.aspx#1894850</link><pubDate>Wed, 25 Feb 2009 19:05:16 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1894850</guid><dc:creator>netjumper</dc:creator><cs:applicationKey>security--1</cs:applicationKey><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I have been recently looking for a&amp;nbsp; security suite that will run on my web server&lt;/p&gt;
&lt;p&gt;to secure my local side but allso maintain a secure envirement for the public&lt;/p&gt;
&lt;p&gt;gateway side. All I have found to date is&amp;nbsp; an ISA system but not for iis6.&lt;/p&gt;
&lt;p&gt;Any guidance from anyone in the know would be very much appreciated&lt;/p&gt;</description></item><item><title>How to fetch the list of deployed web service on IIS </title><link>http://forums.iis.net/p/1154552/1890857.aspx#1890857</link><pubDate>Fri, 23 Jan 2009 16:16:36 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1890857</guid><dc:creator>abhayorc</dc:creator><cs:applicationKey>configuration__scripting--1</cs:applicationKey><description>&lt;p&gt;Hi, i am trying to fetch the list of deployed  .Net web services on my IIS 6.0. Right now i can see all the applications deployed on IIS 6.0 through the Microsoft wmi explorer . Does IIS provide some other mechanism to expose the web services deployed on it ??? &lt;/p&gt;&lt;p&gt;&amp;nbsp;As through wmi explorer by using namespace root\cimv2, i am able to get web services and all the other application deployed all together, but through that data , i am unable to differentiate between them. Also, can you tell me if there is any way to fetch the list of web services deployed, with there corresponding request counts, fault counts , processing time etc..?? like we can see on Jmx console of server like &amp;quot;JBoss&amp;quot;. &lt;/p&gt;&lt;p&gt;Can we fetch .Net web service using wmi explorer ?? or is any other way&amp;nbsp; ?&lt;/p&gt;&lt;p&gt;&amp;nbsp;Thanks&lt;/p&gt;&lt;p&gt;Abhay Gupta &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Hello everyone</title><link>http://forums.iis.net/p/1152127/1880953.aspx#1880953</link><pubDate>Wed, 01 Oct 2008 20:34:14 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1880953</guid><dc:creator>nathyx</dc:creator><cs:applicationKey>security--1</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;Please guys i need an urgent help, i am developing a project which i need to create a webservice. But anytime i try to add a web reference, i get a request to enter my user name and password after choosing the webservice i created. I tried using the windows user name and password but it didn&amp;#39;t work. i am using windows XP pro service pack 2. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>HTTP 404, when trying to reach ASP.net 2.0 in IIS v6</title><link>http://forums.iis.net/p/1151356/1877686.aspx#1877686</link><pubDate>Tue, 26 Aug 2008 19:55:23 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1877686</guid><dc:creator>Nina9</dc:creator><cs:applicationKey>aspnet_administration--1</cs:applicationKey><description>&lt;p&gt;I have installed a Live chat application which requires Asp.net 2.0 ( I am going to host it in house) and since all of my other websites use Asp.net 1.0, I upgraded .NET framework 1.0 to 2.0; but when I installed the chat software I am not able to reach its default page. I realize that in IIS 6.0 It is necessary that for each version of .net framework use a separate Application Pool so I created a new application pool for this Livechat website in IIS and assigned the website to it. I also made sure that in IIS Web Service Extensions, Asp.net 2.0 and 1.0 are allowed. I made sure that there is no app.offline.htm file exists in the file directory... This is the error that I get when I try to reach live chat default page: &amp;quot; The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /default.aspx &amp;quot; Please advise me... &lt;/p&gt;</description></item><item><title>The Asp.net application deployment questions</title><link>http://forums.iis.net/p/1149663/1870765.aspx#1870765</link><pubDate>Tue, 03 Jun 2008 05:30:17 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1870765</guid><dc:creator>twu027</dc:creator><cs:applicationKey>aspnet_administration--1</cs:applicationKey><description>&lt;p&gt;I just finished the development of my ASP.NET, now I want to deploy it under IIS 5.1. &lt;/p&gt;
&lt;p&gt;So I made an installer which packs everything the application needs, then I installed it on my virtual machine (Full network connection and IIS 5.1 installed). &lt;/p&gt;
&lt;p&gt;The problem is this application only can be run as root. what I mean is I can not have directory structure like this:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;wwwroot/kiwiweb/&lt;/p&gt;
&lt;p&gt;&amp;nbsp;kiwiweb is the virtual directory which physically resides under wwwroot directory. &lt;/p&gt;
&lt;p&gt;the kiwiweb/ directory has its only bin folder and everything needed for my application to run.&lt;/p&gt;
&lt;p&gt;what I expected was in the browser, I just go &lt;/p&gt;
&lt;p&gt;&lt;a href="http://localhost/kiwiweb/"&gt;http://localhost/kiwiweb/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;in my code i used the redirect method. after user login.&lt;/p&gt;
&lt;p&gt;so if the user inputs correct credentials, the home page will be shown.&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;this is the code does so:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;context.Response.Redirect(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;/get.aspx?page=home&amp;quot;&lt;/font&gt;&lt;font size="2"&gt;, &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;False&lt;/font&gt;&lt;font size="2"&gt;)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;but the strange thing is the URL will be &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;a href="http://localhost/get.aspx?page=home"&gt;http://localhost&lt;font color="#a31515" size="2"&gt;/get.aspx?page=home&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;font color="#a31515"&gt;if I manully put kiwiweb after localhost/&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;font color="#a31515"&gt;it just show me a empty page. does not work as I expected.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Interestingly, if I put everything includes the bin folder the web.config directly under wwwroot,&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;then I go &lt;a href="http://localhost/"&gt;http://localhost/&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;everything works perfect....&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://localhost/get.aspx?page=home"&gt;http://localhost&lt;font color="#a31515" size="2"&gt;/get.aspx?page=home&lt;/a&gt;&amp;nbsp;also works&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;I just want to why and is there a way to work around? Because my application is just a web interface to our main application. So I dont think it is good idea to have a domain name for this application. and it is not possible for the customer run my application only on their server. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;I know IIS can host several web site, and I dont want my application to be the only site to be hosted by IIS.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;but it only works when I put it directly under the root folder (including the bin folder and other neccesary files)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Great thanks if anyone can help&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Cheers&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Tony&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Sleepy webserivice</title><link>http://forums.iis.net/p/1133640/1804164.aspx#1804164</link><pubDate>Sun, 15 Jul 2007 10:15:03 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1804164</guid><dc:creator>clakesnapster</dc:creator><cs:applicationKey>aspnet_administration--1</cs:applicationKey><description>Hello

I have a ASP.NET WebService deployed on IIS 6.0 and after idle time of a few minutes the webservice sleeps and the subsequent query takes a long time to respond

 

Currently we are pinging the service from a console Application every couple of minutes to make sure it responds fast

 

What configration changes could help us with this issue. 

 

Thanks

Mohit
</description></item><item><title>Problem: Source- ASP.NET 2.0.50727.0  Event Ids 1009, 1084, 1011</title><link>http://forums.iis.net/p/1133405/1803246.aspx#1803246</link><pubDate>Fri, 13 Jul 2007 22:47:04 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1803246</guid><dc:creator>AkaShannon</dc:creator><cs:applicationKey>aspnet_administration--1</cs:applicationKey><description>&lt;p&gt;&lt;br /&gt;
The asp worker process is failing to be created... &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;I am &lt;span style="font-size:12pt;font-family:&amp;#39;Times New Roman&amp;#39;;"&gt;experiencing &lt;/span&gt;issues on 2 out of 3 XP boxes running WebServices in IIS 5.1 under the 2.0 Framework. These boxes were operating fine up until a few days ago (Automatic Update Day). Now they are very sporadic, generally giving the following browser error when attempting to navigate to the WSDL &lt;br /&gt;&amp;lt;&amp;lt;&amp;lt;Server
		  Application Unavailable &lt;br /&gt;The web application you are attempting to
		  access on this web server is currently unavailable. Please hit the &amp;quot;Refresh&amp;quot;
		  button in your web browser to retry your request. &lt;br /&gt;Administrator Note:
		  An error message detailing the cause of this specific request failure can be
		  found in the system event log of the web server. Please review this log entry
		  to discover what caused this error to occur.&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;&lt;p&gt;On other occasions, a lot less frequently, everything works just fine, however doing an IISReset during these times that everything is working correctly will cause the exceptions to return.&lt;br /&gt;&lt;/p&gt;From the Event Viewer:&lt;p&gt;&amp;nbsp;&lt;/p&gt;





&lt;p class="MsoNormal"&gt;Source- ASP.NET 2.0.50727.0&lt;br /&gt;
Event Id&lt;br /&gt;
1009-&lt;br /&gt;
aspnet_wp.exe&lt;span&gt;&amp;nbsp; &lt;/span&gt;(PID: 5380) failed to
startup because the synchronization event&lt;span&gt;&amp;nbsp;
&lt;/span&gt;could not be initialized. Error code: 0x80070002&lt;br /&gt;
1084-&lt;br /&gt;aspnet_wp.exe could not be started. The error code for the
failure is 800705B4. This error can be caused when the worker process account
has insufficient rights to read the .NET Framework files. Please ensure that
the .NET Framework is correctly installed and that the ACLs on the installation
directory allow access to the configured account.&lt;br /&gt;
1011-&lt;br /&gt;aspnet_wp.exe&lt;span&gt;&amp;nbsp; &lt;/span&gt;(PID:
4328) failed to startup because the asynchronous pipe&lt;span&gt;&amp;nbsp; &lt;/span&gt;could not be initialized. Error code:
0x800700e7&lt;/p&gt;&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal"&gt;Here is what I&amp;#39;ve researched and tried so far with no luck:&lt;br /&gt;http://support.microsoft.com/default.aspx/kb/887286&amp;nbsp; (1.1 framework reference) (dll version issues)&lt;/p&gt;&lt;p class="MsoNormal"&gt;http://support.microsoft.com/default.aspx?kbid=811320 (permission issues)&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>