Re: struts-config_1_1.dtd error?

2002-10-01 Thread Eddie Bush
Why does Opera ever see the DTD? ... odd ... I just open my DTDs up in Netbeans personally. I can't imagine the DTD being seen during app execution - I'm guessing you are opening it for reference. One observation I would make: Shouldn't we be using an encoding of UTF-8? I thought that

Re: struts-config_1_1.dtd error?

2002-10-01 Thread David Graham
From: Eddie Bush [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: Struts Developers List [EMAIL PROTECTED] Subject: Re: struts-config_1_1.dtd error? Date: Tue, 01 Oct 2002 11:34:13 -0500 Why does Opera ever see the DTD? ... odd ... I just open my DTDs up in Netbeans

Re: struts-config_1_1.dtd error?

2002-10-01 Thread Eddie Bush
I'm about as stupid as it gets wrt XML/DTDs. I can use digester to instantiate/configure stuff (piece of cake!) but I haven't cured my definite lack of knowledge on XML yet ... :-/ I really should too - I see a lot of utility in it. Sorry for asking a stupid question - I just couldn't see

RE: struts-config_1_1.dtd error?

2002-10-01 Thread James Childers
David Graham wrote: The struts-config_1_1.dtd file starts with this line: ?xml version=1.0 encoding=ISO-8859-1? which I think is incorrect. DTDs aren't xml documents so they shouldn't start with that processing instruction. I'm not an XML expert but Sun's DTDs don't have this line

RE: struts-config_1_1.dtd error?

2002-10-01 Thread David Graham
-To: Struts Developers List [EMAIL PROTECTED] To: Struts Developers List [EMAIL PROTECTED] Subject: RE: struts-config_1_1.dtd error? Date: Tue, 1 Oct 2002 12:14:18 -0500 David Graham wrote: The struts-config_1_1.dtd file starts with this line: ?xml version=1.0 encoding=ISO-8859-1? which I

RE: struts-config_1_1.dtd error?

2002-10-01 Thread tim_smithers
You will need to get used to schemas tho'. If you have a look at the draft 2.4 servlet spec, they now use a schema instead of a dtd for web.xml. It's a pity that digester doesn't yet work with registering schema's (only DTD's) - although you can set a schema. James Childers wrote: David