hey guys,
I have a silverlight app on an MVC page that user's can draw on, when they click save an event fires in both MVC and silverlight
The MVC event redirects to a page where the drawing is reloaded so the user can confirm it was saved correctly (viewed on another silverlight app)
The silverlight application event fires off a routine that converts the existing stroke collection into simple xml, and breaks it down into 500 character chunks to be sent to the WCF service that saves the chunks to the database.
On the other side of the MVC event the silverlight app fires off a call to the WCF service to retrieve all of the chunked xml strings and brings them in and reassembles them and then rebuilds them into the stroke collection.
now for the problem. My service doesn't seem to catch all of the chunks its being sent, sometimes its only getting 1-3 of the possible 10 or more chunks, i have tested my splitting and conversion routines and guarantee that they work but what im looking for is a way to hold off on firing the MVC event so the WCF maybe can "catch up"? or is that not even the problem
as of now i am at a loss
Thanks guys.