SqlCommand myCommand = new SqlCommand(strSql, myConnection);
SqlParameter paramUserID = new SqlParameter("@UserID", SqlDbType.NVarChar, 12);
paramUserID.Value = sLoginUserID;
myCommand.Parameters.Add(paramUserID);
myConnection.Open();
dataReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
while(dataReader!=null && dataReader.Read())
{
spwd = dataReader.GetString(2);
}
if( !spwd.Equals(sLoginPwd))
{
return false;
}
else
{
return true;
}
}
catch (Exception ex)
{
Error.Log(ex.Message.ToString());
return false;
}
finally
{
if(myConnection!=null)
myConnection.Close();
if(dataReader!=null)
dataReader.Close();
}
}
步驟2:在J2ME中引入Web服務。
在開始菜單中找到J2ME wireless Toolkit2.2中的UtilitIEs一項,點擊Stub Generator按鈕,在彈出的界面上輸入WSDL,例如:http://192.168.10.101/Service/MyServices.asmx?wsdl,注意一定要加wsdl.在outpath中填入你想將生成的訪問Web服務的代碼存放的目錄;Output Package中填入你的工程src的目錄,例如helloworld.WS是指src目錄下的子目錄helloworld下的目錄WS--如果編譯不通過,可以手工改。設定CLDC的版本1.0/1.1,建議用1.1的,支持浮點運算呢。點擊OK按鈕,就可以產生訪問Web服務的代碼了。將代碼copy或者本身就產生在自己的工程目錄中,刷新JB9的開發環境,新產生的代碼即可出現。保證編譯通過。
步驟3:使用Web服務。
修改你的MIDLet:
例如:
/** Service connector jax-rpc stub for connecting to server. */
private SalesServiceSoap_Stub service;//這裡寫你自己的服務,產生的java文件中有一個XXSoap_Stub.Java文件,其中XX就是你的Web服務名。
......
/** Initialize midlet data, service, parsers */
public void startApp() {
service = new SalesServiceSoap_Stub();//new一個實例
service._setProperty(SalesServiceSoap_Stub.SESSION_MAINTAIN_PROPERTY,
new Boolean(true));
......
注意下面這段代碼就使用Web服務的Login方法了!
public void commandAction(Command c, Item item) {
if (c == CMD_LOGIN) {
sLoginUserID = txtUserID.getString();
sLoginPwd = txtUserPwd.getString();
if (sLoginUserID.length() == 0) {
error("Input userid please!");
return;
}
if (sLoginPwd.length() == 0) {
error("Input passWord please!");
return;
}
//Call .Net XML WebServices
Thread t = new Thread() { //一定要新開線程,避免鎖定屏幕
public void run() {
try {
boolean loginResult = service.login(sLoginUserID, sLoginPwd); //Method:Login()
if (loginResult == false) {
error("You have no permission login.");
}
else {
display.setCurrent(MainForm);
}
}
catch (Exception e) {
if (!EXIT_STRING.equals(e.getMessage())) {
e.printStackTrace();
error("Connection problems.\n"
+ "Check your internet/proxy settings.");
}
}
}
};
t.start();
}
OK,到此,你就搞定了!
J2ME call the dotnet Web Services!
簡單吧!