confusion with compact framework versions?

N

nick

I have spent a great deal of time trying to develop a DLL
which will hide away the complexities of linking to one
of my web services, and simply return a dataview.

I wrote the original version in about an hour, and it
worke3d fine.

Then I tried to create a version of the same DLL for .Net
C/F.

To cut a long story short proxy generated when I add my
web reference (reference.cs) contains the following code:

....[return: System.Xml.Serialization.XmlElementAttribute
("return",
Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]...

This is fine for my windows client, the reference to
System.Xml points to the Standard framework (1.1.4322).

For the compact framework it points to 1.0.5000.

ILDASM confirms that the Form property is not present in
the compact framework assembly *(even though the
following documentation would suggest otherwise:
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpref/html/frlrfsystemxmlserializationxmlelementattribu
tememberstopic.asp)

Could someone help me here? Is the documentation
incorrect? Or is it my set-up? I'm pretty confident
that I have thelatest versions of everything. Any help
would be greatly appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top