Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

XSLT Transformation results a Request Timed out error for @ MB File

Featured Replies

  • Newbies

Hello Folks,

I have been struggling with an XSLT transformation problem. We have an XSL which is 2,116 KB in size. It works when XSL is about 1 MB. It also works in some servers, but as soon as it is deployed on a Widows 2003 server, this starts timing out the request. from Event log it is :" Event code: 3001

Event message: The request has been aborted.

Event ID :) 1309" The XSLT works fine on local machine as well as the other server. To transform the XSL, we are using the simple standard code like "XslCompiledTransform xslTransformer;

xslTransformer = new XslCompiledTransform();

xslTransformer.Load(sXSLTransformPath);

StringWriter sw = new StringWriter();

XmlWriterSettings settings = new XmlWriterSettings();

settings.CheckCharacters = false;

settings.CloseOutput = true;

settings.Encoding = Encoding.UTF8;

settings.ConformanceLevel = ConformanceLevel.Auto;

XmlWriter xw = XmlWriter.Create(sw, settings);

xslTransformer.Transform(XmlReader.Create(new StringReader(sXMLToTransform)), xw);

xw.Close();

xslTransformer.TemporaryFiles.Delete();

string sData = sw.ToString();

sw.Close();

return sData;

"

This is very standard code and works well in most of the environments. We are using the XSL for a WORD document so it has wordml tags.

Could some one please suggest some inputs?

Thanks and regards,

Saket.

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.