473,387 Members | 1,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Compress dataset returned from Web Service


Hi All,

I use .NET 2.0.
I experience huge performance problem retrieving dataset from web
service.
The dataset volume returned from WS is about 5-7 megabyte, it's take
too long.
Is it possible to compress dataset in some way in the WS send to
client, and decompress
in the client, if yes how???
Maybe there is another way to pass huge datasets from WS, maybe IIS ??
To do this asyncronously or in batches is not suitable for my problem.
Any ideas??
Thanks in advance.

Nov 1 '06 #1
4 4250
Can you give some more data about your application? For example, are you
sending typed datasets? What platform are you running on? Etc.

"Ev*******@gmail.com" wrote:
>
Hi All,

I use .NET 2.0.
I experience huge performance problem retrieving dataset from web
service.
The dataset volume returned from WS is about 5-7 megabyte, it's take
too long.
Is it possible to compress dataset in some way in the WS send to
client, and decompress
in the client, if yes how???
Maybe there is another way to pass huge datasets from WS, maybe IIS ??
To do this asyncronously or in batches is not suitable for my problem.
Any ideas??
Thanks in advance.

Nov 2 '06 #2

Hi,
i'm using .net 2.0 and dataset that returned from WS is untyped

TNX

Scott Seely wrote:
Can you give some more data about your application? For example, are you
sending typed datasets? What platform are you running on? Etc.

"Ev*******@gmail.com" wrote:

Hi All,

I use .NET 2.0.
I experience huge performance problem retrieving dataset from web
service.
The dataset volume returned from WS is about 5-7 megabyte, it's take
too long.
Is it possible to compress dataset in some way in the WS send to
client, and decompress
in the client, if yes how???
Maybe there is another way to pass huge datasets from WS, maybe IIS ??
To do this asyncronously or in batches is not suitable for my problem.
Any ideas??
Thanks in advance.
Nov 4 '06 #3
Hi,

I havent yet tried it myself. However, this blog, which includes a
compression library, look promising, at least for desktop applications.

http://weblogs.asp.net/pglavich/arch.../24/62475.aspx

After some googling, I believe it is possible to provide compression by
'zipping' the web services data when sending and 'unzipping' when retrieving
the web services data. Most examples I have found through searching seem to
use compression and decompression by a .NET compatible zip library of some
sort.

If you find anything yourself please let me know.

Regards,
David

"Ev*******@gmail.com" wrote:
>
Hi,
i'm using .net 2.0 and dataset that returned from WS is untyped

TNX

Scott Seely wrote:
Can you give some more data about your application? For example, are you
sending typed datasets? What platform are you running on? Etc.

"Ev*******@gmail.com" wrote:
>
>
>
Hi All,
>
I use .NET 2.0.
>
>
I experience huge performance problem retrieving dataset from web
service.
The dataset volume returned from WS is about 5-7 megabyte, it's take
too long.
>
>
Is it possible to compress dataset in some way in the WS send to
client, and decompress
in the client, if yes how???
>
>
Maybe there is another way to pass huge datasets from WS, maybe IIS ??
>
>
To do this asyncronously or in batches is not suitable for my problem.
>
>
Any ideas??
>
>
Thanks in advance.
>
>

Nov 6 '06 #4
By sending typed datasets, you will reduce the payload somewhat, though at
your volume, this may not be appreciable. You'll most likely want to look at
enabling compression to reduce the wire size. An article explaining how this
is done is at
http://www.microsoft.com/technet/pro....mspx?mfr=true

"Ev*******@gmail.com" wrote:
>
Hi,
i'm using .net 2.0 and dataset that returned from WS is untyped

TNX

Scott Seely wrote:
Can you give some more data about your application? For example, are you
sending typed datasets? What platform are you running on? Etc.

"Ev*******@gmail.com" wrote:
>
>
>
Hi All,
>
I use .NET 2.0.
>
>
I experience huge performance problem retrieving dataset from web
service.
The dataset volume returned from WS is about 5-7 megabyte, it's take
too long.
>
>
Is it possible to compress dataset in some way in the WS send to
client, and decompress
in the client, if yes how???
>
>
Maybe there is another way to pass huge datasets from WS, maybe IIS ??
>
>
To do this asyncronously or in batches is not suitable for my problem.
>
>
Any ideas??
>
>
Thanks in advance.
>
>

Nov 6 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Programatix | last post by:
Hi, I'm working on a project which includes WebServices and Windows Form application. The Windows Form application will call the WebServices to retrieve data from database. The data will be...
2
by: Programatix | last post by:
Hi, I'm working on a project which includes WebServices and Windows Form application. The Windows Form application will call the WebServices to retrieve data from database. The data will be...
19
by: Adam Short | last post by:
I am trying to write a routine that will connect a .NET server with a classic ASP server. I know the following code doesn't work! The data is being returned as a dataset, however ASP does not...
4
by: geilen | last post by:
I'm trying to use a dataset returned from a web service in an unmanaged C++ (MFC) client. The dataset is returned as a BSTR, and I'm having trouble reading the BSTR into an XML document for...
4
by: Dan | last post by:
Hi, I pass datasets back and forth between client app and web services (hosted on iis 5). When written to xml file these datasets can be 500kb+. From a bandwitdth meter it seems this amount...
0
by: Bob Davies | last post by:
Hi I have a webservice that retrieves data from a database, this is then returned to the calling client application built in windows forms within a dataset, however upon attempting to create...
13
by: Maxwell2006 | last post by:
Hi, We are having a debate over using DataSet as return value type for web services. The problem is that we don't know whether Java applications can use DataSet
1
by: Evgeny.Br | last post by:
Hi All, I use .NET 2.0. I experience huge performance problem retrieving dataset from web service. The dataset volume returned from WS is about 5-7 megabyte, it's take too long.
15
by: Joseph Geretz | last post by:
I'm a bit puzzled by the current recommendation not to send Datasets or Datatables between application tiers. http://support.microsoft.com/kb/306134 ...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.