Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
JDOM
Page 40 of 45 Previous 10   31   32   33   34   35   36   37   38   39   40   Next 10  

JDOM compatibility ??

Hi We have a JSP based application using JDOM Beta 5 and another Java application which uses JDOM Beta 7. We can get only one app working at a time by pointing to that Jar file. When we use JDOM

UTF8 charset issues...

Hi all I am trying to understand how jdom handles character encodings. Here is what I am doing I have a java app which reads data from a xml file (UTF-8 encoded). I am able to get text just

SV: [jdom-interest] DOMBuilder problem

Hi do you have a specific reason for using DOMBuilder? Otherwise you 're better of using SAXBuilder. /pmn -----Ursprungligt meddelande----- Fr?n jdom-interest-admin@(protected) [mailto jdom-

SV: [jdom-interest] JDOM and very large files

Hi Actually the file (or input stream) is read sequentially but as you say the entire document tree is built in memory and this is usually much larger than the text represntation. You ca

JDOM and very large files

Hi everyone I am trying to parse a very large file (1.3 Gb) using JDOM. I have used JDOM before with smaller files but never large ones. It seems like the builder attempts to read the whole fil

DOMBuilder problem

Hi I am trying to use DOMBuilder to read an XML file to a DOM tree but it gives me an error as shown below org.jdom.JDOMException Error in building from stream Class org.jdom.input.DOMBu

help

Hi I am trying to use DOMBuilder to read an XML file to a DOM tree but it gives me an error as shown below org.jdom.JDOMException Error in building from stream Class org.jdom.input.DOMBu

Subject: I apology

Honestly I don 't know what happened yesterday... When I used the SAXBuilder.build(URL) it did not work. Today when I compile again my project all is fine. I 'm sorry Emmanuel _______

SAXBuilder : i 'm buggy, sorry

Sorry I made a big mistake in my previous mail.... I 'm sorry!

SAXBuilder bug::build(URL or Reader) (part 2)

Hi all I tested the solution provided by Bill Woodward but it doesn 't work and I don 't know why. I give a sample code and my xml file here after. What is strange is that I can read the fil

cannot access class org.jdom.document Jbuilder 3.0

I am using jbuilder 3.0 and have been recieving the following error cannot access classs org.jdom.document class file has wrong version 46.0 Can I use the latest release of jdom with jbuilde

Subject: JDOM for J2ME

Hello I 've been wondering if anyone knows about the possibility on using JDOM on J2ME CDC Personal profile? Is there any chance? Thanks a lot for your help Sherine

Re: Strange behaviour of applet when accessing the DTD

On Wed Oct 08 2003 at 12 31 51PM +0200 Per Norrman wrote > 1. An unsigned applet can only call back to the server > from where it was loaded all other connections will > be refused. Inste

SaxBuilder error: root element missing

Hi all Here is my problem When I try to parse an xml document using the SaxBuilder.build(|java.io.File file) method there is no problem. When I put the same file inside a jar file and tr

SV: [jdom-interest] Strange behaviour of applet when accessing the DTD

It 's not about validation or not. The DTD is still read even if validation is turned off for instance entities may have to be resolved. My first guess would be that the browser has a problem

Strange behaviour of applet when accessing the DTD

I have an applet that reads XML from the server and builds a Document. Essentially it does something like Reader reader new InputStreamReader(new URL(url).openStream()) Document document

SV: [jdom-interest] java.net.MalformedURLException

Note that in SAXBuilder#build(String systemId) systemid is a URI *not* the actual XML content. Instead use builder.build(new StringReader(bf.toString())) If you 're obtaining the con

java.net.MalformedURLException

Hi While SAXBuilder builder new SAXBuilder(false) Document doc builder.build(bf.toString()) Where bf is a StringBuffer populated by readLine() from Buffered

SV: SV: [jdom-interest] One less TODO item

What do you append '/ ' before loading the resource? In principle http //www.cafeconleche.org is not the same resource as http //www.cafeconleche.org/. It probably is for the overwhelming majori

SV: [jdom-interest] One less TODO item

Hmm I thought it was the SAXParsers (or XMLReader) that resolved the relative URI. If I supply an EntityResolver to either crimson or xerces the system id is already resolved when the callback

SV: [jdom-interest] Merging JDOM documents

Hi what did you expect when you detached the root element from the document? You must either clone the element inReport.getRootElement().getChild( "employee ").addContent

Merging JDOM documents

Hi I 'm trying to merge two documents and then transform them into a result. some code public Document setReports(Document inReport Document rules) throws Exception { //

One less TODO item

Hi I was looking at the TODO.txt file to see if I could do anything to make is shorter. * Rusty bug report "While testing this patch I noticed a significant and likely unrelated bug in t

Charset conversion problem

Hi JDOM I don 't know if this is a bug or a setting I cannot find. I 'm running JDOM b-9 on MacOSX. >From a byte stream I receive a xml document with some accented characters in it. For exampl

Subject: (no subject)

SV: [jdom-interest] getChildren() usage

Hi what JDOM version are you using and what is your exact usage of getChildren? Does your XML input contain namespaces? There was a question on this topic about a month ago on list getChil

SV: [jdom-interest] Re: jdom-interest digest, Vol 1 #1318 - 1 msg

Of course you can <![CDATA[height of jack is > 6 feet]] > In fact the only time ' > ' needs to be escaped is when it is part of the string ']] > ' as in a CDATA section is terminated with

Re: jdom-interest digest, Vol 1 #1318 - 1 msg

Also what if the "illegal character " happens to be - height of jack is > 6 feet you cannot wrap this in CDATA Peter )

AW: [jdom-interest] escape characters within a element text

jdom-interest-admin@(protected) wrote > hi > if i have a string which is a xml but contains invalid > characters within the elements text how can i create a xml document > out of it. > If the s

getChildren() usage

This is a request for a sanity check I 'm attempting to use the getChildren() method in the Element class. Upon debugging I see that the Element is properly populated with correctly pars
Page 40 of 45 Previous 10   31   32   33   34   35   36   37   38   39   40   Next 10