XslCompiledTransform에서 StackOverflowException 처리
Xsl Editor 개발 중에 StackOverflowException
를 호출할 때 XslCompiledTransform.Transform
이 발생하는 것은 문제가 될 수 있습니다. 이 예외는 일반적으로 변환 중에 스택을 압도하는 무한 재귀 Xsl 스크립트에서 발생합니다.
Microsoft에서는 이 특정 예외에 대해 효과가 없는 try-catch
차단에 의존하는 대신 사전 예방을 권장합니다. Xsl 스크립트 자체 내의 카운터 또는 상태 메커니즘은 재귀 루프를 중단하여 스택 오버플로를 방지할 수 있습니다.
그러나 예외가 .NET 내부 메서드에서 발생하는 경우 대체 전략이 필요합니다.
XslTransform
를 별도 프로세스에서 실행합니다. 이렇게 하면 잠재적인 충돌을 격리하여 기본 애플리케이션이 계속 작동하고 사용자에게 오류를 알릴 수 있습니다.변환을 별도의 프로세스로 분리하려면 기본 애플리케이션에서 다음 코드를 사용하세요.
<code class="language-csharp">// Example demonstrating argument passing in StartInfo Process p1 = new Process(); p1.StartInfo.FileName = "ApplyTransform.exe"; p1.StartInfo.UseShellExecute = false; p1.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; p1.Start(); p1.WaitForExit(); if (p1.ExitCode == 1) Console.WriteLine("A StackOverflowException occurred.");</code>
별도의 프로세스(ApplyTransform.exe
)에서는 다음과 같이 예외를 처리합니다.
<code class="language-csharp">class Program { static void Main(string[] args) { AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; try { //Your XslTransform code here throw new StackOverflowException(); //Example - Replace with your actual transform code } catch (StackOverflowException) { Environment.Exit(1); } } static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { if (e.IsTerminating) { Environment.Exit(1); } } }</code>
이 수정된 예는 StackOverflowException
처리를 위한 더욱 강력하고 명확한 솔루션을 제공합니다. try-catch
의 Main
블록은 이제 StackOverflowException
를 구체적으로 포착하고 UnhandledException
이벤트 핸들러는 "잘못된 작업" 대화 상자를 방지하여 깨끗한 종료를 보장합니다. throw new StackOverflowException();
예제를 실제 Xsl 변환 코드
위 내용은 XslCompiledTransform에서 StackOverflowException을 방지하고 처리하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!