Ragesh Menon

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

Recent posts by Ragesh Menon

Hi,

Through Web Server's of coz.
Ragesh
22 years ago
Hi Jasdev,
All you have to do is to write to the content you want to display on to the browser with HTML tags to a file and name it with .html extenstion.
Runtime.getRuntime.exec("c:\program files\plus!\microsoft internet\IEXPLORER.exe filename.html");
This should trigger a brower with I.E and loads the file.
I Hope I have solved your problem

------------------
23 years ago
This is the best Way I can think off, if U want all the methods to be executed what ever the case may be..
Simply
Catch the exception.. Ignore it...

private void go()
{
try
{
method1();
}
catch(Exception ignore1)
{
System.out.println("Exception in Method1"+e)
System.out.println("Continuing with Method2");
}
try
{
method2();
}
catch(Exception ignore2)
{
System.out.println("Exception in Method2"+e)
System.out.println("Continuing with Method3");
}
try
{
method3();
}
catch(Exception ignore3)
{
System.out.println("Exception in Method3"+e)
System.out.println("Continuing with Method4");
}
try
{
method4();
}
catch(Exception ignore4)
{
System.out.println("Exception in Method4"+e)
System.out.println("Continuing ...");
}
}

------------------
23 years ago
Hi All,
Does any one have any idea as to how a asp application be invoked with Iplanet(4.1) as web server.
Thanks in advance
Ragesh
------------------
23 years ago
Hi All,
Does any one have any idea as to how a asp application be invoked with Iplanet(4.1) as web server.
Thanks in advance
Ragesh
------------------
23 years ago
Hi All,
I am currently into a project which requires me to integrate Crystal Reports(8.0) with JSP pages. Please if somebody can help!!!..
I am able to call a rpt file from jsp but the problem is that this doesn't work in other machines than the server where it was installed
Thanks in Advance
------------------
23 years ago