Intermittent error with XmlDocument on ASP.NET app. Related to IIS and DefaultAppPool
Hi,
I have a very bizarre intermittent problem that occurs with some
ASP.NET 1.1 (C#) code I inherited. I'll try to state the problem
sucintly; if more detail is needed please ask! The code is in a
WebApplication. The web application is configured in IIS 6.0 to run
under Application Pools/Default App Pool.
The relevant code looks like this:
private bool ParseXML(string XmlResponseData, ref string
StatusMessage)
{
XmlNodeList List;
XmlNode AppServerNode;
XmlNode SubNode;
try
{
XmlDocument Document = new XmlDocument();
Document.LoadXml(XmlResponseData);
// lots of other code related to taking stuff out of Document
and putting into member variables omitted
}
catch
{
SetError("Failed to load XML response from server ");
return(false);
}
return(true);
}
Most of the time everything works fine. Once in a great while, the
code goes into the catch block. I can tell it goes into the catch
block because "SetError" is a function that ultimately logs the error
message. There is code right before this function that shows
XmlResponseData and logs it. As far as I can tell (and many others
who have stared at it) there is absolutely no difference between the
XML that works fine and the XML that causes the catch block to
execute. In fact, the evidence is stronger than that: we have the
ability to send the same message. Many of us are suspecting that the
lines "new XmlDocument()" or "Document.LoadXml(XmlResponseData)" are
failing (perhaps a memory problem?). Unfortunately, we can't
(currently) modify the code that is running to add more logging at key
places.
There is some more relevant information: Once the problem occurs, it
does not go away UNTIL someone does a "Recycle" on the DefaultAppPool
in IIS. I don't know much about IIS and Application Pools, so I have
no idea why this would fix the problem but it does (until the next
time of course). Another possibly related bit of information is that
the DefaultAppPool is set to auto recycle every 29 hours. Finally, we
occasionally have messages in the log of the form:
A process serving application pool 'DefaultAppPool' exceeded time
limits during shut down. The process id was '4244'
I realize that I probably need to give more details. The problem is
not well defined. I welcome all comments/suggestions/flames on how to
move forward or perform additional tests. Suggestions for more
appropriate newsgroups would also be most welcome. As you can see,
the problem seems to touch a few areas (ASP.NET, IIS, XML).
Sincerely,
Dave Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397060
Application Pools for New Sites
When creating new sites in IIS 6, is the best practice to create a new
application pool for each site? I'm running into a problem where a
site running ASP.NET 2.0 is throwing errors in the Application events
saying which brings down my ASP.NET service for all my sites on the
same server.
"It is not possible to run two different versions of ASP.NET in the
same IIS process. Please use the IIS Administration Tool to
reconfigure your server to run the application in a separate process."
EventID 1062.
The suggested remedy for this is to create a new application pool for
the site. I'm wondering if I need to create a new application pool
for every site or just the one giving me a problem?
Thanks Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397054
Installing a WebService into IIS7 on Vista
Using .NET 2.0 and VS2005, I am trying to make a simple WebService
application and an installer for it.
I want to distribute the installer to several customers, so the installation
should run as smooth as possible.
When trying to install it on Vista, I get a generic errormessage:
"Installation incomlete. The installer was interrupted before
WebSetup1 could be installed"
Is it possible to figure out in more details what went wrong in the
installation?
I have figured out that IIS6 compatibility components must be activated in
IIS7 to make my webservice install properly.
How can I (using VS2005) make my WebService application not be dependent on
IIS6 when installed on IIS7?
(I want it to be installable on XP with IIS6 also)
I am using a standard Web Deployment Setup project in VS2005. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397041
IIS7 on Vista, which components do I need to install.
I have made a simple WebService Application and a Windows Installer for it
using VS 2005.
When installing it on IIS7 on Vista, which IIS components to I need to turn
on to make the installer work?
With default components (and ASP.NET & .NET ) turned on, I get an installer
error "Installation incomlete. The installer was interrupted before
WebSetup1 could be installed".
With all components turned on, I get successful installation.
But I don't want to turn on more than I have to.
I want to distribute this installer to many users, so the installation
should run as smoothly as possible.
Thanks for any advice Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397039
.asp pages unable to load
Hi
Rather a tentative question as I am not the webmaster in question. Our
website is an asp dynamic website running its pages via access databases for
raw data, security and logs. Said webmaster put our website on a new Windows
2003 server about a year ago with no problems whatsoever (he is not a
Windows man at all).
For the last three weeks, though, asp pages have completely frozen and do
not load (with no IE error message). They always seem OK after a restart but
have continued to work for a smaller and smaller amount of time (now only
about 3 hours). Webmaster has no idea what to do, and is increasingly
frustrated having to restart the whole time (as it is a pay-per-click site
this is imperative).
Ftp and html pages work, and as I mentioned, the asp pages have worked and
do work in a fashion - so it may not be a scripts issue in IIS.
have put up a test.asp page that sporadically works (eg three times out of
five over the last ten minutes)
Really have no ideas, just really wondering if these symptoms ring any bells
Many thanks for any help in advance
Johnny Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397038
IIS6 logs: stats=200, sc-bytes=0 -- any ideas?
I've been looking through IIS logs all day and discovered many entries which
look otherwise normal except for the "sc-bytes" field being zero. What
conditions would cause this to happen? It's not just one client or one
URL - it seems pretty random, and refers to normal documents that usually
have non-zero "sc-bytes" fields.
Thanks for any pointers! Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397020
SSL on non-standard port question
I have one (1) public IP address running through a NAT router, and three (3)
private network sites set up on my server:
--> default - LAN IP: all unassigned - SSL: 443
--> companyweb - LAN IP: 192.168.1.1 - SSL: 444
--> newsite - LAN IP: 192.168.1.2 - SSL: 4433
My question is... will a certificate work with 'newsite' using this set-up?
And if so, what special process, if anything, will need to be done when
requesting my certificate for port 4433? Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397019
IIS not returning icons, aspx site
Hi, I have a small issue with an application that uses iis. The platform is
Server 2003 Small Business, iis6 obviously with .net2 installed. I have
created a new website and have created a new application pool so I can run
.net 2 and 1. The site uses aspx and I have allowed .net 2 to run. The site
works, I can browse and it returns pages but for some reason no icons are
present, I just get the red cross where they should be. I asked the vendor
what he thought; he had no idea but said that the icons are in the dll files.
Right.
So I have made a lot of effort searching this and can not even find anything
close.
My Exchange OWA and SharePoint works spot on, it returns pages and images.
Any ideas would be great please.
Many Thanks
Johan Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397011
Is SSL needed within a private network??
I have credit card info which i need transfered from my local and vpn clients
to my local server and then out to my merchant gateway.
Question:
Is SSL needed between the local and vpn clients to the local server? And if
so, how do I set that up? Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 397010
Can't Run multiple web sites on IIS 6???
Hello,
Sorry, completely frustrated with IIS. I'm not sure why, but I'm finding it
impossible to run multiple web site on my server. The sites are for my own
internal Intranet use, not exposed to the world.
I have read all the help files on using Ports, IP, or host names.
I did not want to use different ports, to hard for employees to remember
port numbers.
Do not want to use different IP'S for same reason.
That leaves me with HOST HEADERS and totally confussed.
I need to mess with DNS to use these I quess and this is where it falls apart.
I do not have my DNS set to my REAL web domain name, I simply used
COMPANY.local in my DNS.
How do I run multiple sites with this? COMPANY.local is not a FULLY
QUALIFIED DOMAIN NAME registered with a domain registrar!
If I use COMPANY.local how do I format the Host headers and what url will my
users need to enter to get to the different sites?
WHat about multiple virtual sites withing a single site? What URL will they
need?
Do I need to change the ports still so I don't get the "can't use the same
port for multiple sites" message?
Thanks much,
Mark Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396998
Unable to send Content-Type="text/html" on header
Hello,
I'm trying to make a mobile web with an IBM Websphere Application Server 5.0
and an IIS 5.0 as the web server. But when I access to the site with a mobile
device the server don't return any content-type header for html. For css and
jpg the content-type is right but for the html generated from the jsp page
wich I tried to access there's no content-type returned. I have put on the
jsp the page directive, the response.setContentType and a meta-data.
I try to put the header on custom headers configuration, but now, this
allways send back content-type="text/html" so the images will not be
displayed by de mobile device.
Thanks. I apologized speaking a bad English but in the spanish section I
don't have any anwer. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396995
Intriguing Problem Mapping HTML to ASP
We are currently mapping both the .html and .html extension through asp.dll
this appears to work fine when the server is accessed through a proxy server.
When accessed from the console or from an outside ISP the .html or .htm files
do not process the asp instructions or the server side include files, they
return them to the client. This does not occur with files with a .asp
extension.
The server is Windows Server 2000 SP 4 running IIS 5.0 (Our web host assures
me that it patched up to date)
Can anybody think of a reason why it would work with a proxy byt fail
without? and better yet... can anybody think of a way to fix it?
Thanks Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396994
how to enable web service data compression on IIS6 ?
Hi,
I'm trying to enable HTTP compression of my Web Service data, but i
can't manage it.
I've configured my IIS6:
1. I've added in 'web service extensions' a extension with gzip.dll -
status: allowed
2. in 'web sites' properties in IIS's management console in Service
tab, I've enabled 'compress application files', 'compress static
files', temporary dir size is unlimited, temporary directory exists
and everybody had access.
3. I've added file extensions to be compressed:
cscript.exe adsutil.vbs set W3Svc/Filters/Compression/GZIP/
HcScriptFileExtensions "asp" "dll" "exe" "aspx" "asmx" "ashx"
cscript.exe adsutil.vbs set W3Svc/Filters/Compression/DEFLATE/
HcScriptFileExtensions "asp" "dll" "exe" "aspx" "asmx"
IISreset.exe /restart
4. in my client app I'm creating web service (i'm using .net framework
2.0)
protected WSMy wsMy;
wsMy = new WSMy();
wsMy.EnableDecompression = true;
// here i'm retrieving data asynchronious
but data that's downloaded is still not compressed (i'm checking data
size with firewall)
data length is still the same (it's an XML data with size over 10MB,
so it should compress very good)
directory: C:\WINDOWS\IIS Temporary Compressed Files is empty all the
time.
What should I do to enable compression ?
--
pozdrawiam,
razor Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396993
accessing page from different subnets
hi there, i'm trying to get staff to access our intranet page but am running
into issues. firstly some details about our sites:
core site is subnet 192.168.16.x, and other subnets are 192.168.17.x and
192.168.21.x.
We have IIS running on a server with ISA2004 at the core site with ip
192.168.16.10.
When on subnet other then 16.x, then cannot access sites using FQDN but only
IP. But when have 16.x IP can use FQDN to open sites.
Does this sound like an IIS config or ISA2004? I didn't think it was an ISA
config as you can still access pages just not with FQDN.
Any suggestions would be really helpful as i'm not too familar using IIS.
Thanks. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396988
Why are website images creating multiple connections?
I am hosting a website on my intranet using IIS 5.1 and Windows XP
Pro. It is an OpenWiki(ASP, XSL) site with images from my hard drive.
When someone opens a page with images, several connections to my
server are made. I have 40 connections available but I really would
like to know why each image creates its own connection.
The connections timeout after one minute. I turned off http keep-
alives but that shut down the webserver. I think this is because I use
windows authentication. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396984
w2k3, IIS 6.0, virtual website and prompting for authentication
Hello,
I'm installing Trend Micro's OfficeScan console on a windows 2003 server
with IIS 6.0. the IUSR_servername account is being used on a virtual website.
When I try to access the website it prompts me for authentication for the
domain. How can I set this up, so no authentication will be prompted? I've
tried using the domain admin account inplace of the IUSR_servername account
and I can connect without being prompted. I don't want to use this high of an
authority account. I've tried to make a domain account that is part of the
domain users and domain guests...but then I'm prompted again for
authentication. Idealy, I would like to user the local IUSR_servername account
what are the steps that I need to do to configure it properly?
--
Donna S. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396981
IIS Redirect for SOAP
Is their a way of redirecting my SOAP traffic to a different URL using the
IIS redirect feature? I've tried but my soap testing tool just gets the
message "resource has moved to .......". Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396980
How to set "Default Web Site" to start automatically
I have a problem with my server that it will not start services manually,
however services will start (at startup) if they are set to automatic.
Until I figure out the problem, which could take some time, I want to get
the "Default Web Site" up.
What happened was that on my search for the problem I "stopped" the "Default
Web Site". Now it wont start up again.
IIS does start, i.e. all sites start except the "Default Web Site" which I
manually stopped.
How can I set that the "Default Web Site" starts automatically at startup.
Where is the setting (registry, file)?
Please help. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396977
kernel-mode cache
Hello,
I enabled odbc logging to a database on a web site on iis6.
I now read that this disables kernel-mode caching. I take it this means for
all web sites on the machine?
How can this be re-enabled?
Thanks SOC. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396975
Intranet + Multiple Sites/Single Server + URL issues
Hello All,
Scenario: I two sites (on the same server) and I want to make them available
to our users on our LAN. I'd like the users to type in site1 as the URL in
their browser to get to the first site, and site2 if they'd like to go to the
second site.
What I've done: I created a CName record of the FQDN for the server of both
sites however they'll just point to the root directory not to each Virtual
Directory housing my sites. I was able to do a redirect from the root
directory to site1 however then I wasn't able to access site 2 unless I did
something like http://server/site2 in the browser.
I'm sure many have the answer to the first part, the trickier part is, how
do I ensure that the URL doesn't show the full paths to the directories?
Instead only show site1 or site2 the whole time when users are navigating
through the sites?
Any and all help appreciated,
Helaman Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396969
Apache's UserDir directive possible on IIS?
http://httpd.apache.org/docs/2.0/howto/public_html.html
Is there anything like that in IIS?
It would seem from the article shown below there is not:
http://www.microsoft.com/technet/prodtechnol/windows2000serv/technologies/iis/reskit/iischp3.mspx
"IIS 5.0 does not offer a default directory for ISP user httpd
directories. You must create a virtual directory for each user in the
IIS snap-in, and then point it to the user directory in Windows Explorer."
Of course I could just install Apache for Windows... Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396968
Anonymous printing IIS6.0
Hi,
I recently moved a basic perl script from an old machine (IIS 4.0) to a 2003 web edtion server with Active Perl 5.6.
The purpose of the script is to accept web form submissions, write the information to a text file, print the file, and return the HTML formatted information to the web page and email a copy (through fake sendmail in the cgi directory) to a recipient and cc the submitter.
All functions work fine for anonymous access (IUSR_) except printing the textfile and returning the system time through the 'localtime' perl function or through the 'time -t' windows command. Authenticated users have no problem - printing and system time work fine. IUSR_ has full permissions on the created text file.
Previously the printing was achieved through sharing the local printer, allowing anonymous access to the share and getting the perl script to print to the share name via the windows print command.
As the new machine is running 2003 Web edition, printer sharing is not possible (argh).
Does anyone have any ideas on a way to allow an anonymous connection to print a file to a local printer through a perl script?
Thanks in advanc
From http://www.developmentnow.com/g/59_0_0_0_0_0/inetserver-iis.ht
Posted via DevelopmentNow.com Group
http://www.developmentnow.com Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396965
Strange behavior with IIS/ASP and process ID
Hi.
I have problems with one IIS. If I run one ASP script on the app
several times, there are different Process ID of the application. And
Applicaction(..) dictionary is always empty.
- WebGarden - Number of worker process is 1
- recycle worker process (number of request) is not checked
Did you ever see such behavior? Normally, each request is served by
the same process, only different threads. But I have different
processes on the same computer, same application, same ASP script..
Thanks for suggestion
Antonin Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396963
Strange behavior with IIS/ASP and process ID
Hi.
I have problems with one IIS. If I run one ASP script on the app
several times, there are different Process ID of the application. And
Applicaction(..) dictionary is always empty. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396962
How to add a website automatic to the application pool?
From time to time I have to deploy a new website onto my webservers. I just robocopy the new website into the wwwroot's. But in order for the website to work properly I have to add them to the default application pool.
Is there a way to make every (new) website automaticly join the application pool?
EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396955
NLB probs after firewall install
Hi,
I've just run the Security Configuration Wizard on a Windows 2003 Server SP2
(standard) with NLB running and now the NLB can't seem to connect to this
server. When I click Host Status in the NLB Manager it says 'Could not read
interface configuration from host'. Can anyone tell me what exceptions I
need to allow through the firewall for NLB to work between the servers and
whether the SCW may cause other issues?
Thanks - Ian. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396930
LAN SSL to External connection
Details:
1) I have 3 sites, all lan. (default, companyweb, and newsite).
2) 2 have the default SSL port set up (default - 443, companyweb - 444)
3) SBS Box has 2 network cards (direct internet, lan)
4) Lan has 2 assigned ips (192.168.1.1, 192.168.1.2)
5) default (all unassigned), companyweb (192.168.1.1), newsite (192.168.1.2)
Question:
How do I go about setting up SSL on the newsite?? I just need it to send
secure billing info to a remote ssl merchange gateway. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396929
How to host multiple SSL websites using multiple network cards
Hi,
I've been trying to get this working for a while but I'm getting nowhere fast!
I've got two websites using separate IP addresses on separate network cards,
both with their own SSL certificates. The problem is that windows only
allows a single default gateway on one external network card and as such I
can only get one site working at one time. (Each network card connects to a
different firewall with a different public IP address).
I think I'm missing something obvious, but no matter what I try (static
routes mapping each public ip to a particular route - 255.255.255.255 mask)
nothing is working.
I know that I can get 2 sites working using a wildcard certificate, but I
need to use separate certificates for each site.
Does anyone have any ideas?
Many Thanks. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396917
IIS Authentication Problem
Hello,
i have a Problem with my Web Server (Windows Server 2003 64bit).
When I try to call a website with the domain name like www.mysite.ext,
then the ie aks username and password, but when i call the site with
the ip or with localhost, it works.
I have activated only anonymous authentication (windows
authentification is not activated), and the anonymous user has enough
rights, the network service too.
The IIS is running in 32 bit mode.
I have searched for a solution, but i can't find anything.
Thanks for your help!
Philipp Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396915
Access application via www.domain/folder
Gurus,
I have an application that runs on a machine on my LAN. Users on the lan
access it by navigating to the machine's IP address in IE.
Is there any way for me to allow some outside users to access this app., by
going to my website (server is on same network as app machine), ie
www.mydomain.com/app? Asking another way, is there some way to redirect the
user to an internal IP address?
Thanks for your time,
-Michael Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396911
SSL Help
The IIS on my SBS2003 box currently has listed the following web sites, not
of which are public:
1. Default Web Site - TCP Port: 80 / SSL Port: 443
2. Office Terminal - TCP Port: 80 / SSL Port: blank
3. Microsoft Sharepoint Administration
4. SharePoint Central Administration
5. companyweb - TCP Port: 80 / SSL Port: 444
I need to add SSL and then a certificate for the Office Terminal so that my
office employees can send payment information to our online merchant
gateway... how do I go about doing that... the SSL part??? I've tried simply
adding the SSL port number 443, and turning off the Default Web Site, but
then I get 'page not found' when trying to navigate to a page using the https
protocal. Confused... first time doing this so please help. Thanks in advance. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396908
Internet printing / remote printing
With IIS 7.0 (the version in Vista Ultimate), how do I set up internet
printing so that I can print to my printer from the internet? I have set it
up so that my computer shows the IIS 7.0 webpage as the default on port 80,
but it returns error on trying to navigate to [servername]/printers.
Thanks. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396906
internet printing / remote printing
With IIS 7.0 (the version in Vista Ultimate), how do I set up internet
printing so that I can print to my printer from the internet? I have set it
up so that my computer shows the IIS 7.0 webpage as the default on port 80,
but it returns error on trying to navigate to [servername]/printers.
Thanks. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396905
Change IIS web server LAN ip
Dear All,
If I want to change IIS web server for windows 2003 LAN ip, is there
anything have to consider in order to it function ?
Thanks for advise.
Kenny Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396904
Setting index.jsp page as home page on IIS
Is there any way to setup the index.jsp page as a default home page
using IIS ?? currently i am using isapi connector to point a website.
But it will work for me when i type this URL
http://domainname/test
I am looking for the loading of home page on the browser as we type
the domain name.
http://domainname
which should return the home page...Is ther any setup .or script
available to make IIS work for .jsp
to make it as a home page
Thanks A Lot
Melbin Mathew Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396901
Intranet Web sites - need help
I would like to create several websites on one Win2K3 IIS server and
have users reach them by simply typing http://site1, http://site2,
etc..
I guess I've read so much about this that I'm confused. I understand
that it is possible and is even referenced in the Win2K MCSE Training
Kit - Windows 2000 Server, p 860. It says it can be done but it seems as
if it's a massive effort to avoid disclosing just how with real world
examples of setting up websites as such in an Intranet. All the examples
refer to internet sites.
I've created a couple simple one page websites to test with.
I've installed DNS Server and created a forward lookup zone to point to
my ISP DNS servers. I've configured the clients to point to this DNS
server. It works.
What I have been struggling with is this Host Headers concept and trying
to map a simple single-word name to an inernal IP address.
We don't have AD installed but will probably promote our server to a DC
in the near future and start using AD.
So.. I don't have a "domain" so to speak to setup DNS with.. I just
made one up when installing DNS. Remember this is all internal and
there is no intent for any of these sites to be available from the
internet.
So why can't I get a http://site1 and http://site2 without the
"zone.com" suffix needing to be appended ? I've read so many
references that this is possible but no examples of this anywhere.
I have :
- One server - Server01. Running DNS Server & IIS.
- Web sites: site1 & site2
- Host Header names for each site of site1 & site2 respectively that
point to the server's IP address.
- DNS Zone: TestZone
- Host Record: Site1 - pointing to the IP address of Server01
I can't reach the site with http://site1 but I can reach the site by
entering http://site1.testzone
This is driving me nuts.. Why can't I create a single-word host record
that points to an IP address and forget the rest of it? I would like
our users to be able to type http://site1 without having to qualify it
with the zone/domain suffix..
I prefer not to use hosts files or appending suffixes or touch the
client TCP/IP configs at all (although at this point it would be easier)
because we are likely to setup AD soon and I would like a dns server-
only solution.
I've read Q324260 & Q323445 and numerous other resources and I follow
them until the point of creating the host record in the DNS server..
Then I say to myself.. well HOW ? and HOW do I get this to work?
Obviously this is more of a DNS question..
Are there any comprehensive yet easy to follow guidelines for doing this
? A book maybe (besides anything MSPRess) that would help?
If we don't own a domain then how can I set up DNS so that we don't have
to refer to blah.com or something nonexistant domain and have to type
blah.com to the suffix of any of our internal websites?
Thanks
Any help would be appreciated..
Bryan Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396897
N-Tier Architecture
***Hi***
For those who haven't read (or quite understood) the hundreds of other
articles on multi-tier development, here is a quick reminder.
http://it-visionist.com/Tutorials/DArch.asp
***Enjoy*** Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396895
Index Filter for Macintosh Documents.
We have a number of word documents that were created using a mac that we want
to include in our index catalog. It appears that index server has
difficulties reading the corpus and indexing a large majority of these files.
Is there a filter out there that I can use for Macintosh word documents? Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396890
WMS connection problem (only works when IIS6 is started)
I have a problem connecting to WMS that only seems manifest itself when I
shut down the IIS server running on the same machine . . .
Here is the configuration
Server
-----------
Win2003 Server R2 Standard w/SP2
- Machine runs multiple services and has multiple IP addresses on it's
"public" facing NIC, lets call them IPAddr1 (WMS) and IPAddr2 (IIS)
Win Media Server 9.0
- Several remote media encoders are sending live video streams via HTTP
protocol to the server via IPAddr1. This is working just fine.
- Media Player clients connect to this server to play these live streams
IIS6
- HTTPCFG was used to disable socket pooling and set up http.sys listener
on IPAddr2 for the web transactions (which are for a separate
applications and are not related in any way to the Media Stream server
streams)
Client-side
-------------------
- Win Mobile 5 PDA's accessing the media stream through IPAddr1 using MMS
protocol
- Win Media Players (Win XP, Win 2000, variety of releases) using MMS and
RTSP protocols through the same IPAddr1 assigned to WMS.
- Connection to the WMS is driven by URL's (with MMS service moniker)
embedded in web pages running on a web site on a completely different
machine/server.
Symptoms
-------------------
We see slow startup connections or no connections from the desktop OS,
and no connections at all from the PDAs when we have
stopped the IIS web server on the machine (although the HTTP.SYS
and IIS admin services are still running).
If I start a web server instance, all the connection problems go away.
I am confused by this. Other than both utilizing port 80, I did not think
there was any interaction between IIS and the Media server.
Can anyone tell me whats going on here and what is causing the connections
to fail unless I have an IIS server instance started?
I've checked the port and address assignments and IPAddr1 and IPAddr2 are
segregated from each other and only assigned to WMS and IIS, respectively.
Thanks in advance for any assistance. Please post responses to the
newsgroup.
Ken Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396889
Bad Request (Invalid URL) in IIS6
Hallo.
Is there a way to remove the "Bad Request (Invalid URL)" response
from http.sys in IIS6? I need to handle special proxy requests like:
CONNECT www.sslsite.com:443 HTTP/1.0
Host: www.sslsite.com
I tried to set AllowRestrictedChars to 1, but it is probably not the
way. Tag: w3svc failed to start with error 127 - specified procedure not fou Tag: 396884
Unspecified Error in ADODB.CONNECTION in IIS 6.0
The following code works fine when using VBScript. However it fails in
ASP page
dim con, dsn
dsn = "provider=SQLOLEDB;data source=MyXP,
1433;uid=user;pwd=pass;database=dbMy"
Set con = CreateObject("ADODB.Connection")
con.Open(dsn)
The code bombs at con.Open
I have IIS 6.0 installed on Windows XP. That code is well tested code
and used to fine well on my machine. However some configuration
change has triggered this error.
I get following error from