Re: [JAVA3D] {JAVA3D] VRML97 Loader & Applets

2005-02-16 Thread Flavio Gonzaga
Hi Rolf, Thanks for the answer. For sure putting the loader libs in different jars is be a great idea. And that was exactly the main point for the SecurityException problem. I was signing my Applet jar but not the other jar files. So I signed all jars and everything worked fine. Thanks for helping

Re: [JAVA3D] {JAVA3D] VRML97 Loader & Applets

2005-02-16 Thread Rolf Gabler-Mieck
Hi Flavio, so far as I know, every user of your applet needs the vrml97.jar in the classpath (or int the lib/ext/ folder) so put the vrml97.jar in your ext-folder and it'll work on your mashine. this prevents user to get everytime loading your applet also loadin 700kb extra data each time the cash

[JAVA3D] VRML97 Loader & Applets

2005-02-16 Thread Flavio Gonzaga
Hi, I am trying to use the VRML97 Loader inside an applet, but I am getting security probIems while instantiating the VRML97Loader loader class. I have already signed my jarfile with another Applet that access local filesystem and it worked fine. Here is the exception: java.security.AccessControl

Re: [JAVA3D] VRML97 loader - cache problem.

2005-01-28 Thread Flavio Gonzaga
Hi, I recompiled the org.web3d.j3d.loaders.BaseLoader class changing the class used for the load_mgr attribute inside the method "Scene load(InputSource is)". It was using the MemCacheLoadManager class and I changed it to use the SimpleLoadManager class. Otherwise I did something wrong, the cache

Re: [JAVA3D] VRML97 loader - cache problem.

2005-01-24 Thread Justin Couch
Flavio Gonzaga wrote: Is there a way to delete the cache or force reloading all files? If true, could you please tell me the way? Not that I can think of. The file loading system is abstracted from the file access system. The file loader doesn't know whether the file access system is caching or no

Re: [JAVA3D] VRML97 loader - cache problem.

2005-01-24 Thread Flavio Gonzaga
On Fri, 21 Jan 2005 09:45:50 -0800, Justin Couch <[EMAIL PROTECTED]> wrote: > That's correct. Our caching strategy is not particularly intelligent > right now. We're not looking at things like file change dates or > lifetime headers in HTTP requests. Right now we don't have any immediate > plans t

Re: [JAVA3D] VRML97 loader - cache problem.

2005-01-21 Thread Justin Couch
Flavio Gonzaga wrote: I am using the Xj3D VRML/X3D Code API (www.xj3d.org) to load VRML models. The problem is that I am changing the textures files and reloading the model, but the loader is caching the model and the model appers the same. Just when I restart the application, the loader really loa

[JAVA3D] VRML97 loader - cache problem.

2005-01-21 Thread Flavio Gonzaga
Hi all, I am using the Xj3D VRML/X3D Code API (www.xj3d.org) to load VRML models. The problem is that I am changing the textures files and reloading the model, but the loader is caching the model and the model appers the same. Just when I restart the application, the loader really loads again the

Re: [JAVA3D] VRML97 URL Problem

2003-06-24 Thread Christian Schnabl
I finally managed it. Thanks for your time. Just did not set up the path correctly. Sounds quite stupid as it is. Thanks for your response justin. if anyone comes up with an technique to do such loading, would be great if he will post it. Chris

Re: [JAVA3D] VRML97 URL Problem

2003-06-24 Thread Christian Schnabl
The point is, the file should be read into a socket-stream on the server. Then on the other side, the client should read from this stream and get the file. Then the client should use the vrml97loader loader(java.io.Reader) to read from this stream. The Problem is, what ever i do, if i set the Bas

Re: [JAVA3D] VRML97 URL Problem

2003-06-24 Thread Justin Couch
Christian Schnabl wrote: Could it be that the xj3d loader(java.io.Reader) is not for use to set up a client-server connection? It works fine, you just have to set a base URL. If you don't do that, then it won't work because it has nothing to resolve relative URLs to. -- Justin Couch

Re: [JAVA3D] VRML97 URL Problem

2003-06-24 Thread Christian Schnabl
Could it be that the xj3d loader(java.io.Reader) is not for use to set up a client-server connection? I'm almost sick with this problem. All i want is the server to load a VRML-File, send it to the client(which is definetly on a other System). This client should view the File. scenegraphio does

