Thanks.  There was a Resin classloader dependency on loading that file.  It'll 
be fixed in the next snapshot.

As a reminder, the docs are at http://caucho.com/resin/doc/resin-embedding.xtp 
and http://wiki.caucho.com/JUnit

-- Scott

Daniel López <[EMAIL PROTECTED]> wrote: I wanted to have a go at the Resin 
Embedded features, as I wanted to 
start some functional testing on a web application and including all 
jars in the classpath and calling:

   /**
    * @param args
    * @throws IOException
    */
   public static void main(String[] args) throws IOException
   {
     ResinEmbed resin = new ResinEmbed();

     resin.start();

     String result = resin.request("GET /");

     System.out.println(result);
   }


results in:
---------------------------------------------
Exception in thread "main" classpath:com/caucho/resin/resin-embed.xml:1: 
XML file has no top-element.  All well-formed XML files have a single 
top-level element.
 at com.caucho.config.ConfigException.create(ConfigException.java:152)
 at com.caucho.config.Config.configure(Config.java:146)
 at com.caucho.resin.ResinEmbed.(ResinEmbed.java:103)
 at com.caucho.resin.ResinEmbed.(ResinEmbed.java:92)
 at org.leaf.test.ResinLauncher.main(ResinLauncher.java:23)
Caused by: com.caucho.xml.XmlParseException: 
classpath:com/caucho/resin/resin-embed.xml:1: XML file has no 
top-element.  All well-formed XML files have a single top-level element.
 at com.caucho.xml.XmlParser.error(XmlParser.java:2972)
 at com.caucho.xml.XmlParser.parseInt(XmlParser.java:266)
 at com.caucho.xml.AbstractParser.parse(AbstractParser.java:644)
 at com.caucho.config.Config.parseDocument(Config.java:391)
 at com.caucho.config.Config.parseDocument(Config.java:335)
 at com.caucho.config.Config.configure(Config.java:140)
 ... 3 more
---------------------------------------------
which is weird as as the XML file seems to have a top-level element. The 
parser is also Caucho's XML parser so...

That was using resin-3.1.s080130. I did not expect to run bug-free as it 
is a snapshot, but just in case you wanted to have a look at it.

That was using JDK 1.6 and trying to run the class inside Eclipse.

S!
D.


_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to