[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Jack Barnes

7/27/2003 2:16:00 AM

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
1 Answer

KC

7/27/2003 11:53:00 PM

0

System.Xml.Serialization is a namespace within System.XML.dll. Are you sure
you didn't mean to put System.Xml.dll instead of
System.Xml.Serialization.dll?

--
Kevin Cunningham
Software Architects, Inc.
"Jack Barnes" <tampawebman@hotmail.com> wrote in message
news:021d01c353e5$0bd301e0$a501280a@phx.gbl...
> 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