[Mono-list] Mono Web Services

2005-06-29 Thread Tarun R
Hi, I recently tried using Google web APIs and got their WSDL file. I made it into a C# file using Mono WSDL toolkit. When I tried building the library, it gave an error: The command I entered was: $mcs /target:library GoogleSearchService.cs The result was: $GoogleSearchService.cs(20) error

Re: [Mono-list] Mono Web Services

2005-06-29 Thread Lluis Sanchez
Compile with: mcs /target:library GoogleSearchService.cs /r:System.Web.Services El dc 29 de 06 del 2005 a les 15:53 +0530, en/na Tarun R va escriure: Hi, I recently tried using Google web APIs and got their WSDL file. I made it into a C# file using Mono WSDL toolkit. When I tried building

Re: [Mono-list] Mono Web Services

2005-06-29 Thread Elliott Draper
Hi there, You need to add a reference to the System.Web.Services assembly as it must be using that within the class. Try: mcs /target:library GoogleSearchService.cs -r:System.Web.Services Incidentally, when I tried to compile a file that required this assembly, without it, as a test, the

[Mono-list] Mono Web Services

2004-01-12 Thread Alessandro Galassi
Hi, I have succesfully installed mono-29, and I read a MySQL db with System.Data.ODBC. Now is it possible write web services to exchange a DataSet from server to client? Where can i found an example? Alessandro. ___ Mono-list maillist - [EMAIL

Re: [Mono-list] Mono Web Services

2004-01-12 Thread Lluis Sanchez
On dl, 2004-01-12 at 15:25, Alessandro Galassi wrote: Hi, I have succesfully installed mono-29, and I read a MySQL db with System.Data.ODBC. Now is it possible write web services to exchange a DataSet from server to client? Web services are working and I think that support for DataSet