Re: [JAVA3D] VRML97 URL Problem

2003-06-24 Thread Justin Couch
Christian Schnabl wrote: "http://localhost/3dc/Buble.wrl"; in my Applet showing in a browser, i get a "ServiceNotSupported" Exception: "http not supported" Now, is it not supported by the xj3d loader? It looks like your classpath is not set up correctly. Have you copied all of the JAR files into t

[JAVA3D] VRML97 URL Problem

2003-06-23 Thread Christian Schnabl
I try to load a vrml file with the xj3d VRML97Loader via an URL. As long as I stay in my ide everything works fine. When i try to load the file like "http://localhost/3dc/Buble.wrl"; in my Applet showing in a browser, i get a "ServiceNotSupported" Exception: "http not supported" Now, is it not sup

Re: [JAVA3D] VRML97 animations again

2002-04-30 Thread Justin Couch
Andreas Bauer wrote: > example, the unit stops moving and starts shooting, so another animation > must be played back. How can I do this ? > One of our modeler asked me how to export/create multiple animations per vrml > file with 3d studio max, but I know nothing about 3d studio max. Can anybod

[JAVA3D] VRML97 animations again

2002-04-28 Thread Andreas Bauer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have now tryed the loader example of Xj3d. I saw the cube moving. I am writing the 3D engine for an RTS game. For example a unit starts moving, then a moving animation of the model must be played back. A little bit later, for example, the unit

Re: [JAVA3D] VRML97 animations

2002-04-23 Thread Justin Couch
Andreas Bauer wrote: > The example only shows how to load a VRML file, but how do I play back a > animation? getting the behavior and adding a Alpha Object to it? Can someone If the VRML file has animation, it will be used and rendered as such *if* you follow the code in the loader example. If y

Re: [JAVA3D] VRML97 animations

2002-04-23 Thread Andreas Bauer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 22 April 2002 22:49, you wrote: > Try looking in the examples/loader directory of the Xj3D project. This > examples shows you how to use Xj3D to load VRML files. These can > contain animations or any other VRML behavior. A typical way to

Re: [JAVA3D] VRML97 animations

2002-04-22 Thread Giles
Andreas Bauer wrote: >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >Hi, > >I want playback anims from VRML97 files. To load the files I am using the Xj3d >loader. How do I do this and can I create multiple animatons in one file? If >yes, how can I create multiple animations in 3D studio max a

[JAVA3D] VRML97 animations

2002-04-22 Thread Andreas Bauer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I want playback anims from VRML97 files. To load the files I am using the Xj3d loader. How do I do this and can I create multiple animatons in one file? If yes, how can I create multiple animations in 3D studio max and export them? Thanks, - --

Re: [JAVA3D] VRML97 Loaders ...

2001-12-07 Thread Justin Couch
Giles wrote: > > P. Flavin wrote: > > >Alan & Justin: she origianally asked for the "best" loaders, > > > > and you got her to use ones that you are saying don't work ? > > > > ( see below ) > > > > People want stuff that works, not your problems. > > > > Be honest with her, and the others, p

Re: [JAVA3D] VRML97 Loaders ...

2001-12-07 Thread Giles
P. Flavin wrote: >Alan & Justin: she origianally asked for the "best" loaders, > > and you got her to use ones that you are saying don't work ? > > ( see below ) > > People want stuff that works, not your problems. > > Be honest with her, and the others, please. ... > WTF is your problem. D

[JAVA3D] VRML97 Loaders ... The Old Reliable VRML Loaders from Sun work, have since the 1900's

2001-12-07 Thread P. Flavin
Alan & Justin: she origianally asked for the "best" loaders, and you got her to use ones that you are saying don't work ? ( see below ) People want stuff that works, not your problems. Be honest with her, and the others, please. ... VRML animation of H-Anim Avatars and other VRML w

Re: [JAVA3D] vrml97.jar

2001-12-05 Thread P. Flavin
The Sun VRML Loaders for Java3d have worked very well for me, though as you say the documentation is light ( unless you consider the source to be definative statement in documentation ;^) ). If you post or send me the ElevationGrid ".wrl" file ( or a simple version of it ) I'll check it on

