Parthiban Thangaraju

Greenhorn
+ Follow
since Oct 16, 2012
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 Parthiban Thangaraju

Thanks Jeanne. While installing perl, what are the modules has to be activated and also how to activate mail option. kindly can yo explain me on these two things.
11 years ago
Dear Friends,

Can any one explain the step by step bugzilla installation guide for windows system.

Thanks in Advance
Parthiban Thangaraju
11 years ago
Thanks Jeanne
11 years ago
Hi Friends,

I am working in manual testing. Now started to learn automation testing. Kindly help me, Is there any tool available to test java web and mobile application using java and javascript. Kindly specify me the available tools.

Thanks in advance
Parthiban Thangaraju
11 years ago
Dear Friends,

I am facing a problem in validation the form. form is not validated. Kindly any one help me to solve this problem

login action

package com.vaannila.action;

import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.vaannila.model.Login;
public class LoginAction extends ActionSupport implements ModelDriven {

Login login=new Login();

public String execute() {

return SUCCESS;
}

public Object getModel(){
return login;
}
}

login

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.vaannila.model;

import com.opensymphony.xwork2.ActionSupport;

/**
*
* @author Meyyappan Muthuraman
*/
public class Login implements java.io.Serializable {

private String userName;
private String password;

public Login() {
}



/**
* @return the userName
*/
public String getUserName() {
return userName;
}

/**
* @param userName the userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}

/**
* @return the password
*/
public String getPassword() {
return password;
}

/**
* @param password the password to set
*/
public void setPassword(String password) {
this.password = password;
}
}

login.jsp

<%--
Document : index
Created on : Feb 28, 2009, 9:45:01 AM
Author : Meyyappan Muthuraman
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@taglib uri="/struts-tags" prefix="s" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Login Page</title>
<s:head />
</head>
<body>
<s:actionerror/>
<s:form action="LoginAction">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Login" />
</s:form>
</body>
</html>

validation.xml

<!DOCTYPE validators PUBLIC "-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
<validators>
<field name="userName">
<field-validator type="requiredstring">
<message>User Name is required.</message>
</field-validator>
</field>
<field name="password">
<field-validator type="requiredstring">
<message key="password.required" />
</field-validator>
</field>
</validators>

struts.xml

<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
<!-- Configuration for the default package. -->
<package name="default" extends="struts-default">
<action name="LoginAction" class="com.vaannila.action.LoginAction">
<result name="input">/login.jsp</result>
<result name="success">/success.jsp</result>
</action>
</package>
</struts>
11 years ago
Dear Friends,

How to implement struts2 validation in Struts2+hibernate integration application. Kindly help me.

Thanks in Advance,
Parthiban Thangaraju
11 years ago
any example for strut2 tiles with hibernate
11 years ago
Dear All,

Is there any automation tool available to test lwuit mobile application, if any kindly share me the details.


Thanks in advance
parthiban thangfaraju
11 years ago

Parthiban Thangaraju wrote:

Joe Ess wrote:Sounds like you want the Static Maps API. You just have to get your custom values into the map link, which should be simple with JSP variables.



Thanks Joe Ess, i will con back if there are any doubts while implementing...



Joe Ess,

How to add the map dynamically...
11 years ago

Joe Ess wrote:Sounds like you want the Static Maps API. You just have to get your custom values into the map link, which should be simple with JSP variables.



Thanks Joe Ess, i will con back if there are any doubts while implementing...

11 years ago
Dear Friends,

I have to show the google map in application, the map will be inserted by the admin by choosing the place, users can only view the map. Can any one help me how to design the scenario.

Thanks in advance,
Parthiban thangaraju
11 years ago