ログインフォームのAndroidアプリケーションを開発しました。ここで、パスワードを忘れた場合のフィールドを実装する必要があります。その忘れたパスワードをクリックするとtextview
、次のアクティビティに進みます。
次のアクティビティは、ユーザーから電子メールを取得し、soap を呼び出している mysql データベースからの検証をチェックしますwebservices
。
上記の部分を行いました。
今、私は以下の部分を実装する必要があります:
電子メールが有効であることは、mysql データベースからパスワードを取得し、これらのパスワードを有効な電子メールに送信することを意味します。
この部分を Java Web サービス コードに実装するにはどうすればよいですか。解決策を教えてください。
これは、電子メールが有効か無効かを確認するための私の Java Web サービス コードです。
public class Checkemail {
public String authentication(String Email){
String retrievedUserName = "";
String status = "";
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/xcart-432pro","root","");
PreparedStatement statement = con.prepareStatement("SELECT * FROM xcart_customers WHERE email = '"+Email+"'");
ResultSet result = statement.executeQuery();
while(result.next()){
retrievedUserName = result.getString("email");
}
if(retrievedUserName.equals(Email)){
status = "Valid Email";
}
else{
status = "Invalid Email!!!";
}
}
catch(Exception e){
e.printStackTrace();
}
return status;
}
}
これは私のアンドロイドコードです:
public class Login extends Activity {
private final String NAMESPACE = "http://xcart.com";
private final String URL = "http://10.0.0.75:8080/XcartLogin/services/Checkemail?wsdl";
private final String SOAP_ACTION = "http://xcart.com/authentication";
private final String METHOD_NAME = "authentication";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
Button login = (Button) findViewById(R.id.btn_login);
login.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
loginAction();
}
});
}
private void loginAction(){
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
EditText Email = (EditText) findViewById(R.id.tf_userName);
String email = Email.getText().toString();
//Pass value for userName variable of the web service
PropertyInfo unameProp =new PropertyInfo();
unameProp.setName("Email");//Define the variable name in the web service method
unameProp.setValue(email);//set value for userName variable
unameProp.setType(String.class);//Define the type of the variable
request.addProperty(unameProp);//Pass properties to the variable
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
try{
androidHttpTransport.call(SOAP_ACTION, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
String status = response.toString();
TextView result = (TextView) findViewById(R.id.tv_status);
result.setText(response.toString());
}
catch(Exception e){
}
}
}
Java Webサービスコードでパスワードを取得して電子メールに送信するにはどうすればよいですか?