Re: [JAVA3D] vrml97.jar

2001-12-05 Thread Giles
Nikolai V. Chr. wrote: >I cannot find the instructions on how to use the old vrml97.jar loader. > >Can anybody please show me where they are? > >We need it because it supports elevationgrid. :) > My guess is it would be about 2-3 days work to get it working right. I've got a partial implementati

[JAVA3D] vrml97.jar

2001-12-04 Thread Nikolai V. Chr.
I cannot find the instructions on how to use the old vrml97.jar loader. Can anybody please show me where they are? We need it because it supports elevationgrid. :) Regards Nikolai -- Nikolai V. Christensen, Computer Engineer, Simulation and Training

Re: [JAVA3D] vrml97.jar

2001-11-09 Thread Giles
Jürgen Vansteelant wrote: >hello, > >where can I find the open source of the vrml97.jar file? > The current version of this project is available at: http://www.web3d.org/TaskGroups/source/xj3d.html It supports both VRML97 and X3D formats. -- Alan Hudson President: Yumetech, Inc.

Re: [JAVA3D] vrml97.jar

2001-11-09 Thread Thomas Gilbert Giusepe
As long as I knwo vrml97.jar is out. Now what is available is the X3D. Get a look there: http://www.j3d.org/utilities/loaders/vrml/web3d.html >From: Jürgen Vansteelant <[EMAIL PROTECTED]> >Reply-To: Discussion list for Java 3D API <[EMAIL PROTECTED]> >To: [EMAIL PROTECT

[JAVA3D] vrml97.jar

2001-11-09 Thread Jürgen Vansteelant
hello, where can I find the open source of the vrml97.jar file? Thank you! DISCLAIMER The contents of this e-mail are intended for the named addressee only. It contains information which may be confidential and which may also be privileged. Unless you are the named addressee (or aut

Re: [JAVA3D] vrml97

2001-06-05 Thread Mona Wong
> First, congratulations for the creation of the j3d spanish group !! Did I miss something? This mailing is not specifically for the j3d spanish group. If there is one, will someone please share that info. Cheers, Mona =

Re: [JAVA3D] vrml97

2001-06-05 Thread Daniel Moscoso
Bank Group - emagine your business in another dimension Date: 05.06.2001 11:07 To:[EMAIL PROTECTED] Reply to: Discussion list for Java 3D API <[EMAIL PROTECTED]> Subject: Re: [JAVA3D] vrm

Re: [JAVA3D] vrml97

2001-06-05 Thread Alvaro Zabala
PROTECTED]]En nombre de Borja Marcos Suárez > Enviado el: martes 5 de junio de 2001 11:01 > Para: [EMAIL PROTECTED] > Asunto: Re: [JAVA3D] vrml97 > > > Spanish > --- > Hola Dani, > > yo utilizo el vrml loader desde un applet y me funciona. ¿Has > dado

Re: [JAVA3D] vrml97

2001-06-05 Thread Borja Marcos Suárez
permissions to the applet for file access? you can do it signing the applet or changing the java.security file of JRE. - Original Message - From: "Daniel Moscoso" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 11:22 AM Subject: Re: [JAV

Re: [JAVA3D] VRML97 loading and texture rendering

2001-04-02 Thread giles
We are in the process of creating a 2.0 version of this loader. If you could send me the test file I'll make sure it works for next version of Xj3D. Likely release date for the next version will be April 20th. I will likely have a test release out sooner so I'll post when I do. Olivier BANASZA

[JAVA3D] VRML97 loading and texture rendering

2001-04-02 Thread Olivier BANASZAK
Hello, I've been using J3DFly to test two different VRML loaders : NCSA & XJ3D. The sample Vrml contains one node : an IndexedFaceSet geometry (describing a surface) associated with an appearance ImageTexture. This sample VRML doesn't load properly with either loader, unfortunately. The most succe

Re: [JAVA3D] VRML97 behaviors with XJ3D

2000-12-13 Thread Rick Goldberg
o 8bit by mail.java.sun.com id eBDE4IT22632 > Date: Wed, 13 Dec 2000 09:02:08 -0500 > From: "Yazel, David J." <[EMAIL PROTECTED]> > Subject: Re: [JAVA3D] VRML97 behaviors with XJ3D > To: [EMAIL PROTECTED] > > I looked into the VRML code and standards when I first sta

Re: [JAVA3D] VRML97 behaviors with XJ3D

2000-12-13 Thread Yazel, David J.
aka Holger)[SMTP:[EMAIL PROTECTED]] > Reply To: Discussion list for Java 3D API > Sent: Wednesday, December 13, 2000 7:27 AM > To: [EMAIL PROTECTED] > Subject: [JAVA3D] VRML97 behaviors with XJ3D > > Hi there, > > Is it possible to load the interaction and a

