Hi Mark,
I have a problem like this in 10 Internal build 3. I have an application that
used a url http://iron:8080/my.xml
in the default-web-app area to get an XML file. It seems Orion tried to run the
?XSLT? servlet
on it and could not resolve the dtd. The application showed that it tried to
resolve it as
/local/app/orion/default-web-app/my.dtd rather than http://iron:8080/my.dtd
I'm sure this is just me not knowing how to configure orion and the XSLT
servlet but thought it might be helpful.
Eric :-)
"Kaseman, Mark T" wrote:
> I just upgraded to orion 1.0.0.RC2 and when I try to generate an XML
> document from my JSP code I receive the following error
> Source XML Error: External entity not found: xxxx.dtd.
> This same code works fine under orion 1.0.0.RC1.
> Right now I am not sure what the problem/issue is ????
> Here is the beginning JSP code:
>
> <?xml version="1.0"?>
> <!DOCTYPE mtv-signon-grp PUBLIC "METAVANCE CICS REGIONS LIST"
> "mtv-sign-on.dtd">
> <?xml:stylesheet type="text/xsl" href="mtv-sign-on.xsl"?>
>
> <jsp:useBean id="javaBeanSession"
> class="com.mkaseman.util.JMTVCycle.EieJSPIntMTVSessionCheck" scope="page">
> </jsp:useBean>
> <jsp:useBean id="javaBeanAction"
> class="com.mkaseman.util.JMTVCycle.EieJSPIntMTVRegionsList" scope="page">
> </jsp:useBean>
>
> Here is the dtd definition:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <!ELEMENT MTV-SIGNON-GRP (MTV-SIGN-ON, LIST-OF-REGIONS+,
> RETURN-INFO)>
> <!ELEMENT MTV-SIGN-ON (EDSNETID, EDSNETPwd, CICSRegion)>
> <!ELEMENT LIST-OF-REGIONS (REGION-ID+)>
> <!ELEMENT REGION-ID (REGION-DESC, SELECTED-REGION)>
> <!ELEMENT EDSNETID (#PCDATA)>
> <!ELEMENT EDSNETPwd (#PCDATA)>
> <!ELEMENT CICSRegion (#PCDATA)>
> <!ELEMENT SELECTED-REGION (#PCDATA)>
> <!ELEMENT REGION-DESC (#PCDATA)>
> <!ELEMENT RETURN-INFO (RETURN-CODE)>
> <!ELEMENT RETURN-CODE (#PCDATA)>