Setting of System property through applet??..

2000-05-02 Thread Sabyasachi Gupta
Hi,   Setting of system property from within an applet gives java.lang.NoSuchMethodError: java/lang/System: method setProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; not found at ResolverApplet.init at com/ms/applet/AppletPanel.securedCall0 at com/ms/applet/AppletPanel.se

Downloading web pages

2000-05-02 Thread john
thanks to all who responded to my thread for "how to set the proxy server via the command line". The problem was that proxy port no was 8080. ok. but this brings me to another halt ... (sort of) I am have written a small program which goes and downloads a web page given its url. The download

Re: IBM-jdbc driver ...

2000-05-02 Thread Tom Williams
It should be. We've been using the 1.1.x driver that comes with UDB 5.x for a while now with the Java 1.2.2 plug-in for a while now. Peace Tom [EMAIL PROTECTED] on 05/01/2000 10:27:39 AM Please respond to [EMAIL PROTECTED] To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> cc:(bcc: Tom

Re: Loading .so file in java application on Linux

2000-05-02 Thread Juergen Kreileder
> Mo DeJong writes: Mo> Under Linux, you need to set the LD_LIBRARY_PATH to include Mo> the directory where libhello.so lives. Setting the system property java.library.path works too. But the library name has to be "libhello.so", "hello.so" will not work. Mo> On Tue, 2 May 2000

list of drivers registered with odbc

2000-05-02 Thread Nash'at Ahmad
Hi, Is there a way to get a list of all drivers registered with the odbc and/or register a driver with odbc using Java/JDBC. Thanks, Nash'at Nash'at Ahmad SAIC-Applied Physics Operation -- To UNSUBSCRIBE, email to [EMAIL

Re: Loading .so file in java application on Linux

2000-05-02 Thread Mo DeJong
Under Linux, you need to set the LD_LIBRARY_PATH to include the directory where libhello.so lives. Mo Dejong Red Hat Inc. On Tue, 2 May 2000, Boris wrote: > I have meet the question about java programming on linux platform. > I will load 'hello.so' file in hello.class in following statement: >

Re: Loading .so file in java application on Linux

2000-05-02 Thread John Rousseau
On Tuesday May 2, 2000, Boris wrote: > I have meet the question about java programming on linux platform. > I will load 'hello.so' file in hello.class in following statement: > static { > System.Loadlibrary("hello"): >} > but when run hello.class by typing 'java hello',system show the f

Re: how to set proxy via the command line

2000-05-02 Thread Christopher Hinds
Why is the proxyPort parm in those brackets? The command line should be: java -Dhttp.proxyHost=proxyhost  -Dhttp.proxyPort=9 URLReader where proxyHost is the host name or IP address of the proxy host            proxyPort is the port the the proxy is listening on Cheers Chris john wrote:

Re: Source Code of Web Browser for Linux

2000-05-02 Thread Christopher Hinds
How about mozilla.org ( AKA Netscape ).  The Source code is available via GPL and there is a linux version. Cheers Chris [EMAIL PROTECTED] wrote: Hi: Is there any source code of a Web browser for Linux available somewhere? It's even better if it's pure Java source code, so we can use it on d

Re: Source Code of Web Browser for Linux

2000-05-02 Thread Christopher Hinds
Opps , I made a mistake , ( Should not touch the keyboard before I've had at least one cup of coffee) . Mozilla ( AKA Netscape navigator ) is an opens-source browser available for download form www.mozilla.org. And yes Linux is a supported platform. Cheers Chris [EMAIL PROTECTED] wrote: Hi:

Loading .so file in java application on Linux

2000-05-02 Thread Boris
I have meet the question about java programming on linux platform. I will load 'hello.so' file in hello.class in following statement: static { System.Loadlibrary("hello"): } but when run hello.class by typing 'java hello',system show the following: Exception in thread "main" java.lang.Unsa

Re: Source Code of Web Browser for Linux

2000-05-02 Thread Stephan Michels
> Is there any source code of a Web browser for Linux available somewhere? > It's even better if it's pure Java source code, so we can use it on > different platform to get a consistent interface? Look at http://home.earthlink.net/~hheister/ or www.jazilla.org a Mozilla port in java. --