Click here to Skip to main content
16,016,345 members

Comments by jigi_chavan (Top 3 by date)

jigi_chavan 27-Aug-14 0:22am View    
Hi ,
I have currently a set of Data in a DataTable.
I have a third party Web Service which requires a string formatted in particular format as input for processing.
I am currently parsing the string and sending it to Webservice on Row by Row basis.
The Web service takes some amount of time.
Instead of waiting for the response I want to keep on sending the rest of the data for processing as such maximum data can be processed in minimum time.
jigi_chavan 26-Aug-14 8:22am View    
Hi SA,
I have currently a set of Data in a DataTable.
I have a third party Web Service which requires a string formatted in particular format as input for processing.
I am currently parsing the string and sending it to Webservice on Row by Row basis.
The Web service takes some amount of time.
Instead of waiting for the response I want to keep on sending the rest of the data for processing as such maximum data can be processed in minimum time.
jigi_chavan 25-Jan-12 2:31am View    
Actually, after using concrete types it has worked.
In existing Business dll, data from database are stored in an array of Objects and sent back to another layer.
We are trying to use existing Business dll and functionality using WCF.
Instead of Object[] now we are using another DataContract with definition from Business dll.

I was just hoping that Object[] can be used in DataMember.