[JAVA3D] VRML97 behaviors with XJ3D

2000-12-13 Thread David (aka Holger)
Hi there, Is it possible to load the interaction and animation defined in a VRML97 file into Java3d? I've noticed that there is a method getBehaviorNodes() in the Scene-Interface. However, with the VRML97 loader from the XJ3D archive, this method returns null even though there are animations and

Re: [JAVA3D] VRML97 problem

2000-08-23 Thread Ole Vilmann
]] Sent: 22. august 2000 16:13 To: [EMAIL PROTECTED] Subject: [JAVA3D] VRML97 problem Hi! I have a big problem with the package (com.sun.j3d.loaders.*) that can browse the VRML97 models. I made a little application to browse the models (wrl) and now I really need to have the structures of models (t

[JAVA3D] VRML97 problem

2000-08-22 Thread Vlad Valica
Hi! I have a big problem with the package (com.sun.j3d.loaders.*) that can browse the VRML97 models. I made a little application to browse the models (wrl) and now I really need to have the structures of models (the vector with points, the vector with index). The wrl model is loaded somewhere but

Re: [JAVA3D] VRML97

2000-08-12 Thread Marko
Jay, Go to http://www.web3d.org/TaskGroups/x3d/sun/cvs.html and download the lates sources, then compile them and make jar file. This way you will have the latest version. Hint: You will also need javacc to create Parser.java from Parser.jj. Regards, Marko JayT wrote: > > This may be a silly

[JAVA3D] VRML97

2000-08-11 Thread JayT
This may be a silly question, but I've been searching the web for the latest vrml97.jar file and I see MANY out there. I'm not sure what's the latest.. so far i've downloaded vrml97.jar Beta Rev C.. does anyone know if that's the right one? Thanks, Jay ==

[JAVA3D] VRML97 BROWSER

2000-06-09 Thread Sandip Kumar Ray
Hello all, I have some VRML files. Is there any VRML browser or plugin for Netscape for VRML is available for Sun Solaris or Linux platform in the web? Please tell me the website address . Is that software is freely available in the web ? Is there any VRML world development too

Re: [JAVA3D] VRML97 Loader in a webpage

2000-06-08 Thread Myron Smith
TECTED] Subject: [JAVA3D] VRML97 Loader in a webpage Has anyone used the com.sun.j3d.loaders.vrml97.VrmlLoader successfully in a webpage? There seems to be a problem with the com.sun.j3d.loaders.vrml97.VrmlLoader.pathToURL method. I get the errors: java.security.AccessControlException

[JAVA3D] VRML97 Loader in a webpage

2000-06-08 Thread Jack Gundrum
Has anyone used the com.sun.j3d.loaders.vrml97.VrmlLoader successfully in a webpage? There seems to be a problem with the com.sun.j3d.loaders.vrml97.VrmlLoader.pathToURL method. I get the errors: java.security.AccessControlException: access denied (java.util.PropertyPermission * read,write)

Re: [JAVA3D] vrml97 in applets

2000-05-04 Thread Doug Gehringer
> From: "Jack Pien" <[EMAIL PROTECTED]> > i have a couple of questions about the vrml97 loader. some background first - > i'm trying to open a .wrl file with the vrml97 loader from within an applet > but i'm getting some security violations. i have it setup such that my > "server" machine has t

Re: [JAVA3D] Vrml97 loader

2000-01-06 Thread Anselm Hook
yself unfortunately. - Andy -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]]On Behalf Of Stefan Racz Sent: Thursday, January 06, 2000 9:51 AM To: [EMAIL PROTECTED] Subject: [JAVA3D] Vrml97 loader Hi, I tried to load a Vrml97 file with our Vrml97 loader but it f

