Showing results for NetCF - Developer Support

Sep 30, 2008
0
0

GZip encoder for Compact WCF

Andrew Arnott
Andrew Arnott

The GZip encoder is not included in NetCF as it is on the desktop WCF, but it isn't hard to build yourself and in fact we have released a sample of exactly how to add your own GZip encoder to NetCF: http://go.microsoft.com/fwlink/?LinkId=108652 So many people have asked me for it lately I thought I'd better just post the link.  Have fun...

andarno.NETMobile devices
Feb 4, 2008
0
0

Write a NetCF app that provisions your device from your device

Andrew Arnott
Andrew Arnott

My first post in the provisioning series introduced what provisioning of your Windows Mobile device means and the basics of why you would want to do it.  In future posts I'll give some concrete examples of XML that accomplish a few common tasks.  But what good are XML examples if you can't try them out on your device or emulator?  It...

andarnoMobile devicesNetCF
Jan 23, 2008
0
0

XmlSerializer compatibility between NetCF and the desktop

Andrew Arnott
Andrew Arnott

The XmlSerializer found in the .NET Compact Framework has a very different implementation than the one found in the full .NET Framework.  The reasons for the differences include size and performance constraints that make the desktop's XmlSerializer inappropriate for devices.  As a result of the different implementation, there are ...

andarnoMobile devicesNetCF
Jan 18, 2008
0
0

Using the XmlSerializer as an XmlObjectSerializer with WCF

Andrew Arnott
Andrew Arnott

The Windows Communication Foundation introduced the new DataContractSerializer to replace the XmlSerializer in many scenarios.  The DataContractSerializer is faster than the XmlSerializer, but has certain limitations.  For example it does not support serializing an object's members as XML attributes.  When you write a WCF client that calls a ...

andarnoMobile devicesNetCF
Dec 10, 2007
0
0

.NET Compact Framework 3.5 Power Toys RTW

Andrew Arnott
Andrew Arnott

The .NET Compact Framework 3.5 Power Toys have been released.  You can download them from here.Tools included in this package: Remote Performance Monitor and GC Heap Viewer – Provides real time counter data (ranging from Garbage Collector activity to type loading info) on a running NETCF application. The GC Heap Viewer feature allows ...

andarnoMobile devicesNetCF
Nov 29, 2007
0
0

Provisioning smart devices: an introduction

Andrew Arnott
Andrew Arnott

A lot of questions on the MSDN forums center around how to customize a device or an app to prefer a specific network connection over another.  The correct way to accomplish this is by "provisioning" the device.  In fact a great many aspects of the device and the applications on it can be configured through 'provisioning' the device. ...

andarnoMobile devicesNetCF
Nov 19, 2007
0
0

Why .NET Compact Framework fails to call some HTTPS web servers

Andrew Arnott
Andrew Arnott

A bug was discovered recently in the .NET Compact Framework version 2.0 (SP2 and earlier) and 3.5 that causes HttpWebRequest's directed at some HTTPS servers to fail with this error: (for web services) System.Net.WebException: Unable to read data from the transport connection. ---> System.Net.Sockets.SocketException: Unknown error (0x0). &...

andarnoMobile devicesNetCF
Nov 5, 2007
0
0

Workaround for XmlSerializer T[] and List bug

Andrew Arnott
Andrew Arnott

The XmlSerializer in NetCF 2.0 has a bug where if a single serialization requires reflecting into types that use a mixture of Collection<T>-like types for the same T the XmlSerializer will throw an exception.  Here an example where CF 2.0 would crash: This type would fail to serialize under NetCF 2.0 because T = string would appear...

andarno.NETMobile devices
Oct 29, 2007
0
0

What do you think of the new WCF ‘Store and forward’ Mail Transport?

Andrew Arnott
Andrew Arnott

With the .NET Compact Framework 3.5 release which comes with Visual Studio 2008, a new Windows Communication Foundation transport is introduced that uses email as the communication mechanism. Others have already blogged about this new transport including Roman Batoukov and David Kline. I'd like to take a poll of the audience to see how you ...

andarno.NETMobile devices
Sep 12, 2007
0
0

Calling WCF services from NetCF 3.5 using Compact WCF and NetCFSvcUtil.exe

Andrew Arnott
Andrew Arnott

The .NET Compact Framework 3.5 adds a subset of the Windows Communication Foundation (WCF or "Indigo") to smart devices, allowing them to communicate with desktop WCF components with all the flexibility of multiple, interchangeable service bindings and endpoints.  Although it ships out of the box only with support for message-level ...

andarno.NETMobile devices