Thanks everyone.

This is my first applet so I'm in a steep learning curve. My applet now
signed but now I'm having trouble with starting the proxy server on my
Linux boxes (FC5 & RHEL ES4) .

Any suggestions?

Thanks,

Jeff

Here is my java command

java -cp ./asjava_p.zip:./asjava.zip:/usr/lib/jvm/java/jre
asjava.uniproxy.UniProxyAdminClient -config=/opt/udproxy/uniproxy.config
-command=start -access_token=myPasswd
Starting proxy server...
Proxy server started.
[EMAIL PROTECTED] udproxy]#

It returns control to bash and it does not show up in the process table
(ps -ef | grep -in java). It also does not respond to connection
requests.

[EMAIL PROTECTED] udproxy]# java
-cp ./asjava_p.zip:./asjava.zip:/usr/lib/jvm/java/jre
asjava.uniproxy.UniProxyAdminClient -config=/opt/udproxy/uniproxy.config
-command=status -access_token=myPasswd 
Error: Invalid combination of -port, -config and -command.
Usage: UniProxyAdminClient -config=configPath -command=start
[-access_token=xxxxxx]
       UniProxyAdminClient -port=xxxxx -command=xxxxxx [-server=xxxxxx]
[-access_token=xxxxxx]
       UniProxyAdminClient -help

Currently supported commands are:
   start, suspend, restart, shutdown, shutdown:fast, reconfigure, status

[EMAIL PROTECTED] udproxy]# java
-cp ./asjava_p.zip:./asjava.zip:/usr/lib/jvm/java/jre
asjava.uniproxy.UniProxyAdminClient -port=31458 -command=status
-access_token=myPasswd
Connecting to proxy admin server.
java.net.ConnectException: Connection refused

[EMAIL PROTECTED] udproxy]# java
-cp ./asjava_p.zip:./asjava.zip:/usr/lib/jvm/java/jre
asjava.uniproxy.UniProxyAdminClient -port=31448 -command=status
-access_token=myPasswd
Connecting to proxy admin server.
java.net.ConnectException: Connection refused

uniproxy.config
PROXY_PORT=31448
ADMIN_PORT=31458
ADMIN_ACCESS_TOKEN=myPasswd
BUFFER_SIZE=4096
DEBUG_LEVEL=0
MAX_CONNECTIONS=75
MAX_MULTIPLEXED_SERVERS=12
NAME_LOG=testLog
PATH_LOG="/opt/udproxy/"
NETWORK_TIMEOUT=120000
ACCESS_TOKEN=myPasswd
ACCESS_TOKEN_SERVER=localhost
ACCESS_SERVER=localhost
ACCESS_SERVER=myUdServer

contents of /opt/udproxy
-rw-r--r-- 1 jpowell jpowell 32805 Nov 13  2002 asjava_p.zip
-rw-r--r-- 1 jpowell jpowell 93237 Nov 13  2002 asjava.zip
-rw-r--r-- 1 root    root      298 Jun 14 10:48 uniproxy.config



On Tue, 2006-06-13 at 17:20 -0700, John Hester wrote:

> An applet is a little bit of a different animal because it can't get out 
> of the java VM sandbox on the client machine.  The applet's only allowed 
> to connect back to the server that served it up, which is a problem if 
> the UV server you need data from is not the same box as your web server. 
>   You don't have this issue with server-side java since its code never 
> leaves home.  As for VB, well, let's just say its architects prioritized 
> convenience over security.
> 
> -John
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to