Hi WebService gurus 
I recive an errormsg that I cannot find info on how to rectify?
"The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element."
I'm returning a DataTable from a Web Service. This code is not going to run in a nuclear power plant, I basically just want something to work even if it's not the best solution to return the whole table thru soap. I might add restrictions for how many records can be returned /add paging etc later)
code:
// retrieve a table from web service
dt = serviceBlog.SearchFreeTextBlog(
"%");
Thank you,
/QA4ever