Ask a Question related to ASP.NET Web Services, Design and Development.
-
VK #1
Simple(?) web service
Hello:
I have written a simple web service which just is NOT deploying to
client.
The web service is an sp, and ws returns a data set.
On the client project, I have added a reference to this web service. How
to retrieve this dataset set into the client project? I have set up a
datagrid but the nothing seems to work.
Thanks for your help in advance.
Vani
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
VK Guest
-
Can't debug simple C# Web Service
First, a confession. I am developing with an old version of VS .NET: VS .NET 2002 (7.0.9955). I am trying to start a *very* simple Web Service... -
Simple Web Service Failing
Hey All, I haven't really touched Web Services on CF since I first played with them when 6.0 came out. I am trying to generate a very BASIC... -
Best Way to store simple data with web service?
Hi all, I'm starting up on a web service project and I think I've got the basics down. However, is there a simple way to store a small amount of... -
Internal Server Error from Simple Web Service
I have a simple web service which accepts two integers as input, then adds them up and returns the sum as output. This is written in VB.Net. I... -
sample of using simple Web-Service (.NET) via flash 2004.
Hello, In Macromedia Flash 2004 proffessional there is a component : WebServiceConnector. I need a tiny sample of use of Web-Service (.NET) via... -
Saverio Tedeschi #2
Re: Simple(?) web service
Hi,
if ws returns a DataSet, from client's perpective, IT IS THE DataSet itself,
so treat it as ds, retrieving rows, fields and whatever you do with a ds,
icluded being DataSource for whatever control. However, AFAIK, each call to
DS means a call to WebService; so I create my own ds in the client app,
serialize webservice (writing XML) and then load my local ds (reading XML)
and every subsequent op is done via this local ds. Does this make sense?
"VK" <vk@vk.com> ha scritto nel messaggio
news:O5HsyXcdFHA.3932@TK2MSFTNGP12.phx.gbl...> Hello:
>
> I have written a simple web service which just is NOT deploying to
> client.
>
> The web service is an sp, and ws returns a data set.
>
> On the client project, I have added a reference to this web service. How
> to retrieve this dataset set into the client project? I have set up a
> datagrid but the nothing seems to work.
>
> Thanks for your help in advance.
>
> Vani
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Saverio Tedeschi Guest
-
Chad Z. Hower aka Kudzu #3
Re: Simple(?) web service
"Saverio Tedeschi" <tesis@tesis.org> wrote in
news:uFh#PbedFHA.2128@TK2MSFTNGP15.phx.gbl:No. The DS is serialized, sent across and a local instance created. Any calls to the dataset are> if ws returns a DataSet, from client's perpective, IT IS THE DataSet
> itself, so treat it as ds, retrieving rows, fields and whatever you do
> with a ds, icluded being DataSource for whatever control. However,
> AFAIK, each call to DS means a call to WebService; so I create my own
local.
You are just copying and taking a lot more code to do what webservices already do for you.> ds in the client app, serialize webservice (writing XML) and then load
> my local ds (reading XML) and every subsequent op is done via this
> local ds. Does this make sense?
--
Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
"Programming is an art form that fights back"
Blog: [url]http://blogs.atozed.com/kudzu[/url]
Chad Z. Hower aka Kudzu Guest
-
Saverio Tedeschi #4
Re: Simple(?) web service
Thanks, Kudzu, 4 your reply.
Actually, I need explicit serialization in case clients can't get connected,
so they can inquiry previous result sets. However, now I reload ds only if
disconnected, and all goes much faster. Have a nice day!
"Chad Z. Hower aka Kudzu" <cpub@hower.org> ha scritto nel messaggio
news:Xns967C87884FC1Acpubhowerorg@127.0.0.1...> "Saverio Tedeschi" <tesis@tesis.org> wrote in
> news:uFh#PbedFHA.2128@TK2MSFTNGP15.phx.gbl:>>> if ws returns a DataSet, from client's perpective, IT IS THE DataSet
>> itself, so treat it as ds, retrieving rows, fields and whatever you do
>> with a ds, icluded being DataSource for whatever control. However,
>> AFAIK, each call to DS means a call to WebService; so I create my own
> No. The DS is serialized, sent across and a local instance created. Any
> calls to the dataset are
> local.
>>>> ds in the client app, serialize webservice (writing XML) and then load
>> my local ds (reading XML) and every subsequent op is done via this
>> local ds. Does this make sense?
> You are just copying and taking a lot more code to do what webservices
> already do for you.
>
>
> --
> Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
> "Programming is an art form that fights back"
>
> Blog: [url]http://blogs.atozed.com/kudzu[/url]
Saverio Tedeschi Guest
-
Chad Z. Hower aka Kudzu #5
Re: Simple(?) web service
"Saverio Tedeschi" <tesis@tesis.org> wrote in
news:u#oGGpldFHA.3376@TK2MSFTNGP10.phx.gbl:Even then you can tell the datasets to serialize on their own. There are some really easy examples> Actually, I need explicit serialization in case clients can't get
> connected, so they can inquiry previous result sets. However, now I
> reload ds only if disconnected, and all goes much faster. Have a nice
> day!
here:
[url]http://tinyurl.com/cbbg2[/url]
--
Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
"Programming is an art form that fights back"
Blog: [url]http://blogs.atozed.com/kudzu[/url]
Chad Z. Hower aka Kudzu Guest
-
Saverio Tedeschi #6
Re: Simple(?) web service
Thank you, Kudzu, for your advice;
however, I wasn't able to find a ref; where should I search in?
"Chad Z. Hower aka Kudzu" <cpub@hower.org> ha scritto nel messaggio
news:Xns967CA9A1ED6Ecpubhowerorg@127.0.0.1...> "Saverio Tedeschi" <tesis@tesis.org> wrote in
> news:u#oGGpldFHA.3376@TK2MSFTNGP10.phx.gbl:>>> Actually, I need explicit serialization in case clients can't get
>> connected, so they can inquiry previous result sets. However, now I
>> reload ds only if disconnected, and all goes much faster. Have a nice
>> day!
> Even then you can tell the datasets to serialize on their own. There are
> some really easy examples
> here:
> [url]http://tinyurl.com/cbbg2[/url]
>
>
> --
> Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
> "Programming is an art form that fights back"
>
> Blog: [url]http://blogs.atozed.com/kudzu[/url]
Saverio Tedeschi Guest
-
Chad Z. Hower aka Kudzu #7
Re: Simple(?) web service
"Saverio Tedeschi" <tesis@tesis.org> wrote in
news:e3yNJaodFHA.3620@TK2MSFTNGP09.phx.gbl:See the parts where it saves the datasets, etc... You can download the projects and play with them> Thank you, Kudzu, for your advice;
> however, I wasn't able to find a ref; where should I search in?
too. It puts htem in a file, but you can do same to a stream.
[url]http://tinyurl.com/cbbg2[/url]
--
Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
"Programming is an art form that fights back"
Blog: [url]http://blogs.atozed.com/kudzu[/url]
Chad Z. Hower aka Kudzu Guest



Reply With Quote

