Pocket PC access to Web Service

Source: Internet
Author: User

The resources of handheld devices are limited. Therefore, in applications, you often need to use WEB services to implement relevant business functions. The functions are displayed only on the terminal. Two projects need to be developed: a PDA program, a web service Program, and the webservice program to implement related business functions. The interface is drawn on the PDA program to display the processing results.

Add a web reference to the PDA program. The reference is as follows:

 

 

The code for the corresponding call is as follows:

[Csharp]
WebReference. SulfService ws = new DeviceApplication1.WebReference. SuService ();

Try
{
Using (DataSet ds = ws. GetSuInfo ())
{
Int length = ds. Tables [0]. Rows. Count;
 

DataGrid1.DataSource = ds. Tables [0];
DataGrid1.Refresh ();

}
}
Catch (Exception ex)
{
MessageBox. Show ("the network is disconnected. Please check! "," Prompt ", MessageBoxButtons. OK, MessageBoxIcon. Exclamation, MessageBoxDefaultButton. Button1 );
}
WebReference. SulfService ws = new DeviceApplication1.WebReference. SuService ();

Try
{
Using (DataSet ds = ws. GetSuInfo ())
{
Int length = ds. Tables [0]. Rows. Count;


DataGrid1.DataSource = ds. Tables [0];
DataGrid1.Refresh ();

}
}
Catch (Exception ex)
{
MessageBox. Show ("the network is disconnected. Please check! "," Prompt ", MessageBoxButtons. OK, MessageBoxIcon. Exclamation, MessageBoxDefaultButton. Button1 );
}
The following code is displayed on the gun after the call:

 

From # Define
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.