本文介绍了XML Debug XSLT意外错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我正在尝试获取XML文件以生成HTML文件。 XML文件的前几行: I am trying to get an XML file to produce an HTML file.  The  first few lines of the XML file: <? xml version = " 1.0" 编码 = " utf-8" ?> <? xml-stylesheet type = " ; text / xsl" href = " XSLTFile1.xslt" ?> < xdef:DataDefinition xmlns: xdef = " http://schemas.smartz.com/DataDefinition" > < xdef:tables > < xdef:table name = " customer" > < xdef:field name = " cust_deleted" type = " bit" nullable = " ; false" description = &"此客户是否仍然有效?" /> < xdef:field name = " cust_acctNumber" type = " int" nullable = " false" description = " Customer account number(key)" /> < xdef:field name = " cust_name" type = " varchar" size = " ; 50" nullable = " false" description = " Customer name" /> <?xml version="1.0" encoding="utf-8" ?> <?xml-stylesheet type="text/xsl" href="XSLTFile1.xslt"?>  <xdef:DataDefinition xmlns:xdef="http://schemas.smartz.com/DataDefinition">      <xdef:tables>         <xdef:table name="customer">              <xdef:field name="cust_deleted"             type="bit"                  nullable="false" description="Is this customer still active?"/>              <xdef:field name="cust_acctNumber"          type="int"                  nullable="false" description="Customer account number (key)"/>              <xdef:field name="cust_name"                type="varchar"  size="50"   nullable="false" description="Customer name"/>   推荐答案 我遇到了同样的问题 - 我成功调试了一次xslt,然后在第二次运行时我终止了调试器,因为我需要更改其中一行。 I'm getting the same problem - I successfully debugged an xslt once and then, on the second run I terminated the debugger as I needed to change one of the lines.终止后,我得到了你提到的文本弹出窗口,现在,即使重启后,我也无法调试xslt。Upon terminating, I got this popup with the text you mention and now, even after a restart, I'm unable to debug the xslt at all.我发现有关堆栈溢出的帖子: http://stackoverflow.com/ questions / 12369 / vs2008-sp1-crashes-when-debugging-an-xslt-file 数据可编程性团队成员表示该问题已经确定,并将在下一版本中修复 - 但是,MS Connect还没有列出修补程序。I found this post on stack overflow: http://stackoverflow.com/questions/12369/vs2008-sp1-crashes-when-debugging-an-xslt-file where a member of the Data Programmability team says that the issue has been identified and will be fixed with the next version - however, MS Connect doesn't yet have a hotfix listed.这与XSL本身的内容无关,我认为这不是源控制的直接问题,即使消息似乎是这样建议的。It's nothing to do with the content of the XSL itself, and I would be it's not directly an issue with source control, even though the message appears to suggest so.如果出现修补程序,我们将不得不留意。与此同时,我不知道如何让它再次运作。 SP1之前我曾经遇到过这个错误,但是在重新启动IDE之后就可以了,但现在看来它已经永久损坏了!We'll have to keep an eye out for the hotfix, if it emerges.  In the meantime, I have no idea how to get it working again.  Pre-SP1 I used to get this error, but it would be okay after restarting the IDE, but now it seems it's permanently damaged! 这篇关于XML Debug XSLT意外错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 23:16