Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > ASP / XML issue with IIS

Reply
Thread Tools

ASP / XML issue with IIS

 
 
cordt.huneke@convergys.com
Guest
Posts: n/a
 
      08-02-2004
Here is a brief description of the problem.


We have an ASP file (listener.asp) that is used to process
SOAP transactions on our web server. The ASP file uses
XML Core Services to load an XML file into a DOM document
variable. We process around 50,000 transactions a day
using this process. We have been getting intermittent
errors while trying to load the XML file. We typically
receive between 3 and 20 errors a day. We have attempted
many different fixes and we recently upgraded to XML Core
Services 4.0. None of our attempts have been successful
in resolving the issue. Here is an excerpt of the code
that fails.
Set oXMLDoc = Server.CreateObject
("Msxml2.DomDocument.4.0")
oXMLDoc.async = false
oXMLDoc.Load (strSchemaLocPhys)

where strSchemaLocPhys
is "C:\Inetpub\wwwroot\cbwapiprod\CBWWorkflow.xml ".


 
Reply With Quote
 
 
 
 
Jeff Cochran
Guest
Posts: n/a
 
      08-02-2004
On Mon, 2 Aug 2004 12:32:24 -0700, ""
<> wrote:

>Here is a brief description of the problem.


>We have an ASP file (listener.asp) that is used to process
>SOAP transactions on our web server. The ASP file uses
>XML Core Services to load an XML file into a DOM document
>variable. We process around 50,000 transactions a day
>using this process. We have been getting intermittent
>errors while trying to load the XML file. We typically
>receive between 3 and 20 errors a day. We have attempted
>many different fixes and we recently upgraded to XML Core
>Services 4.0. None of our attempts have been successful
>in resolving the issue. Here is an excerpt of the code
>that fails.
> Set oXMLDoc = Server.CreateObject
>("Msxml2.DomDocument.4.0")
> oXMLDoc.async = false
> oXMLDoc.Load (strSchemaLocPhys)
>
>where strSchemaLocPhys
>is "C:\Inetpub\wwwroot\cbwapiprod\CBWWorkflow.xml ".


Might help if you post the error, in full.

Jeff
 
Reply With Quote
 
 
 
 
Sanders Kaufman
Guest
Posts: n/a
 
      08-02-2004
My experience is that "file-based" databases get these sporadic errors -
regardless of what you do.

You should always have error-handling code for if a database becomes
temporarily unavailable. At over 100 transactions per hour it's a sure bet
that SOMETHING will create this problem - antivirus stuff, anti-spam stuff,
defragmentation - something will make it unavailable for a few seconds per
day.


"" <> wrote in
message news:9a3801c478c7$70362c40$...
> Here is a brief description of the problem.
>
>
> We have an ASP file (listener.asp) that is used to process
> SOAP transactions on our web server. The ASP file uses
> XML Core Services to load an XML file into a DOM document
> variable. We process around 50,000 transactions a day
> using this process. We have been getting intermittent
> errors while trying to load the XML file. We typically
> receive between 3 and 20 errors a day. We have attempted
> many different fixes and we recently upgraded to XML Core
> Services 4.0. None of our attempts have been successful
> in resolving the issue. Here is an excerpt of the code
> that fails.
> Set oXMLDoc = Server.CreateObject
> ("Msxml2.DomDocument.4.0")
> oXMLDoc.async = false
> oXMLDoc.Load (strSchemaLocPhys)
>
> where strSchemaLocPhys
> is "C:\Inetpub\wwwroot\cbwapiprod\CBWWorkflow.xml ".
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
IIS 6 vs IIS 5 ASP.NET Performance Issues JMaelstrom ASP .Net 2 04-30-2010 04:32 PM
web.xml / XML schema issue, why do some XML schema attributes disappear asciz@starmail.com Java 3 02-20-2007 09:56 AM
Different results parsing a XML file with XML::Simple (XML::Sax vs. XML::Parser) Erik Wasser Perl Misc 5 03-05-2006 10:09 PM
ASP.NET application works in IIS PWS, but not in remote IIS. Matthew Louden ASP .Net 3 11-07-2003 09:58 PM
IIS ASP Tutorial Example DisplayAds.asp damages irreversibly IIS! Guennadi V. Vanine ASP General 0 08-21-2003 07:11 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57