Compiling the Proxy

J

Jack Barnes

I am pretty new to programing and need help compiling the
proxy for my WebService in C#.

I have been going through a book on WebServices and am at
the part where I need to compile my proxy into a .NET
Assembly. However, I am getting a CS0006 error.

Here's what I am typing:
-----
csc.exe /out:bin\pmcalc.dll /target:library /reference:syst
em.xml.serialization.dll /reference:system.web.services.dll
pmcalc.cs
-----

I get the following error:
-----
error CS0006: Metadata file 'system.xml.serialization.dll
could not be found
-----

I've looked and I don't have the
system.xml.serialization.dll file in my system even though
I have the 1.1 Framework and SDK.

Is there a new way to do this in the 1.1
Framework? ...becuase EVERYTHING I read says to do it the
way that I have been doing it.

Need Help!

Thx - Jack
 
K

Kumar Gaurav Khanna [.NET MVP]

Hi!

Its just a little confusion. The System.Xml.Serialization is a namespace
that resides in the System.Xml.dll assembly. Place a reference to this,
instead of System.Xml.Serialization.Dll.

Regards,
Gaurav Khanna

--
----------------------------------------------------------------------------
----------
Microsoft MVP - .NET, MCSE Windows 2000/NT4, MCP+I
WinToolZone - Spelunking Microsoft Technologies
http://www.wintoolzone.com/
OpSupport - Spelunking Rotor
http://opsupport.sscli.net/
 

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