I'm hoping someone can help me here.
I have my application running (swing client) using Spring. When I run it from my ant task, it works fine, log4j loads OK and my spring context loads ok.
However, when I try to run it via webstart, I get errors!
Log4J also isn't found.Code:IOException parsing XML document from file [C:\tools\firefox\ctx\clientContext.xml]; nested exception is java.io.FileNotFoundException: ctx\clientContext.xml (The system cannot find the path specified)
Is someone able to explain?
This is in my jar file:
ctx/
ctx/client.properties
ctx/clientContext.xml
log4j.properties
au/com/todds/client/Client.class
In Client.java
public static final String CLIENT_CONTEXT_CONFIG_LOCATION = "/ctx/clientContext.xml";
ListableBeanFactory beanFactory = new FileSystemXmlApplicationContext(CLIENT_CONTEXT_CON FIG_LOCATION);
Thanks.


Reply With Quote
