Have you installed JRE in your system? For the Left pane console,This is must. You can check, whether the JRE is enabled for this browser by going to 'Tools' option of browser and under that 'sun java console' option.
If you dont see this. Then JRE is not enabled for that Browser. For that - Go to control panel - Open the 'java plug-in' - Go to the 'browser' tab. - Check, whether your browser has been selected or not. - If not, enable the browser.
I have one query related to non buildin datatype in webservice. I use user defined exception in my webservice. when i use the error code and error message in the webservice it is working fine for me. When i tried with only the error message it is not working for me. Is that necessary for us to give both error code and message?
I have a doubt, in user defined exception. Is that necessary in the user defined exception, that we should have both the error code and error message as attributes? Or can we have only the error message as attribute?
For ejb you have to deploy your application as EAR file. This ear file will contain 'xml' fils and class files. You can do this in two ways one is using the WEBLOGIC BUILDER tool. This the simpler one because it writes the xml file on its own.
1. Compile the java files. 2. Open the Builder tool. and open the root directory of the ejb file. 3. on right side u will have General and Classes tab. Enter the details needed. 4. save that file now you can see the xml files created. 5. in command prompt jar cvf firstejb.jar *.class META-INF now jar will have created. 6. use this command to create deployable file. java weblogic.ejbc firstejb.jar firstejb_dep.jar 7. Copy the firstejb_dep.jar into the application folder of your server. application folder is in weblogic\server\bin\application.
We have a HTML page(one.html). In that we have 2 textfields. now i have to pass the value in the textfields to applet which in the another HTML page(two.html). Can i send the value from the HTML to applet?