<div dir="ltr">Hi Joe,<div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jun 4, 2013 at 7:17 PM, Joe Corneli <span dir="ltr"><<a href="mailto:holtzermann17@gmail.com" target="_blank">holtzermann17@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hello:<br>
<br>
I'm working with a Java developer and she tells me that this works:<br>
<br>
interpreter.eval("(load<br>
\"/<a href="http://people.kmi.open.ac.uk/ning/atms/decipher-atms-single-file.lisp\" target="_blank">http://people.kmi.open.ac.uk/ning/atms/decipher-atms-single-file.lisp\</a>")");<br></blockquote><div><br>
</div><div style>(Assuming the leading dash in "/http" is a typo, this should indeed work...)</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

but this doesn't:<br>
<br>
interpreter.eval("(load \"/Decipher/codes/decipher-atms-single-file.lisp\")");<br></blockquote><div><br></div><div style>But: this should work as well. Can you tell a bit more about the environment? Is this a Windows environment, ie an environment with multiple filesystem root directories? If not and this is on a *nix-like filesystem, I would not understand why this shouldn't work.</div>
<div style><br></div><div style>What means "doesn't work"? Does it mean something throws a Java exception? Does it mean the file content doesn't actually get loaded, but you see no errors? Is there a Common Lisp condition being thrown?</div>
<div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Any idea about why this would be, and how we can load local code from<br>
a WAR web service?<br></blockquote><div><br></div><div style>What I did in the past is pick a class which I know to be included in the JAR/WAR, something like "org.armedbear.lisp.Lisp", take its class and get the URL of the required resource from it like this (taken from src/org/armedbear/lisp/Site.java):</div>
<div style><br></div><div style><div>        URL url = Lisp.class.getResource("boot.lisp");</div><div><br></div><div><br></div><div style>HTH,</div><div style><br></div><div style><br></div><div style>Erik.</div>
</div></div></div></div>