Framework download

  • Thread starter Thread starter manas
  • Start date Start date
M

manas

hi,
I have developed a webserice which returns a datatable datatype,
so at the client end ..should i install dot net framework on the
machine for the webserice to work properly?

Thanks
manas
 
Manas,

On the webserver you have to install the framework when using Net
webservice.

On the clientcomputer only the clients uses parts of the Net framework in
his program

By instance if the client uses a webbrowser to access your ASPX pages, than
he does not (if the page is not a Rich Client) need to install the
framework.

Is the client a Net windowsform program than needs that of course the
framework.

I hope that I understood your question and that this helps,

Cor
 
hi,
Thanks for the information,
But this webserivce is used by so many people in the world and everybody
cannot have the framework installed ,

i guess...if i make sure the framework is installed on the web server
and the program Machine where the user is executing the program , that
would resolve the problem , isn't it?

Correct me if i am wrong...

Thanks
Manas





mahesh manas
 
Manas,

When the users use the webservice with a browser, than they don't need the
framework.

Except and I tried to be complete when they are using your webpages and you
have included richclient Net elements in it.

I hope this clears it.

Cor
 
hi,
Thanks for the information , i got it,

I tried a solution where instead of returning the dataset as webservice
result , i juss tried converting the dataset into a string using
dataset.getxml(),

As string is not a part framework , there is no need for framework,

Thanks Anyways
I appreciate your help,

mahesh manas
 
manas said:
I tried a solution where instead of returning the dataset as webservice
result , i juss tried converting the dataset into a string using
dataset.getxml(),

As string is not a part framework , there is no need for framework,

You still dont understand the issue. Returning a dataset does essentially the same as
Dataset.getxml - it send a string only across.

The .NET framework is only needed server side, client side it can be anyt lanuage, Java, whatever
not matter what you return from .NET.
 
hi,
when u return a dataset , the tale is treated for that XML and that
entire table is displayed in the wsdl, i dont want that to happen as
when consuming it i ould have a lot of problems and displaying to the
end-user would be a tedious task , however they are some exceptions ,
rather using a dataset.getxml() would convert the table to a string
format returning a single entity rather than chunks of data as it does
in a dataset , but however the problem is solved now, i appreciate your
generous help,

Thanks

mahesh manas
 
Back
Top