Topic awaiting preservation: XMLDSO.class - JNI issue? |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Back in West Texas... How disappointing |
posted 12-08-2004 04:05
I've been looking around for a bit for this, but after staring at this bloody screen all day fixing others problems, my enthusiasm is wavering, so I bailed for now, and am going to try and take the easy way out ::enter you:: code: <applet code="com.ms.xml.dso.XMLDSO.class"
|
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 12-08-2004 07:39
Your issue is that when you give class paths you only do the class name not the class name dot path. You put the path in the codebase attribute. code: <applet code="XMLDSO.class"
|
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 12-08-2004 07:49
I should say I'm not familiar with using system files as applets (sounds like a bad idea generally). So I don't know how to do this using the system path variable. |
Paranoid (IV) Inmate From: Back in West Texas... How disappointing |
posted 12-08-2004 20:43
Still throwing "FileNotFoundException: \com\ms\xml\dso\XMLDSO\class.class" |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 12-08-2004 21:56
Actually I know the answer to this one now. (Stupid red wine last night) You can't access .class files that are outside your html root. Otherwise anyone can run class files on your system. |
Paranoid (IV) Inmate From: Back in West Texas... How disappointing |
posted 12-09-2004 00:51
Oooooh, ok, that makes sense. The laptop that it worked on must have been logged on as admin. |