To serialize or not to serialize?
Hello there.
My teacher asked me to do a job and I don't know how..
This is the scenario:
I must create a client/server application. The server application is a c#
web server and the client is a c# windows aplication. The web service will
connect with a access database.
So, when the client asks for some data, the web service queries the database
and sends the data to the cliente. This is where my problem begins. How can
I send the data????
Initially, I was sending the client the dataset, but I am not allowed to do
it. So, how can I send the data?
Shall I create a class "DataToSend" similary to the data that I want to send
and then create an "DataToSend" array and finally send that array?
Shall I serialize that class?
Shall I think in another way?
Which is the best practice?
Thanks in advance.
Paez
.
Relevant Pages
- Re: Still Need desperate help to start with ASP NET - simplified problems - HELP!!
... You could do it as a web service. ... The handler can draw on the webservice for information and db lookup. ... IE posts data AJAX to handler on web server ... featured application (say thick client) which does a lot of complicate ... (microsoft.public.dotnet.framework.aspnet) - Re: Impersonated login to web service from outside domain
... the client is part of the domain group. ... : integrated windows auth fails. ... You can try creating an identical local user on the server (as the one you ... next call to the web service (ie. the process requiring the credentials to ... (microsoft.public.dotnet.framework.aspnet.security) - Re: Unable to access AS2k from Win 2k m/c URGENT!!!!!!
... No, the Win2k machine just needs to have XMLA SDK and/or ADOMD.NET, MSXML4 ... > Analysis server need more credentials than specified in my ... the same machine as the ADOMD.NET client. ... Why do you need this web service ... (microsoft.public.data.xmlanalysis) - Re: Impersonated login to web service from outside domain
... the client is part of the domain group. ... You can try creating an identical local user on the server (as the one you ... next call to the web service (ie. the process requiring the credentials to ... Any other windows server gurus care to clarify? ... (microsoft.public.dotnet.framework.aspnet.security) - Re: Web service testing
... To test if my code was faulty or not, I back-ported the web service to a standard 2.0 web service using Visual Studio 2005. ... The service is run under IIS on a Windows 2003 server, so there are no server side connection limits that can explain this. ... ASP.NET webservice application. ... In addition, since the problems occur at client, you can use Visual studio ... (microsoft.public.dotnet.framework.webservices) |
|