Accessing an XML file from webstart
We want to launch an application hosted on a web server on client machines using web start. The application uses data from an xml file which is present as a separate file on the webserver.Right now,the application is starting off but we can see that the application is not accessing the XML file.
This is the exeption output at the console
java.io.FileNotFoundException:
1)Is this possible at all?will the application be allowed to access any other file on the server?
a)All the jar files in the Application have been signed and the tag<all-permissions> has been included.
2)We have tried passing the XML file by using the argument tag in the jnlp file also. The statement used was <argument>nameoffile.xml</argument>
3)We also have a copy of the XML file in the jar file containing the class which uses this XML file.Even this doesnt seem to help
Hope to get some help as soon as possible.Thanks in Advance.

