473,799 Members | 3,114 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Vista IE7 Recussion Error

I used the following test01.xml file below to exercise the
cnlUnit01.xslt.

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="cnlUnit01 .xslt"?>
<cnlUnitXsl unitDataFile="1 11111"/>

The cnlUnit01.xslt file below should recursively concatenate the
string "Level", the string " ", and the numeric value of the number
(level) of recursions that occur, and print that 10073 times in
theory, each time on a new line.

<?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet>
<xsl:styleshe et version="1.0" xmlns:xsl="http ://www.w3.org/1999/XSL/
Transform" xmlns:xhtm="htt p://www.w3.org/1999/xhtml" xmlns="http://
www.w3.org/1999/xhtml">
<xsl:output method="xml" encoding="iso-8859-1" indent="yes" doctype-
public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d"/>
<!--
*************** *************** *************** *************** *************** *************** *************** ******
-->
<xsl:template match="/cnlUnitXsl">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
<xsl:textTest00 001</xsl:text>
</title>
</head>
<body>
<!-- *************** ***** RECURSIVE ROW PRINT
*************** ************** -->
<xsl:call-template name="rowPrint" >
<xsl:with-param name="level" select="1"/>
</xsl:call-template>
<!-- *************** ***** RECURSIVE ROW PRINT
*************** ************** -->
</body>
</html>
</xsl:template>
<xsl:template name="rowPrint" >
<xsl:param name="level"/>
<xsl:choose>
<xsl:when test="$level 10073">
</xsl:when>
<xsl:otherwis e>
<xsl:text>Level </xsl:text>
<xsl:text</xsl:text>
<xsl:value-of select="string( $level)"/>
<br/>
<xsl:call-template name="rowPrint" >
<xsl:with-param name="level" select="$level + 1"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>

When you call this xml file in XP or FireFox using IE6 you get the
following:

Level 1
Level 2
Level 3
..
..
..
..
Level 8187
Level 8188
Level 8189
Level 8190
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error
and then click the Refresh button, or try again later.

The XSL processor stack has overflowed - probable cause is infinite
template recursion.
This is the expected outcome of a stack overflow and is not of
concern.
When you call this xml file in VISTA using IE7 on a linovo X60s Intel
Centrino Duo machine you get the following:

Level 1
Level 2
Level 3
..
..
..
Level 530
Level 531
Level 532
Level 533
vel 7716
Level 7717
Level 7718
Level 7719
..
..
..
..
Level 8187
Level 8188
Level 8189
Level 8190
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error
and then click the Refresh button, or try again later.

The XSL processor stack has overflowed - probable cause is infinite
template recursion.
AAAAAAABAQEAjVF RUu0BAQA9YV1MfU VFR+nJyvel 1075
Level 1076
Level 1077
Level 1078
Level 1079
Level 1080
Level 1081
Level 1082.
..
..
..

What happens after "Level 533" is printed is not always the same, but
it always begins after "Level 533" is printed and not before. A stack
overflow still occurs at Level 8190 like it did in XP IE6 and XP
FireFox. However, in VISTA the transform continued operating after
the stack overflow occurred starting again at Level 1076. The results
were the same on two separate machines of the same design. The
program was also tested on eight other computers from low end Gateways
with low end AMD chipsets, 512 M of RAM with VISTA Basic thru high end
HP core 2 duo and 2 GHz chipsets with 2 G RAM with VISTA Ultimate.
The problem only occurs in VISTA and IE7. XP with IE6 or FireFox
adequately transforms the code. The error of concern and has shown up
in various other more complex settings with much less recurssion but
always having something to do with recursion. In these other
settings, the problem also only occurs in VISTA and IE7. XP with IE6
or FireFox adequately transforms code in these other settings without
error.

If the test for $level in line 0025 is changed to 2000, no error (that
is no stack overflow) at all occurs in XP IE6 or Firefox. In VISTA
IE& no stack overflow occurs but the other problem still occurs after
"Level 533" is printed. I originally only ran the test to 2000, but
went higher to determine where the stack overflow would occur.

Is there a way to eleminate this problem in VISTA IE7?

