I'm using XMLResume on Eclipse and have run into a problem with proxy servers. When I try to run the pdf task on a filtered resume, I get the following error:
External entity not found: "http://xmlresume.sourceforge.net/dtd/resume.dtd"
Evidently, ant is trying to go out and find the DTD, but can't because I'm behind a proxy. This is more an Eclipse question, but how do you tell ant about the proxy? I know I can edit the filtered resume to tell it to look at my local file system, but that gets annoying after a while. TIA.
B
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there,
I'm using XMLResume on Eclipse and have run into a problem with proxy servers. When I try to run the pdf task on a filtered resume, I get the following error:
External entity not found: "http://xmlresume.sourceforge.net/dtd/resume.dtd"
Evidently, ant is trying to go out and find the DTD, but can't because I'm behind a proxy. This is more an Eclipse question, but how do you tell ant about the proxy? I know I can edit the filtered resume to tell it to look at my local file system, but that gets annoying after a while. TIA.
B
I don't know about Eclipse, but with java, I set the proxy on the command line or script :
java -DproxySet=true -DproxyHost=proxy-at.your.company.com -DproxyPort=80 [...the rest of the args: i.e, org.apache.xalan.xslt.Process -in %1.xml -xsl xsl\output\%2-html.xsl -out %1.html]