[JAVA3D] Vrml97 loader

2000-01-06 Thread Stefan Racz
Hi, I tried to load a Vrml97 file with our Vrml97 loader but it frozes. When I load this file without textures, etc.,( only the geometry ), everything is ok. Why? Maybe I've done anything wrong. Thanx ! === To unsubscribe,

Re: [JAVA3D] VRML97 Loader Can not read some VRML files

1999-12-16 Thread Rick Goldberg
ormal > X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 > Importance: Normal > Date: Thu, 16 Dec 1999 17:21:15 -0800 > From: Jeff Sonstein <[EMAIL PROTECTED]> > Subject: Re: [JAVA3D] VRML97 Loader Can not read some VRML files > Comments: cc: [EMAIL PROTECTED] > To

Re: [JAVA3D] VRML97 Loader Can not read some VRML files

1999-12-16 Thread Jeff Sonstein
> Maybe you can find a VRML 1.0 to VRML 97 converter somewhere. FYI: CosmoPlayer was distributed with a "vrml1tovrml2.exe" program which can be found on the internetwork... if anyone needs to find it and cannot drop me a line and I'll poke around in my attic jeffs -- Jeff Sonstein, M.A. htt

Re: [JAVA3D] VRML97 Loader Can not read some VRML files

1999-12-16 Thread Stuart Fischer
Andy, If I-DEAS or Pro/E generate VRML 1.0 or other non-VRML97 compliant VRML, the VRML97 loader may not be able to parse them.. for example if there are "separator" nodes, they won't be understood. Maybe you can find a VRML 1.0 to VRML 97 converter somewhere. If I-DEAS or Pro/E generate VRML97

[JAVA3D] VRML97 Loader Can not read some VRML files

1999-12-16 Thread Andy Zhuang
I intsall VRML97 Loader (The Java3Dtm and VRML Working group). However, I can not read VRML file generated by I-DEAS or Pro/E (Both are famous Mechnical CAD software). For the samples come with VRML97Loader, there is no problme. Can anybody help me? Andy ___

Re: [JAVA3D] vrml97.jar

1999-12-07 Thread Stephan Haut
> I downloaded the file "vrml97.jar" and installed it in c:\jdk1.2\bin, but how can I use it? > Hi Pine Peng! Copy the vrml97.jar-File in the following directory: "c:\jdk1.2\jre\lib\ext\". I hope this helps! Greetings, Stephan Haut.

[JAVA3D] vrml97.jar

1999-12-07 Thread Pine Peng
I downloaded the file "vrml97.jar" and installed it in c:\jdk1.2\bin, but how can I use it? _ Ê×¶¼ÔÚÏß--ÏȽøÖйúÈ˵ÄÍøÉϼÒÔ° http://www.263.net Ãâ·ÑÓÊÏä ÓʼþÔÓÖ¾ Ç©ÃûÓʼþ Óʼþ¼ÓÃÜ Óʼþ×·Éíºô ËÑË÷ÒýÇæ ¸öÈËÕ¾µã ÔÚÏßÓÎÏ· ÍøÉÏÁÄÌì ÍøÉϹҺнðÈÚÍõ¹ú ÔÚÏßɱ

Re: [JAVA3D] VRML97 Startup Animation Bug -- Fixed

1999-12-06 Thread Rick Goldberg
ems Graphics Products - Computer Systems 901 San Antonio Road, MS UMPK27-302 Palo Alto, CA 94043-4900 650 786-0108 Direct 650 856-2114 Fax [EMAIL PROTECTED] > MIME-Version: 1.0 > Date: Fri, 3 Dec 1999 19:11:40 -0600 > From: giles <[EMAIL PROTECTED]> > Subject: [JAVA3D] VRML97 Sta

[JAVA3D] VRML97 Startup Animation Bug -- Fixed

1999-12-03 Thread giles
Seems that VRML animations have been starting when the world loads for awhile. I fixed it today. Attached is the new TimeSensor.java I don't think I broke anything else but I'm still testing. The bug was on line 235. A setActive event was being generated when is wasn't susposed too. I added