Soumendu Munshi

Greenhorn
+ Follow
since Jul 11, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Soumendu Munshi

What is the version of JDK U're using. I used JDK 1.4.1_02 with Jboss 3.2.1 and it worked perfectly well as-far-as ch1 is concerned.
PS- Did U change the JAVA_LIB as mentioned in CH1.

-Soumendu.
20 years ago
Did you try starting Jboss alone and then stopping it. If that works then you can try http://www.tusc.com.au they have a complete example using Lomboz 2.1.
20 years ago
All,
I am posting this as reference for others as they might get similar error.
I finally traced that the error was with wrong JVM in Eclipse 2.1 even though names are correct. I had to explictly change JRE_LIB variable and point to JDK 1.4_02 while working with Lomboz.
-Soumendu
20 years ago
Hi All,
I am looking if anybody in this forum had any difficulty in following Lomboz tutorial at www.tusc.com.au.
Actually I tried to follow the example and got following error message in console-
================================================================
Java Model Exception: Java Model Status [Cannot nest 'TestLomboz2/j2src' inside 'TestLomboz2'. To enable the nesting exclude 'j2src/' from 'TestLomboz2'.]
at org.eclipse.jdt.internal.core.JavaModelOperation.execute(JavaModelOperation.java:367)
at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:684)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
at org.eclipse.jdt.internal.core.JavaElement.runOperation(JavaElement.java:543)
at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2159)
at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2175)
at com.objectlearn.jdt.j2ee.Util.addSourceFolder(Util.java:430)
at com.objectlearn.jdt.j2ee.Util.createSourceFolder(Util.java:404)
at com.objectlearn.jdt.j2ee.templates.ModuleCreater.createWebModules(ModuleCreater.java:193)
at com.objectlearn.jdt.j2ee.templates.ModuleCreater.createModules(ModuleCreater.java:152)
at com.objectlearn.jdt.j2ee.ui.wizards.WizardInsertModulePage.createModules(WizardInsertModulePage.java:166)
at com.objectlearn.jdt.j2ee.ui.wizards.J2EEProjectWizard.performFinish(J2EEProjectWizard.java:145)
at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:608)
at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:321)
at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
...
==============================================================
My environment is- SuSe Linux 8.2 (Kernel 2.4.20), JDK 1.4_02 and JBoss 3.2.1 with embeded Tomcat 4.1.24.
Can somebody help me out please.
Thanks,
Soumendu.
20 years ago
Try with copying or appending the same Tnsnames.ora (which works) to other workstation. This MIGHT be due to not defining instance name properly also try this if above method doesn't work to check if connect string is correct and able to connect oracle server.
tnsping <oracle instance name>
Soum.
22 years ago
Hi there,
I think there should be some setting option in browser to cache page- make that equal 0. For e;g in IE Tools->Internet Option->clear history & Temporary internet file. Try with this for the default browser and let us know if it works.
Cheers.,
Soumendu
24 years ago
There is a very good example of this at Java.sun.com site when try to locate Java user groups. Basically that applet has links to some other web page.
So in your case I hope if you have pointer/hyperlink to some other page it would go there.
cheers,
Soum
24 years ago
I belive this happens because browser keeps cashe of the page you view. So you need to flush all the cashe pages of browser.
Reply if this helps
Regds,
Soumendu
24 years ago
You can also do it like
c:\mywork> javac -classpath c:\ moha
I hope this should work.
Regds,
Soum
24 years ago
Hi Sudha,
YOu have to think in waht way you want to develop mock exam. Will question be dynamic- say from a bunch of 200 question you randomly pick 50 or so and further depending how fool proof you want system to be. I think JSP - Bean method would be good and simple.
Thanks
Soum
24 years ago
Thanks to Jim and Carl. It seems Jim way is good if problem is less complicated which I had implemented. But Carl you pointed to good site, I am looking at there source code too.
Thanks,
Soumendu
24 years ago
Hi There, Is there any way to use wild character in String search. For e;g
Here e is of Enumeration type
if ( (e.nextElement().toString()).equalsIgnoreCase("eFitter12?"))
{
System.out.println(e.nextElement().toString());
}
I want to do some kind pattern search for all element in Enumeration e which starts with eFitter12?. '?' being a wild card.
Regds,
Soum
24 years ago