Rethish Varma

Greenhorn
+ Follow
since Sep 25, 2009
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 Rethish Varma

Rethish VarmaHi,
I am having a web application and I want it to be accessible to all who are using internet when they click on a specific link in our companies products page.The application is running in Apache Tomcat 6.0 server and our company uses IIS to host the companies domain.Now this application is also deployed on the same machine and we have given the same ip and this application is not opening up while clicking on the link.instead it says error,timed out!

Is it possible to run the website and application server both on same computer and share the same IP.

Please tell me how can I make this accessible to others(remotely).
14 years ago
Hi,

I am doing a project for academic software and I am facing this problem,I want to insert rollno,name,subjectmarks,division ito a table if the values are not present already and if present then I have to update it.I tried the way given below.I am getting values from an excel sheet.But with this code If I press submit then the value if present also it is inserting again,not checking whether present and not updating ,If I change the subject then it should get updated not inserted,suggest me a solution,

Please send some example coding to do this.

for (int row = 1; row < numberOfRows; row ++ )
{
rollno=sheet.getCell(0,row).getContents().trim();
names=sheet.getCell(1,row).getContents().trim();
marks=sheet.getCell(4,row).getContents().trim();

rs1=stmt.executeQuery("select * from s_"+clas+"_dtl where rollno="+rollno+" and name='"+names+"' and division='"+div+"' and term='"+term+"';");
if(!rs1.next())
{
query1="insert into s_"+clas+"_dtl(rollno,name,division,"+subname1+") values("+rollno+",'"+names+"','"+div+"',"+marks+");";
stmt.executeUpdate(query1);
}
else
{
stmt.executeUpdate("Update s_"+clas+"_dtl set "+subname1+"='"+marks+"' where rollno="+rollno+" and name='"+names+"'and division='"+div+"';");

}System.out.println("+++++++++++++++++++Query:"+query1);

}
Hello everyone,

We have developed a web based software for schools,an online school management software with mobile interface.We have completed it,its in STRUTS.

Now we want to make a cd version of it and want it in such a way that on clicking next,next like naturally we give for installations, we want to install Tomcat 6.0, MySql 5.0 completely into C:. Not like copying Tomcat folder into C,it has to install Tomcat and it should install as a service so that it starts automatically on windows startup. Similarly for MySql. Please any one tell me how can we achieve this with suitable coding samples.
14 years ago


Hi,
I am going to start a new work ie on building a java bulk mailer,I already run a demo and its working.I want to know how we can add spam filtering rules and other standard set of rules and protocols to my mailer so that the outgoing mail will not be treated as spam by spam filters.

I know this filtering does not apply if I am developing only a bulk mailer,but ....If any one please help me on this?

Also how to check whether an email id is valid or not?
14 years ago