PC Review Forums Newsgroups Microsoft DotNet Microsoft Dot NET Compact Framework Data exchange over wireless (best practice)

Reply

Data exchange over wireless (best practice)

 
Thread Tools Rate Thread
Old 15-01-2006, 04:07 PM   #1
=?Utf-8?B?U21pbGphbg==?=
Guest
 
Posts: n/a
Default Data exchange over wireless (best practice)


Hi all!

I'm a developer now for some years, but I've just started to develope for
mobile devices. My problem is that I need to develope program for PocketPC
(Win CE) that would read a barcode and the send the data over wireless to
database server.
I know how to read a barcode but I need some insight in what best practices
are to exchange data with database server.
I currently have a web-service on IIS that comunicates with database and has
two methods exspoded (GETdata and UPDATEdata) that are visible to other
aplicatons. This data is sent over the LAN in dataSet object (not string
etc.) - the problem now is that Mobile devices project in VS2003 (C#) has no
data-set object so I can not call those rwo methods on web-server.

Again, please if anybody would be so kind and explain how are this kind of
projects/problems handled. Any kind of info would help.

Thanks and best regards,
Smiljan

  Reply With Quote
Old 16-01-2006, 02:11 AM   #2
=?Utf-8?B?V2luc3Rvbg==?=
Guest
 
Posts: n/a
Default RE: Data exchange over wireless (best practice)

Hi Smiljan,

Compact Framework 2.0 should support typed Datasets and CF1.0 untyped
Datasets.

Your approach in using a webservice should fine. You should also consider
making allowances for offline processing and possibly storing your data in a
SQLCE database or in a XML file.

When the user is connected successfully, any new data to send to the server
can then be picked up from the database and sent through the Web service. It
provides better usability this way.

There should be lots of articles on the internet that discusses these
fundamental approaches...

Regards,
Winston
www.Augen.co.nz


"Smiljan" wrote:

> Hi all!
>
> I'm a developer now for some years, but I've just started to develope for
> mobile devices. My problem is that I need to develope program for PocketPC
> (Win CE) that would read a barcode and the send the data over wireless to
> database server.
> I know how to read a barcode but I need some insight in what best practices
> are to exchange data with database server.
> I currently have a web-service on IIS that comunicates with database and has
> two methods exspoded (GETdata and UPDATEdata) that are visible to other
> aplicatons. This data is sent over the LAN in dataSet object (not string
> etc.) - the problem now is that Mobile devices project in VS2003 (C#) has no
> data-set object so I can not call those rwo methods on web-server.
>
> Again, please if anybody would be so kind and explain how are this kind of
> projects/problems handled. Any kind of info would help.
>
> Thanks and best regards,
> Smiljan
>

  Reply With Quote
Old 16-01-2006, 08:20 AM   #3
=?Utf-8?B?U21pbGphbg==?=
Guest
 
Posts: n/a
Default RE: Data exchange over wireless (best practice)

Hi Winston!

Your reply realy helped me. Thanks.
I'll try all that you wrote. I would be very happy if you could send me any
kind of link where this aproces are documented on the internet.

Thanks again and best regards,

Smiljan


"Winston" wrote:

> Hi Smiljan,
>
> Compact Framework 2.0 should support typed Datasets and CF1.0 untyped
> Datasets.
>
> Your approach in using a webservice should fine. You should also consider
> making allowances for offline processing and possibly storing your data in a
> SQLCE database or in a XML file.
>
> When the user is connected successfully, any new data to send to the server
> can then be picked up from the database and sent through the Web service. It
> provides better usability this way.
>
> There should be lots of articles on the internet that discusses these
> fundamental approaches...
>
> Regards,
> Winston
> www.Augen.co.nz
>
>
> "Smiljan" wrote:
>
> > Hi all!
> >
> > I'm a developer now for some years, but I've just started to develope for
> > mobile devices. My problem is that I need to develope program for PocketPC
> > (Win CE) that would read a barcode and the send the data over wireless to
> > database server.
> > I know how to read a barcode but I need some insight in what best practices
> > are to exchange data with database server.
> > I currently have a web-service on IIS that comunicates with database and has
> > two methods exspoded (GETdata and UPDATEdata) that are visible to other
> > aplicatons. This data is sent over the LAN in dataSet object (not string
> > etc.) - the problem now is that Mobile devices project in VS2003 (C#) has no
> > data-set object so I can not call those rwo methods on web-server.
> >
> > Again, please if anybody would be so kind and explain how are this kind of
> > projects/problems handled. Any kind of info would help.
> >
> > Thanks and best regards,
> > Smiljan
> >

  Reply With Quote
Old 16-01-2006, 03:08 PM   #4
Simon Hart
Guest
 
Posts: n/a
Default Re: Data exchange over wireless (best practice)

See if these help:
http://forums.microsoft.com/MSDN/Sh...ID=152&SiteID=1
http://msdn.microsoft.com/mobility/...le/default.aspx


"Smiljan" <Smiljan@discussions.microsoft.com> wrote in message
news:4FC61882-7F82-41EB-9162-4D9903FA37A3@microsoft.com...
> Hi Winston!
>
> Your reply realy helped me. Thanks.
> I'll try all that you wrote. I would be very happy if you could send me
> any
> kind of link where this aproces are documented on the internet.
>
> Thanks again and best regards,
>
> Smiljan
>
>
> "Winston" wrote:
>
>> Hi Smiljan,
>>
>> Compact Framework 2.0 should support typed Datasets and CF1.0 untyped
>> Datasets.
>>
>> Your approach in using a webservice should fine. You should also consider
>> making allowances for offline processing and possibly storing your data
>> in a
>> SQLCE database or in a XML file.
>>
>> When the user is connected successfully, any new data to send to the
>> server
>> can then be picked up from the database and sent through the Web service.
>> It
>> provides better usability this way.
>>
>> There should be lots of articles on the internet that discusses these
>> fundamental approaches...
>>
>> Regards,
>> Winston
>> www.Augen.co.nz
>>
>>
>> "Smiljan" wrote:
>>
>> > Hi all!
>> >
>> > I'm a developer now for some years, but I've just started to develope
>> > for
>> > mobile devices. My problem is that I need to develope program for
>> > PocketPC
>> > (Win CE) that would read a barcode and the send the data over wireless
>> > to
>> > database server.
>> > I know how to read a barcode but I need some insight in what best
>> > practices
>> > are to exchange data with database server.
>> > I currently have a web-service on IIS that comunicates with database
>> > and has
>> > two methods exspoded (GETdata and UPDATEdata) that are visible to other
>> > aplicatons. This data is sent over the LAN in dataSet object (not
>> > string
>> > etc.) - the problem now is that Mobile devices project in VS2003 (C#)
>> > has no
>> > data-set object so I can not call those rwo methods on web-server.
>> >
>> > Again, please if anybody would be so kind and explain how are this kind
>> > of
>> > projects/problems handled. Any kind of info would help.
>> >
>> > Thanks and best regards,
>> > Smiljan
>> >



  Reply With Quote
Old 17-01-2006, 06:59 AM   #5
=?Utf-8?B?U21pbGphbg==?=
Guest
 
Posts: n/a
Default Re: Data exchange over wireless (best practice)

Thanks to all.
Helped a lot.

Smiljan


"Simon Hart" wrote:

> See if these help:
> http://forums.microsoft.com/MSDN/Sh...ID=152&SiteID=1
> http://msdn.microsoft.com/mobility/...le/default.aspx
>
>
> "Smiljan" <Smiljan@discussions.microsoft.com> wrote in message
> news:4FC61882-7F82-41EB-9162-4D9903FA37A3@microsoft.com...
> > Hi Winston!
> >
> > Your reply realy helped me. Thanks.
> > I'll try all that you wrote. I would be very happy if you could send me
> > any
> > kind of link where this aproces are documented on the internet.
> >
> > Thanks again and best regards,
> >
> > Smiljan
> >
> >
> > "Winston" wrote:
> >
> >> Hi Smiljan,
> >>
> >> Compact Framework 2.0 should support typed Datasets and CF1.0 untyped
> >> Datasets.
> >>
> >> Your approach in using a webservice should fine. You should also consider
> >> making allowances for offline processing and possibly storing your data
> >> in a
> >> SQLCE database or in a XML file.
> >>
> >> When the user is connected successfully, any new data to send to the
> >> server
> >> can then be picked up from the database and sent through the Web service.
> >> It
> >> provides better usability this way.
> >>
> >> There should be lots of articles on the internet that discusses these
> >> fundamental approaches...
> >>
> >> Regards,
> >> Winston
> >> www.Augen.co.nz
> >>
> >>
> >> "Smiljan" wrote:
> >>
> >> > Hi all!
> >> >
> >> > I'm a developer now for some years, but I've just started to develope
> >> > for
> >> > mobile devices. My problem is that I need to develope program for
> >> > PocketPC
> >> > (Win CE) that would read a barcode and the send the data over wireless
> >> > to
> >> > database server.
> >> > I know how to read a barcode but I need some insight in what best
> >> > practices
> >> > are to exchange data with database server.
> >> > I currently have a web-service on IIS that comunicates with database
> >> > and has
> >> > two methods exspoded (GETdata and UPDATEdata) that are visible to other
> >> > aplicatons. This data is sent over the LAN in dataSet object (not
> >> > string
> >> > etc.) - the problem now is that Mobile devices project in VS2003 (C#)
> >> > has no
> >> > data-set object so I can not call those rwo methods on web-server.
> >> >
> >> > Again, please if anybody would be so kind and explain how are this kind
> >> > of
> >> > projects/problems handled. Any kind of info would help.
> >> >
> >> > Thanks and best regards,
> >> > Smiljan
> >> >

>
>
>

  Reply With Quote
Old 18-01-2006, 03:28 AM   #6
=?Utf-8?B?V2luc3Rvbg==?=
Guest
 
Posts: n/a
Default RE: Data exchange over wireless (best practice)

This is a good link from the MSDN website. There are plenty more if you
search for them on their website.

http://msdn.microsoft.com/library/d...l/netcfperf.asp

Regards,
Winston
-----------
Augen NZ Limited
www.Augen.co.nz

"Smiljan" wrote:

> Hi Winston!
>
> Your reply realy helped me. Thanks.
> I'll try all that you wrote. I would be very happy if you could send me any
> kind of link where this aproces are documented on the internet.
>
> Thanks again and best regards,
>
> Smiljan
>
>
> "Winston" wrote:
>
> > Hi Smiljan,
> >
> > Compact Framework 2.0 should support typed Datasets and CF1.0 untyped
> > Datasets.
> >
> > Your approach in using a webservice should fine. You should also consider
> > making allowances for offline processing and possibly storing your data in a
> > SQLCE database or in a XML file.
> >
> > When the user is connected successfully, any new data to send to the server
> > can then be picked up from the database and sent through the Web service. It
> > provides better usability this way.
> >
> > There should be lots of articles on the internet that discusses these
> > fundamental approaches...
> >
> > Regards,
> > Winston
> > www.Augen.co.nz
> >
> >
> > "Smiljan" wrote:
> >
> > > Hi all!
> > >
> > > I'm a developer now for some years, but I've just started to develope for
> > > mobile devices. My problem is that I need to develope program for PocketPC
> > > (Win CE) that would read a barcode and the send the data over wireless to
> > > database server.
> > > I know how to read a barcode but I need some insight in what best practices
> > > are to exchange data with database server.
> > > I currently have a web-service on IIS that comunicates with database and has
> > > two methods exspoded (GETdata and UPDATEdata) that are visible to other
> > > aplicatons. This data is sent over the LAN in dataSet object (not string
> > > etc.) - the problem now is that Mobile devices project in VS2003 (C#) has no
> > > data-set object so I can not call those rwo methods on web-server.
> > >
> > > Again, please if anybody would be so kind and explain how are this kind of
> > > projects/problems handled. Any kind of info would help.
> > >
> > > Thanks and best regards,
> > > Smiljan
> > >

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off