Default Web Site (State: Stopped) after new installation
Installed IIS 5.0 under Windows 2000 Service pack 2.
Looking at the MMC, the default web site state is stopped.
It seems to have install all other IIS components
correctly.
Could not find where problem lies: searching knowledge
base etc. Any suggestions? Tag: Monitoring Internet Use Tag: 292037
IIS connection pool timeouts with XML response content type
Help!
I get connection pool timeouts when I perform a GET with querystring params
that return a contenttype = "text/xml" doc.
I have multiple clients that request the same URL and the XML doc returns
updated data every 1 second.
Example: Similar to multiple clients that retrieve stock quotes every 1
second.
I swear this did not happen when I was running under .NET V1. Could have
been a service patch though.
My .NET server app simply queries the SQL Server 200 DB with Microsoft data
application blocks, builds an XML doc string, and response.writes it to the
client.
The client is using asynch calls from a VB6 app using the MSXML2.XMLHTTP.
It performs a simple get http://foo.com/p.aspx?A=11
When state = 4 I parse the return data and call the url again.
I am running version .NET v1.1.4322
I tested this on 3 machines with the same result
Win2K
Win3K
WinXP
You can also trigger the timeout by placing the url in a browser and click
the refresh button many times.
Perf mon show web connections stay around 2 until something trips up and the
connection count soars and the browser GET command fails with a Max
connection pool error.
It takes the server about 5 minutes to recover.
What gives!
Thanks
Tom Tag: Monitoring Internet Use Tag: 292030
iis logs
I have two webservers that stop creating the IIS daily
logs. I have to reset them by turning off and then turning
on logging. I can't find a configuration error. The server
is running SQL and Cold Fusion. Tag: Monitoring Internet Use Tag: 292021
Problem sending image from ASP to C++ application
I am having a problem returning an image that I got from SQL Server from
within an ASP page that got requested from a VC++ application.
Specifically, within my application, I make an HTTP call to my IIS server to
an ASP. The ASP then queries a SQL Server and the field that I want to
return from the resulting Recordset is an image. In the application, I then
make a call to receive the response from the web page but am having no luck
getting anything back. I have included both the ASP page and the code from
wthin the VC++ application. The part in the C++ code that I am debuggin and
noticing that nothing has returned is the while loop that is reading the
CInternetFile.
I hope this is enough for anyone that feels like helping me. In advance,
thanks very much.
Lee
ASP page:
<%
Dim objConn, objRS
Dim strConnect
Const adOpenForwardOnly = 0
Const adLockReadOnly = 1
Const adCmdTable = 2
Set objConn = Server.CreateObject ("ADODB.Connection")
Set objRS = Server.CreateObject ("ADODB.RecordSet")
objConn.Open "ODBC", "sa", ""
strFilter = "ID=" & Request.QueryString ("ID")
'Response.Write ( strFilter )
objRS.Filter = strFilter
objRS.Open "Pic", objConn, adOpenForwardOnly, adLockReadOnly, adCmdTable
If Not objRS.EOF Then
Response.Write ( objRS("Pic") )
Else
End If
objRS.Close
objConn.Close
Set objRS = Nothing
Set objConn = Nothing
%>
VC++ code:
void GetPicture(CString ID, unsigned long *ulPicLen, byte **bytePic)
{
CString strURL = "http://";
strURL += theApp.HostName;
strURL += "//GetPicture.asp";
strURL += "?ID=";
strURL += ID;
*ulPicLen = -1;
int nRetCode = 0;
DWORD dwAccessType = PRE_CONFIG_INTERNET_ACCESS;
const TCHAR szHeaders[] = _T("Accept: */*\r\nUser-Agent: PDA\r\n");
DWORD dwHttpRequestFlags = INTERNET_FLAG_NO_AUTO_REDIRECT;
BOOL bSuccess = TRUE;
CPerimeterSecurityHttpSession session(_T("HTTP"), (DWORD)this,
dwAccessType);
CHttpConnection* pServer = NULL;
CHttpFile* pFile = NULL;
// check to see if this is a reasonable URL
CString strServerName;
CString strObject;
INTERNET_PORT nPort;
DWORD dwServiceType;
if (!AfxParseURL(strURL, dwServiceType, strServerName, strObject, nPort) ||
dwServiceType != INTERNET_SERVICE_HTTP)
{
return;
}
session.EnableStatusCallback(TRUE);
pServer = session.GetHttpConnection(strServerName, nPort);
pFile = pServer->OpenRequest(CHttpConnection::HTTP_VERB_GET, strObject,
NULL, (DWORD)this, NULL, NULL, dwHttpRequestFlags);
pFile->AddRequestHeaders(szHeaders);
pFile->SendRequest(NULL, 0, NULL, 0 );
DWORD dwRet;
pFile->QueryInfoStatusCode(dwRet);
if (dwRet == HTTP_STATUS_DENIED)
{
TRACE0 ("Access to the secured http site is denied!");
return;
}
int ndx = 0;
char *szWEBPage[MAX_WEBPAGE_SIZE+1];
char *sz[BUFFER_SIZE];
int iCurrentRead = 0;
int iTotalRead = 0;
pFile->SetReadBufferSize(BUFFER_SIZE*2);
while ( iCurrentRead = pFile->Read (sz, BUFFER_SIZE ) )
{
memcpy ( &szWEBPage[iTotalRead], sz, iCurrentRead );
iTotalRead += iCurrentRead;
}
*ulPicLen = iTotalRead;
*bytePic = new byte [ *ulPicLen ];
memcpy ( *bytePic, szWEBPage, *ulPicLen );
pFile->Close();
pServer->Close();
if (pFile != NULL)
delete pFile;
if (pServer != NULL)
delete pServer;
session.Close();
} Tag: Monitoring Internet Use Tag: 292020
IIS 6 Wackyness, No Application State?
We moved our Webs from an IIS5 Win2K Server to an IIS6 Win2003 server and
things are not working well....
For some reason our Application State Variables in the Global.ASA are not
getting set all the time.
If we reset IIS on the machine and view the pages we get the Application
Variables. Then at some point they just are not available anymore.
Session Variables seem to be fine.
Is there something different with Application Vars on IIS6 that I need to
know about?
Thanks, Tag: Monitoring Internet Use Tag: 292017
IE6 sp1
We just installed IE6 SP1 and now we have to hit refresh
to get the home page to display everytime we start the
program. Running Windows 98. Tag: Monitoring Internet Use Tag: 292010
Website getting hung
Hi,
I am vinay working for Focus Infomatics, Inc as an
software engineer. We are facing a small problem with our
website www.netemr.com/new.
It gets hung very often.
We have hosted the site on a high end dell server but
still it gets hung.
Can anyone please help me in figuring out the problem.
thanks,
vinay Tag: Monitoring Internet Use Tag: 292007
Unattended IIs 5.0 WS Install?
Anybody know where a good article on an unattended IIs 5.0
Workstation installation would be? Is this possible after
windows has been installed?? thanks, Tom Tag: Monitoring Internet Use Tag: 292006
Image Caching Problems
Hello,
I have a netcam setup for a website that we host and the netcam
uploads an image via FTP to the web server. This upload works fine,
but whenever I try to access the image through the website it shows
the same one, the image does not change. The really strange thing is
that when I open this page (the one that displays the image) on a
computer that has never been to the site or on mine after I totally
clear out my temp. internet files it still shows this old image. I
can also delete the image off the web server and the web page still
comes up fine with that old image. So it is if IIS is cahcing the
image somehow.
We are running Win2K SP3, with IIS 5.0
Also ColdFusion MX, but this page is strictly HTML so CF shouldn't
have anything to do with it.
Any help would be much appreciated- Tag: Monitoring Internet Use Tag: 292005
DCOM Error When Trying to Access ASP Pages for First Time
Hello,
I recently installed IIS on my Win 2K Prof. machine. I can access
html files just fine on my box but when I try to open ASP pages I get
the following error:
"The server {XYZ} did not register with DCOM within the required
timeout."
I've read several articles regarding this same error and most state
that the problem is either a User/Group configuration problem or a
DCOM configuration problem. How should I track down the real cause?
To be honest, I've never dealt with DCOM before and do not know how to
use the DCOMCNFG.exe utility.
Any help would be greatly appreciated.
Sal Tag: Monitoring Internet Use Tag: 292004
iis and pppoe
i am using win 2003 server and pppoe... cna i run a
webserver with it?
i know about the dynamic ip stuff and it was working fine
with xp but needed the option of having more then one site
in iis Tag: Monitoring Internet Use Tag: 291997
XP IIS no Debug
I have setup a new install of XP with VS .Net 2003 and loaded all the IIS
options.
I have setup a local directory as IIS folder with the ASP debug boxes as
ticked, and reset the machine.
When I display my test asp page that contain's a stop statement the page
continues execution without dropping out to VS .Net 2003. Tag: Monitoring Internet Use Tag: 291994
Web Site Down
Unable to browse web site due to the following error:
Event ID: 115
Source W3SVC
Description: The service could not bind instance 1. The
data is the error code. Tag: Monitoring Internet Use Tag: 291991
COM+ Application Deployment problem on XP, sometimes 98 also
I have created an application that has 2 server components (COM+)
installed
on a Win 2000 server from where i exported it. These were installed on
the
client machine alongwith 2 executables that use these.
When I try to run the application from the client machine, I get an
error
no. 70, permission denied. Can anybody help me set the settings etc.,
so
that i can have this running on XP and 98 machines? The application
runs
fine on NT and 95 machines.
The security settings of Component Services -> My Computer -> Default
Properties tab are:
Enable Distributed COM on this Computer is checked
Default Authentication Level is - None
Default Impersonation Level is - Impersonate
Settings for the Component
I added to on the server machine are;
For the Security Tab
Security Level is -- Perform access checks only to ..........
Authentication level for calls - None
Impersonation level - Impersonate
No other settings have been made to the client machine. I am testing
this
on a lan network and it does not work with error no. 70 (Permission
denied).
Please help.
I added to on the server machine are;
For the Security Tab
Security Level is -- Perform access checks only to ..........
Authentication level for calls - None
Impersonation level - Impersonate
No other settings have been made to the client machine. I am testing
this
on a lan network and it does not work with error no. 70 (Permission
denied).
Please help.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it! Tag: Monitoring Internet Use Tag: 291976
How useful is SMTP service in the real world?
Looking at the SMTP service it appears to offer a fully functional SMTP mail
server. I appreciate that there is no POP server. In the real world, large
enterprises etc. do they actually use this or would they end up using
Exchange, Notes or some other solution? Is SMTP used to forward to some
other solution etc.?
If useful which parts are of value and which not?
I have searched for useful articles but there doesn't seem to be much around
and the help files are rather sharp and to the point without much
explanation.
I suppose what I am asking is, should I spend time getting to grips with
SMTP service or spend my time elsewhere?
Any help gratefully received.
BB Tag: Monitoring Internet Use Tag: 291974
IIS server keeps shutting down
Hello all,
Our IIS server keeps stopping.
We think we have been hacked.
We installed blackice to monitor IP address.
We've gotten a ton from Russia, France, Ukranie etc.
I'm new with IIS, what can i do to fix this?
Or at least stop the service from stopping?
We have users that use the OWA.
thanks in advance
anthony Tag: Monitoring Internet Use Tag: 291963
IIS 5.0 Logging stopped after reboot
I have a Windows 2000 box running IIS 5.0 that logging has
just stopped working on. I have enabled and disabled
logging recycled iis inbetween the changes and changed the
type of logging and the default location as well. There
have not been any logs generated in 52 days and when I did
an UPTIME on the box it has been up for 52 days so it
looks like after the last reboot logging stopped. I've
checked a few of the other news groups at Yahoo and google
and this problem is posed by many people but I dont see
any resolution other than disable logging, recycle IIS and
the renable logging. I have done this to no avail. I see
no error generated in any of the system logs.
thanks - Scott Tag: Monitoring Internet Use Tag: 291961
IIS stops sites and they will not restart.
I have 2000 server with IIS 5.0. Every so often, IIS will
stop the web sites and I cannot start them until I reboot
the machine. The event viewer tells me that IIS has
stopped and that is it. Before I reboot and try to start
the sites, it tells me "Address already in use". This has
no method, or regularity. I am running a mail server for
about 10 users and servering 1 web site; so I know the
machine is not loaded up. I have had this problem before,
but before I could investigate further, we had to burn the
machine and go at it agian. After that, everything was
fine. Do not want to do that on this box Any suggestions? Tag: Monitoring Internet Use Tag: 291960
Win2000 sp4 and enormous memory-leaks
Hi
Have anyone experienced that IIS leaks a lot of memory after sp4 was
installed?
We have a web server, which have run for about 8 month now. We regularly
update it with the latest service packs.
Last week we upgraded it to sp4, and after that the memory-usage has
exploded.
Normally the machine uses about 300-400 MB ram during the day, now it
suddenly begins to grow, and it doesn't stop before it reaches the limit
(2gb) and we have to restart IIS. We have to do that approx. 2-3 times a day
now.
I can also see that the number of handles locked by dllhost.exe is growing
wildly.
Any ideas?
Jørn Esbensen. Tag: Monitoring Internet Use Tag: 291954
Microsoft OLE DB Provider for ODBC Drivers erreur '80040e4d'
Since 2 days i ve this message (for 2 or 3 minutes) :
Microsoft OLE DB Provider for ODBC Drivers erreur '80040e4d'
[Microsoft][Pilote ODBC Microsoft Access] Trop de tâches client.
/direction_financiere/index.asp, ligne 26
What can i do, where is it from,
Thanks Tag: Monitoring Internet Use Tag: 291942
IIS Operator sAccount Unknown
I created IIS operators group and applied them to our IIS
5.0 webserver. Under The operators tab it lists as
Account UNknown. The group only sees virtual directorys
under the web site. No event log errors, Whats happening ? Tag: Monitoring Internet Use Tag: 291941
virtual server information location
Hi,
Where are stored the information about web virtual servers?
I found some in the registry under
\HEKY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters\Virtu
al Roots\
But it looks like they're stored some where else.
I had a virtual server that I removed and now that I try to create an other
with the same name I get the folowing error
The alias "LM/W3SVC/1/Root/camac" already exists. Please choose a different
alias.
What's this LM/W3SVC/1/Root?
where can I find it?
Michel Tag: Monitoring Internet Use Tag: 291940
IIS 5 crashing
Hello all,
i have a w2k sp4 web server with iis 5, and something like 800 web sites
running on it which is crashing too often :(
i assume the crashing is happening because of bad scripting, but how can i
figure out which user (or web site) is giving me a headache? ( i can't
isolate all of them...)
sorry for bad english, thanks in advance
regards Tag: Monitoring Internet Use Tag: 291939
ASP pages give 404 error on 2003 server
Every page that has a .asp extention gives a 404 error on a Windows 2003
server, the same file can be saved with .htm or .aspx extention and it will
work fine, how can I get it to support asp 3.0? Tag: Monitoring Internet Use Tag: 291932
iis 6 - prevent asp, php and perl scripts to read other directories
hi ng!
I have a windows 2003 server with iis 6 running, and i wonder, how to make
it possible, that scripts (asp, php, perl and so on) can not access the
folders above the directory, the website is stored in.
e.g. my website is stored in: d:\inetpub\www.website.org
a php-script i've written can access d:\inetpub\testfile.txt
--> i don't want this.
does anybody know, how to fix this WITHOUT setting ntfs-permissions?
thans for help
wogri
--
wogri@wogri.at
www.wogri.at Tag: Monitoring Internet Use Tag: 291931
Giving a user a set time on an IIS website
This is a hard one!
I'm trying to setup a service like a "pay-per-view" website.
The way I would like it to work is that a user can login with his password
and have access to all the data on the site.
When his time is up the data (links on the site) are not active anymore.
The way I was thinking of doing it was kind of like this.
1) User logs in with his password on site Y.
His IP gets added and granted access in the "IP ADDRESS and Domain Name
Restrictions" part of IIS for site Z.
User will do his stuff of site Z.
2) After a set time his granted IP will be removed from the "IP ADDRESS and
Domain Name Restrictions" part for site Z.
Anyone here who knows of any software that can do this? (will save me a lot
of time)
If not.. Any thoughts on how I could best do this project?
Noel. Tag: Monitoring Internet Use Tag: 291929
Does IIS lock files it is serving
When IIS serves up a file, be it html or asp, does IIS put
a lock on the file.
I have been told that this does happen, and that the file is
locked for 30 seconds.
I am trying to find more information on this, can any one help
in this matter.
Phil Czajkowski
pczajkow@interwoven.com Tag: Monitoring Internet Use Tag: 291918
empty post
There seems to be some kind of error or security implications on Win Server
2003 and IIS6.
I have a form (a few fields and a button). This form works just fine on
Win2K IIS5, but is empty (sometimes) when I submit it on Win2003/IIS6.
Method is POST (it actually isn't empty when I change the method to GET.
This error doesn't occur all the time.
The only security implication on the directory where the page is run is that
it has an IP-address restriction. Tag: Monitoring Internet Use Tag: 291907
boycotting windows XP home edition
grrrr, I am so angry that I have to spend another $100.0
bucks just to get ASP on my system with the home edition
I want to start forming a MS Boycott group Tag: Monitoring Internet Use Tag: 291891
log error
hi, get the following in event viewer ..
but liog is being written .. any idea..
Warning: IIS log failed to write entry, Script timed out. The maximum amount
of time for a script to execute was exceeded. You can change this limit by
specifying a new value for the property Server.ScriptTimeout or by changing
the value
thanks
Usman Tag: Monitoring Internet Use Tag: 291881
Anyone with a Windows 2000 sevrer SP4 and using favicons?
Can you please post the address to the server or send it to me in my =
e-mail? Please be sure that the Windows 2000 SP4 Server is using IIS 5 =
and that favicons are enabled for the address you may provide. Thanks. =
--=20
George Hester
__________________________________ Tag: Monitoring Internet Use Tag: 291849
ISAPI Filter Redirect problem after Windows 2000 SP4 installation
We have written an ISAPI filter on IIS 5.0 to verify
presence of a cookie before letting the user access a
resource. The resource is actually an isapi dll that takes
in parameters. The actual user request is:
http://myserver/myvirdir/myext.dll/param1
The virtual directory (myvirdir) has execute permissions
to run the dll. Our filter checks the request for presence
of cookie and if not found - redirects browser to a login
page.
Here the problem starts. It used to redirect like this:
http://myserver/login.asp?
redir=http://myserver/myvirdir/myext.dll/param1
But now after installation of SP4,
the filter is redirecting without parameter, ie:
http://myserver/login.asp?
redir=http://myserver/myvirdir/myext.dll
If we set the permissions on myvirdir (the virtual
directory containing the dll) to scripts only, the filter
starts working normally and passes the parameter. But that
causes our application to break because it requires
execute permissions of myvirdir. Also, if I remove this
virtual directory from IIS, the filter redirects
correctly. So it appears to be related to permissions.
After searching on google I was able to find just one post
having something related to Q811114.
I m not sure if its a bug or bugfix in SP4?
Regarding ISAPI filter, our code is used onUrlMap event
for redirection code. I also ran the filter in debug mode
and found that this method doesn't even recieves the
parameter.
Please help.
Thanks. Tag: Monitoring Internet Use Tag: 291822
Easy read/write FTP?
I'm writing a database (SQL Server/VB.NET) application
that is accessible over the internet. I need to be able
to attach files to records in the database, and have those
files easily read/writable through third-party software
such as Microsoft Word.
The perfect solution would be a VPN, a mapped drive, and
just storing the common paths in the database, but this
has been ruled out because a VPN is not feasible in our
particular circumstances.
Without a full-blown VPN, is there a way for internet
users to get read/write access to a file on a remote
server so that they could edit the file as if it were on
their own machine?
Someone mentioned Active Directory Services or something
like that, but they only knew as much as Micro$oft's
marketing department put out to the general public. Does
anyone know how this could help me?
Any ideas?
~BenDilts( void ); Tag: Monitoring Internet Use Tag: 291818
both directory access and default domain name access
win2k adv serv, iis5.0
new to this, so i noticed the default iis directory setup is
inetpub/wwwroot/virtualWebDir, so i'm keeping that structure for my virtual
websites
i'm using host headers
so when i set the default directory to inetpub/wwwroot/virtualWebDir, the
default web page comes up just by entering the domain name, but if i have
other pages in that directory that are standalone i can't get to them with a
fully qualifed path
if i set the default directory to inetpub/wwwroot/, i have to include the
directory name with the domain name to get the default page. however i can
get any page directly by using a fully qualified path
(inetpub/wwwroot/virtualWebDir/webPage.htm)
i would like to be able to access the default page just by using the domain
name alone and also be able to access web pages directly that are in the
virtualWebDir using a full path
any way to do this??? Tag: Monitoring Internet Use Tag: 291817
Unable to start IIS Personal Web Manager
Clicking on the Start button and nothing happens.
The window Personal Web Manager indicates the service
hasn't been started.
In addition the World Wide Web Publishing Service is
started as indicated in the Services window however I'm
getting the folllowing error in my windows 2000 event log:
The World Wide Web Publishing Service terminated with the
following error:
The specified module could not be found.
Any ideas?
Thanks in advance. Tag: Monitoring Internet Use Tag: 291815
Event ID 221
I am getting this error in the event viewer: License usage
for product IIS 5.0 is nearing the maximum number of per
server licenses purchased. Consult License Manager from
the Administrative Tools folder for more information.
I have 80 Exchange Licenses and 100 Windows Server
licenses. Why am I getting this error. I have Windows
Service pack 4 and Exchange 2000 service pack 3 and the
post fix installed. Tag: Monitoring Internet Use Tag: 291811
installed Cert but site still reverts to http instead of https unless i use a / at the end
Hello, I installed a test cert on a webserver.
My problem is that if a client types https://box.domain.com the client tries
to connect to the site using 80 ( i see it get blocked on my firewall)
However if the client uses http://box.domain.com/ all is well. (notice the /
at the the end)
anyone know whats going on with that?
thanks Tag: Monitoring Internet Use Tag: 291810
Permissions:NT services and ASP?
I'm trying to set up an ASP app to control and report on various services
using ADSI on an XP Pro server. The code works as an EXE VB app but doesn't
as an ASP VBScript app. What security context does an ASP app need to
operate in to manipulate system services? Is that actually the problem or is
there some issue in ASP or VBScript that prevents access to the ADSI service
interfaces? (In this case IADsServiceOperations )
TIA,
BGV Tag: Monitoring Internet Use Tag: 291807
Stopping services. Service: iisadmin
Has anyone had any problems updating the dotnet framework to 1.1 on a
Windows 2000 machine?
When I try to update it from the Windows Update page, it will get right up
to 100% and then freeze.
If I just download the file, and install from there, it gets halfway and
stops. When it does this is says, "Stopping services. Service: iisadmin."
What does this mean? Is there a way that I can fix this?
--
James H. Dixon Tag: Monitoring Internet Use Tag: 291802
Publishing Problems
I have created a website using Frontpage 2002 and it is now running in my
IIS webroot directory. When I created the page originally I merely saved it
to the root directory rather than publishing it to the directory. It works
fine on the WWW, but when I tried to add a hitcounter and look in the
"reports" section it reports the hitcounter as a non functioning component
because it has to be published to a web to function properly. There seems to
actually be a conflict because, even though the hitcounter shows up on the
web, it causes a very long delay in the page loadup.
So, I tried to publish the page to my IIS webroot directory (where my
webpage is hosted) and I get the message "Use a different folder than the
one containing the currently running web site", or something to that nature.
Any ideas out there? I really want the hit counter and can also forsee other
problems occuring as I construct my site further. Tag: Monitoring Internet Use Tag: 291796
Mac IE 5.0 (2022) (Release 36) Problem over SSL and IIS. Cannot submit data over secure connection
Hello All,
We are running IIS here. We are having problems running our Web Site
in Secure Mode on the MAC/IE platform. This used to work until we SSL
migrated our Verisign certificate to a new Web Server.
We have basically come to a point where any ideas on how to fix this
would be extremely helpful. If you have any ideas on this we would be
more then grateful to hear them. (be it even if you do not have the
fix, any testing or ideas of that nature would be great)
Server Software Vendor: Microsoft
Operating System: Windows 2000 Advanced Server
Browser Type/Version: (the browswer we are having problems with is):
Internet Explorer 5.0 (2022) (Release 36) Mac Version.
It is vital that we get past this problem without having our customers
upgrade any software.
We are having no problems with the current versions of IE for windows,
all though on mac we are having the following problem and have been
able to recreate the problem with this browser:
Explorer Version: 5.0 (2022) (Release 36)
Encryption: 128 Bit
User Agent: Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
Machine Type: Power Macintosh
System Version: System 9.1
TCP/IP Software: Open Transport - version 2.7.4
Drag Manager: 68K & PPC Version
Text Encoding Converter: Version 1.6.0
System Memory: 121,992K Bytes
Explorer Memory: 12,346K Bytes
Available Memory: 58,819K Bytes
Problem:
When we submit any form data on this browser with the 'action' set to
any https file. Though the form works if not in secure mode, it will
hang and never works with a secure connection.
Resulting error from taking the above steps: Hanging, No visible error
messages, and it will sit there and try to load for hours never making
progress.
*************
Synopsis
*************
Recently we upgraded servers and successfully moved our certificate
per your technical instructions.
Although secure connections will work on windows platform, we are
having problems with Mac users and have tested the problem on
Mac/IE5.0 and when any data is submitted securely it hangs and will
never go through.
We can only receive data from forms not in secure mode on the Mac
platform.
With the latest versions of I.E on windows it does work.
Thank you all in advance,
Luke Heuer
Developer
Mentura.com Tag: Monitoring Internet Use Tag: 291789
Controlling IIS5 From Workstation
Hi there.
Could someone please tell me how to control IIS from my
workstation. I had seen something on this but I cannot
find it now. Tag: Monitoring Internet Use Tag: 291787
Server stalls ?
I''m trying to run the following ASP code:
Set objFile = CreateObject("Scripting.FileSystemObject")
strImagePath = Server.MapPath("images/deletethis.jpg")
If objFile.FileExists(strImagePath) Then
objFile.DeleteFile(strImagePath)
End If
Set objFile = Nothing
When I try to run it, IIS "stalls". Other machines connecting to the server are unaffected, but anything from the machine that tried to access the page with the offending code just sits there (without any errors). Initially, the only thing I could do to un-stall it was reboot the server, but now I''ve found that if I kill the dllhost.exe process owned by IWAM_Machine it fixes itself.
IWAM_Machine and IUSR_Machine have read/write access to that folder. Anyone know what''s going on?
-----------------------------
This message is posted by http://Asp.ForumsZone.com Tag: Monitoring Internet Use Tag: 291785
Some Messages (Not all) get stuck in my SMTP Queue
I have a webserver sitting in my dmz and it hosts a couple of webservices in particular some online calenders. The calenders allow people to submit new events to add to the calender, and then when they are approved the submitter is sent an email notifying them that their event was approved. The webservice first sends out an email to a calender administrator within my department to say that they have a new message to approve.
Ok, here is the problem. The emails that should go to the submitter (outside our domain) go out just fine, but emails that should go to our administrators (inside the domain) get stuck in the queue.
For example:
joebob@yahoo.com posts a new event to the calender. The administrator of the calender is bill@winnebagoschools.org.
Bill's email get stuck in the queue, but joebob's email gets sent correctly.
Here is what I have done thus far:
- I have tried creating a remote domain that points to the IP address of my internal network's mail server.
- I have under the delivery tab and advance options put the IP address of my internal network's mail server.
- I have tried putting a email directly in the pickup folder.
Someone save me .... PLEASE!
Thanks
Ben Tag: Monitoring Internet Use Tag: 291782
authentication prompt
We run into problems with OWA users trying to type in
their email address in the username field of the iis
authentication prompt I was windering if thier is a way
to change the prompt's design Tag: Monitoring Internet Use Tag: 291777
Multiple sites with Win XP Pro
I know IIS 5.1 snap-in with Windows XP Pro does not have a
way to add more than one web site with host headers or
anything, but is there a way to do it without the snap-in
interface? Perhaps edit a configuration file manually?
Can I somehow install IIS 5.0 for Windows 2000 to work
around it? I need multiple web sites but I really would
like to keep XP because I develop ASP.NET applications and
it is the most stable/powerful for that. Tag: Monitoring Internet Use Tag: 291769
ASP Page cannopt send e-mails
Hi, we just migrated our web server to a new server. And
we are having a problem with order e-mails the server will
stop at a line in the sendmail.asp page the line reads as
follows
set TempTags = Server.CreateObject("MC.TEMPTAGS")
And the order will not be e-mailed to the customer. Any
help is appreciated.
MC Tag: Monitoring Internet Use Tag: 291766
SSL on multi-homed server - 2 questions
I have SSL on my server that is multihomed. I have 3 sites, mydomain1
(www.mydomain1.com), mydomain2 (www.mydomain2.com), mydomain3
(www.mydomain3.com). SSL is setup for www.mydomain1.com. I have seen a
post here where someone wrote that SSL doesn't work on multihomed servers,
ie using host headers. My first question is: Does SSL NOT work at all, ie
nothing is encrypted even though it says so, or is it just that there are
issues, like if I go to www.mydomain2.com, I get a warning that the cert is
not for the domain..., but www.mydomain1.com is still secure?
My other question is assuming that https://www.mydomain1.com is secure. I
setup IIS 5 to require SSL, and setup a custom error for 403.4 to redirect
to https://www.mydomain1.com if the user goes to http://www.mydomain1.com.
This seems to work. For site mydomain1, I have multiple host headers:
www.mydomain1.com, mydomain1.com, mydomain1.net and www.mydomain1.net. If a
user goes to specifically to https://www.mydomain1.com, it is fine, but if
they go to https://www.mydomain1.net , or any of the others, the user gets a
security warning that again, the domain is not the same as the cert. Can I
redirect those to https://www.mydomain1.com, like I do for http:// ?
Thanx for the help,
Pete Ruby Tag: Monitoring Internet Use Tag: 291765
Service.lck
I am having a problem with both IIS 4 and IIS 5 on two
separate boxes.
IIS 4.0 --> When trying to access a web through IE I
receive an error 500 -- Internal Server Error. When I
check the Event Viewer the message reads: "Cannon open
file "service.lck" for reading."
IIS 5.0 --> When creating a subweb and adding permissions
to that subweb I receive an error message: The server
extensions were unable to access the file "servive.lck".
Please check the file permissions."
Thanks in advance. Tag: Monitoring Internet Use Tag: 291764
Windows XP + IIS 5.1 - ASP pages does not work anymore
Hi
Context:
Machine : Windows XP
IIS : 5.1
Service pack 1a + all of the winxp updates
HTML pages works file. Asp pages gives an Internal Server Error, as if the page
was not there. Everything is correct... urls, pages names, etc.
Tryied to unsinstall and reinstall many times. Tryied to follow some of the
workaround I found on msdn site but no luck.
Here are the error messages I get from EventLog. 2 from Sytem and 3 from
Application.
From the log files, specially the message on the 3rd log on application seems to
be a bug of some sort.
Can this be an error caused by a recent automatic update?
Help is welcome. This is driving me nuts and I sure would not like to install
the OS again.
on SYSTEM:
Event Type: Error
Event Source: Service Control Manager
Event Category: None
Event ID: 7034
Date: 09-07-2003
Time: 15:17:09
User: N/A
Computer: PHTOME
Description:
The COM+ System Application service terminated unexpectedly. It has done this 4
time(s).
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
--------------------------------
Event Type: Warning
Event Source: W3SVC
Event Category: None
Event ID: 36
Date: 09-07-2003
Time: 15:32:40
User: N/A
Computer: PHTOME
Description:
The server failed to load application '/LM/W3SVC'. The error was 'The specified
metadata was not found.
'.
For additional information specific to this message please visit the Microsoft
Online Support site located at: http://www.microsoft.com/contentredirect.asp.
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
------------------------------------
On APPLICATION:
Event Type: Warning
Event Source: COM+
Event Category: (105)
Event ID: 4445
Date: 09-07-2003
Time: 15:17:09
User: N/A
Computer: PHTOME
Description:
An incompletely initialized CRM log file was detected. It has been
re-initialized. If this warning appears when the CRM log file is being initially
created then no further action is required.
Server Application ID: {02D4B3F1-FD88-11D1-960D-00805FC79235}
Server Application Instance ID:
{FB3BF8CE-AF44-465F-8E6E-0500456ADD1D}
Server Application Name: System Application
Comsvcs.dll file version: ENU 2001.12.4414.46 shp
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
----------------------------------
Event Type: Error
Event Source: COM+
Event Category: (98)
Event ID: 4822
Date: 09-07-2003
Time: 15:17:09
User: N/A
Computer: PHTOME
Description:
A condition has occurred that indicates this COM+ application is in an unstable
state or is not functioning correctly. Assertion Failure: SUCCEEDED(hr)
Server Application ID: {02D4B3F1-FD88-11D1-960D-00805FC79235}
Server Application Instance ID:
{FB3BF8CE-AF44-465F-8E6E-0500456ADD1D}
Server Application Name: System Application
The serious nature of this error has caused the process to terminate.
Error Code = 0x8000ffff : Catastrophic failure
COM+ Services Internals Information:
File: d:\nt\com\com1x\src\comsvcs\tracker\trksvr\trksvrimpl.cpp, Line: 3000
Comsvcs.dll file version: ENU 2001.12.4414.46 shp
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
------------------------------------
Event Type: Information
Event Source: COM+
Event Category: (117)
Event ID: 778
Date: 09-07-2003
Time: 15:17:09
User: N/A
Computer: PHTOME
Description:
Application image dump failed.
Server Application ID: {02D4B3F1-FD88-11D1-960D-00805FC79235}
Server Application Instance ID:
{FB3BF8CE-AF44-465F-8E6E-0500456ADD1D}
Server Application Name: System Application
Error Code = 0x80004005 : Unspecified error
COM+ Services Internals Information:
File: d:\nt\com\com1x\src\shared\util\svcerr.cpp, Line: 1258
Comsvcs.dll file version: ENU 2001.12.4414.46 shp
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
-------------------------------------------
TIA
Best regards,
Joao Cardoso (MVP dotNET)
=======================================================
[LusoCoders]- http://groups.yahoo.com/group/lusocoders/
[PontoNetPT]- http://www.programando.net/regras.aspx
jjscc@acinet.pt.nospam - www.acinet.pt
======================================================= Tag: Monitoring Internet Use Tag: 291763
I have been asked to monitor Internet use at our office.
We do not use ISA server. Is there any way to do this?
We have 12 client computers that need to be monitored.
You can use performance counters to monitor the Internet
use.
--
ILangs
>-----Original Message-----
>I have been asked to monitor Internet use at our office.
>We do not use ISA server. Is there any way to do this?
>We have 12 client computers that need to be monitored.
>.
>
Provided As-Is.
"Hector" <hpj028@yahoo.com> wrote in message
news:03cf01c34742$046509d0$a401280a@phx.gbl...
> I have been asked to monitor Internet use at our office.
> We do not use ISA server. Is there any way to do this?
> We have 12 client computers that need to be monitored.