Apr 16 '07 #1
1 4258
na*********@gma il.com wrote:
Is there a way to eleminate this problem in VISTA IE7?
Report it to Microsoft and see if they're interested in releasing a bugfix?

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry
Apr 17 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
2705
by: =?Utf-8?B?Tm9ybUQ=?= | last post by:
I have created a three tier application consisting of Client (Exe and Exe.Config), Middle (WebServices) and Database tiers. The Client tier contains an Exe, an Exe.Config and a dynamic Web reference. The Exe reads a key-value pair from the Exe.Config file, which is a link to the appropriate WebService that it should connect to, and sets the dynamic Web reference’s URL. If the Exe.Config file does not contain the key-value or if the...
10
3094
by: hugh welford | last post by:
Hi Have just installed IIS7 on Vista and am trying to access a .mdb file through ASP. Getting server error. I think the problem is in the file permission. Under XP Pro/IIS6 is used to have to set the .mdb file security via windows explorer to give IUSR_machinename full permissions on this file for anonymous web access. Cant seem to do this with Vista explorer - says object cannot be found.
5
2683
by: =?Utf-8?B?bXVzb3NkZXY=?= | last post by:
Hi, I wonder if someone could shed some light on this one for me. I have developed a web app in VS2005 with the built in server. It uses an sql database, everytihng works. I need to test it across the network, so i've installed IIS7 on my Vista machine and created a new website, point at the website's directory. After I switched to the 'Classic .net' app pool, it shows up on the port.
1
4336
mathewphilipp
by: mathewphilipp | last post by:
Dear all, I have a VB 6 application (VB 6.0 with MS Access) working well in all other Windows versions like Windows XP, 2000 etc. But it shows the error "Run-time error '713': Application-defined or object defined error" while executing the program (.exe) from Windows Vista (all versions). What may be the problem with Vista? I tried with Administrator rights and compatibility mode set to Windows XP SP2 but it shows the same error. SAME PROGRAM...
2
5987
by: John Heitmuller. | last post by:
Hi, I have a VB.Net application that I have recently upgraded from Visual Studio 2003 to Visual Studio 2005. The VB.Net app accesses Word and Excel. When I run the newly compiled VB.Net app on the Windows XP Pro system the app can interact with Word and Excel just fine. I'm pretty certain I have the correct Microsoft Word 11.0 Object Library and Microsoft Excel 11.0 Object Library references. All of my library references have Local Copy...
0
1630
by: walve_wei | last post by:
<1>use the D3D control panel, enable the debug DLL and maximum validation,for D3D control panel ,you need to install the directx sdk. <2>Start up the debug monitor (<MSVC install directory>\Common7\Tools \Bin\winnt\Dbmon.Exe). <3>If you use the tooltip in native code,then run the program,show the tooltip,then exit the program, the Dbmon.exe will report serious direct3d9 memleak in xp and vista os.but If I use the wpf tooltip in c#,it is...
10
1816
by: nik | last post by:
Hi, I've compiled my application on my vista machine, and it won't run at all on my xp machine. In the windows error report I get Exception code; 0xe0434f4d. I searched for that exception, but didn't see anything related to my problem The xp machine does have vb6 installed on it, could that be an issue? What reasons and solutions for this problem?
19
4227
by: pmw | last post by:
Hi I've got a problem with my current application. I currently use Windows Vista with Visual Studio Express 2008. If I compile the application on Vista, it works fine on Vista, but it doesn't work on XP. If I compile it on XP (with the same source code ), it runs without any problems. The thing is: I only have a virtual machine to test my software on XP, but I can't develop on it.
4
2234
by: =?Utf-8?B?dmlwZXJ4MTk2Nw==?= | last post by:
We are having an issue with an application we are developing. We have a Legacy COM DLL in C++ that we have converted to Visual Studio 2008. This COM DLL has methods that are calling Managed C# assemblies as pass thru to support legacy applications in an effort to move our code to the new Code base. Our COM Object can be instantiated on Windows XP in any COM supported environment using Visual C++, Visual Basic, ASP.NET or ASP and works...
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10247
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10214
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9067
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2935
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.