sathish gopal

Greenhorn
+ Follow
since Dec 30, 2000
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 sathish gopal

Hi,

I would like to join Ikasan Enterprise Integration Platform project.

Please do let me know what to be done for this.
14 years ago
Hi all,

I'm trying to deploy my application in a clustered Weblogic environment.

I've two different physical machine A and B. Each machine will be hosting a weblogic server instance(Server A, Server B) that belongs to the same cluster(say ClusterTest)

Machine A will also have the admin server.

How do i create the Server instance B that physically reside on Machine B and belongs the same domain.

How do i do this? Any help will be great.
14 years ago
I have list object. i want to get all the elements from them.
i used a method add(int index) to get all the elements from them.
When i carefully looked at the API there is Interface called Iterator which can also be used to get elements out from the list.
Which is the best and efficient way..
I am using JDK 1.4.2
18 years ago
I have just downloaded MYSQL database and it's jdbc enabled driver. I want to use it in my programm.
All along I have been using Type 1 Driver(odbc,Database:MSAccess)
please explain me in this regard using some code.
I was unable to find out my smtpserver because outlookExpress was not configured.
IS there any other way to find out my smtpserver
22 years ago
I am connected to the internet through LAN.I am unable to get the name of my smtp server from my system administrator.

Is there any way in knowing my smtpserver.Please help me out urgently
22 years ago
Hi folks
I didnot mention the kind of run time error it is throwing..
The error is
java.lang.NullPointerException
22 years ago

Hi folks
I would like to draw an image(GIF or JPEG) on to Frame Windows.I didnot find any method in the java API.
But I did find a method to drawImage in applet.
Know my Idea is draw the required image on the Applet and then add the Applet to the Frame Window.
I thought this will work but to my annoyance it didnot
Help in this regard
Following is the code
import java.awt.*;
import java.applet.*;
//<applet code=demo width=500 height=500></applet>
public class demo extends Applet{
public Image im;
public void init(){
try{
im=getImage(getCodeBase(),"some.gif");

}catch(Exception e){System.out.println(e);}

}
public void start()
{
repaint();
}
public void paint(Graphics g)
{
try{

g.drawImage(im,25,25,this);
}
catch(Exception e){System.out.println(e);}
}
public static void main(String args[])
{
Frame f=new Frame();
Applet app =new demo();
app.init();
app.start();
f.add(app);
f.setSize(500,500);
f.setVisible(true);
}
}
Thank u in advance

22 years ago

I am starter to java mail api..
In one of the sample program given in book
they have used an import statement(i.e)
import sun.net.smtp.smtpClient.*;
when i compile this i get compilation error..
I was unable to find this package in my Version of java(jdk1.2)..
Thank u in advance
22 years ago

can some specify the URL for downloading(free) jdk1.2 for linux operating system
22 years ago
Hey vikas de Please check out the package java.awt.print(jdk1.2 or higher).I think this will help u.
22 years ago
I have tried that to it didn't make any difference.
Please suggest some other methods.Expecting u r Reply soon...
22 years ago

I have done a small servlet programe which connects with the database.After compiling the source code,I have copied my *.class File to the Servlet Directory(i.e c:\javawebserver2.0\servlet\*.class).when I invoke my Servlet in browser(http://localhost:8080/servlet/*.class some arguments)
I get an Error(404)saying unable to find the specified URL.
Please help me out

Thanks in Advance...........

22 years ago
I have Created a Menu Called File.I have added new,open,save to
Menu File.Now I Want to Set Keyboard Shortcut For Menu File
(for example Alt+F Should Open File Menu and Pressing 'O' Should Open A new File .Like ShortCuts in DOSEditor and notepad)

Thank u in Advance
23 years ago