Return-Path: Delivered-To: apmail-jakarta-ant-user-archive@jakarta.apache.org Received: (qmail 90737 invoked by uid 500); 11 Jul 2001 16:30:32 -0000 Mailing-List: contact ant-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: ant-user@jakarta.apache.org Delivered-To: mailing list ant-user@jakarta.apache.org Received: (qmail 90457 invoked from network); 11 Jul 2001 16:30:27 -0000 Message-Id: X-Mailer: Novell GroupWise Internet Agent 5.5.4.1 Date: Wed, 11 Jul 2001 10:30:28 -0400 From: "Kyle Adams" To: Subject: Re: Ant 1.3 and Weblogic 6. Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N It might be a problem with odd OS-specific characters in the=20 XML file. This can be fixed by using a text editor that can convert file = between=20 UNIX, DOS, and Mac file formats (I've run into this problem primarily = with=20 different represenations of carriage returns). My other thought is probably a long shot, since the error message you're = getting isn't quite right if this was actually the problem, but... Are you behind a firewall? If you are, and you're not using the = nested=20 elements, then your xml parser might not be able to find the DTD. The = tag=20 redirects the parser to a local copy of the DTD. This is a good thing to = use=20 anyway, since accessing a local DTD is faster (thus speeding up=20 parsing). Normally that would cause an error something like: SAXException while parsing 'ejb-jar.xml'. This probably indicates = badly-formed=20 XML. Details: External entity not found: "http://java.sun.com/j2ee/dtds/ej= b- jar_1_1.dtd". In the end, I'm just making some guesses... Kyle