September 14th, 2001 05:39 AM
There is one more thing I found out in case of Orion App Server.
If you are trying on Orion, you should know that Orion server doesn't give error even if a method signature in descriptor is wrong...
December 8th, 2000 09:17 AM
Hi,
I am trying to expose some methods and attributes of applet for use in JavaScript. I am using Java plug-in right now.
I made a bean of the applet for this. I tried it with BDK, and it...
November 17th, 2000 12:05 PM
You will have to use 'object' and 'embed' instead of 'Applet' tag.
See appletviewer help in ur JDK1.2 documentation.
- UnicMan
http://members.tripod.com/unicman
November 17th, 2000 11:51 AM
Have u tried ServletExec from NewAtlanta?
I have used it. It has web UI for admin... u can admin from browser!
- UnicMan
http://members.tripod.com/unicman
October 17th, 2000 01:42 PM
Then it should work actually.
Just in case if you haven't checked-out this before... Please check CLASSPATH environment is set. If it is set, check if it has '\jdk1.2\jre\lib\rt.jar' included.
...
October 17th, 2000 09:14 AM
I tried with null as parent, its working in stop and destroy method.
- UnicMan
http://members.tripod.com/unicman
October 14th, 2000 05:43 AM
If you don't want DOS window when you run your application, use 'javaw.exe' for JDK1.2 or 'jre.exe' for JDK1.1
Hope this is what you want.
- UnicMan
http://members.tripod.com/unicman
October 14th, 2000 05:30 AM
Normally servlet engines reload the servlet if the servlet class is changed. Or at least they give UI to reload servlet (e.g. in ServletExec, there is HTML UI for this).
JSDK doesn't support this...
October 14th, 2000 05:25 AM
I had tried to show dialog box in stop method, and it was working when I ran that applet in browser.
I used JRE1.2 that time. And dialog box was confirmation dialog in JOptionPane.
You can try...
October 14th, 2000 05:23 AM
I had tried to show dialog box in stop method, and it was working when I ran that applet in browser.
I used JRE1.2 that time. And dialog box was confirmation dialog in JOptionPane.
- UnicMan...
October 14th, 2000 05:15 AM
are you using JDK1.2?
If yes, are you using 'applet' tag to load the applet?
If you are using JDK1.2, u should be using 'object' tag instead. You will get its help in JDK1.2 documentation (in...
October 14th, 2000 05:00 AM
Hi,
There is a documentation on java site for showing styled text in JTextComponent.
I learnt from there that I can put icons in JTextComponent using StyleConstants class.
And the icon gets...
October 2nd, 2000 01:33 PM
You can do such a thing directly. But you can have a query-string which will specify from where the servlet URL is called.
If you don't have control over HREF, then you may not be able to identify...
October 2nd, 2000 01:24 PM
Well.. if you are so keen on using swing in Java1.1 then you can use 'com.sun.java.swing' which used to ship for Java1.1.
Classes in Java2 might work, but you can't assure how much compatible they...
October 1st, 2000 04:25 PM
Well there is no direct support in Java for making JFrame modal. However using 'wait' and 'notify' in your sub-class of JFrame, you might be able to achieve that effect.
- UnicMan...
October 1st, 2000 04:24 PM
I don't think there is direct support for BMPs in Java.
But for GIFs, if you get data of a GIF "exactly same" as a byte array, you might be able to create Image object out of it. And use it in...
October 1st, 2000 04:21 PM
In java a method is never instantiated. What is instantiated is a class.
In case of servlets... normal servlet will be instantiated only ONCE. After that there will be different threads for each...
October 1st, 2000 04:15 PM
Well, basically OOP recommends to hide all the variables in a class, but I don't think its restriction. U can just declare public variable and access it from other classes.
But now consider the...
October 1st, 2000 04:03 PM
If you haven't implemented double-buffering, try implementing it. It gives remarkable effect.
- UnicMan
http://members.tripod.com/unicman
October 1st, 2000 03:59 PM
I had heard that dreamweaver IDE supports JSP development. You can try it.
- UnicMan
http://members.tripod.com/unicman
October 1st, 2000 03:57 PM
HTTP:
'HyperText Transfer Protocol' is used for normal communication for web. There exists language called HyperText Markup Language (HTML). The protocol was used to get these files from internet...
October 1st, 2000 03:47 PM
Main application of firewall is to separate intranet (LAN/WAN) from internet.
Firewall can be a computer or a hardware device.
Basically on internet there is a concept of IP address and port....
October 1st, 2000 03:38 PM
Well... I don't have sample code you asking for.
But you can have undo/redo feature in JTextArea.
See JDK1.3 documentation's javax.swing.JTextComponent. There is a link saying 'General rules...'....
October 1st, 2000 03:36 PM
By default typecasting works for last returned value...
If you try follwing, it should work...
<javacode>
if( ((CoefficientTerm)terms.firstElement()).isZero() ) {...do something..}...