Problems connecting to GPRS with Pocket PC(hp ipaq) C#..

Hi Folks,

Does anyone know how to connect to and send messages or small files(xml) via GPRS using a pocket pc application(C#).

I am trying to develop a pocket pc application...that could perform this operation.

I have tried and successfully created and used a web service and a simple pocketpc app that connects to the service and get some info...and it works.

I have install the OpenNETCF framework and I am trying to connect...but no success.

Again, can anyone assist me with my problem above



Answer this question

Problems connecting to GPRS with Pocket PC(hp ipaq) C#..

  • Mohammed Aquil

    Please check if the following example helps:
    http://www.opennetcf.org/forums/topic.asp TOPIC_ID=6261

  • Little

    OK, But when i use the openNETCF.Connect() method and I check the connection status ().

    if(connectionMgr.Status == ConnectionStatus.Connected)

    {

    this.label2.Text= ConnectionStatus.Connected.ToString();

    }

    It never gets into this if statement,so I am guessing it isn't connected... or, maybe it does not automatically open the gprs connection.

    Do you have sample code using openNETCF in C#


  • Guido den Broeder

    In general your approach will do. You may send your mesages/xml files using a web service.
    If you need to open a GRPS connection run-time, please check the following post:
    http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=687338&SiteID=1


  • Problems connecting to GPRS with Pocket PC(hp ipaq) C#..