webaesthet

Greenhorn
+ Follow
since Mar 06, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by webaesthet

I think this is how it works:
Add classpath in the Manifest and change all your code to use <object>.getClass().getResourceAsStream() method, which can load a file from within a jar.
20 years ago
Wrong:
myprops.setProperty("http.proxyUserName",userid);
Right:
myprops.setProperty("http.proxyUser",userid);
407 is the proxy authentication error. Proxy is not getting the user name due to the above error. I do think proxyUserName is more appropriate, but like many other things proxyUser - a misnomer is used and people are too lazy to change it.
regards,
Selva.
21 years ago
Give the IP of the server as a parameter to admincleint.bat as:
c:> admincleint.bat 1.2.3.4, to access WAS remotely.
As far as I know, the only way to limit the number of administrators for WAS is by limiting the number of client distributions. WAS does not provide any in-built remote client access control. ( I may not be completely correct, please verify).
regards.
23 years ago