Hi,

I am trying to comsume a webservice from a silverlight 2 beta 1 application.

The webservice simply takes a byte[] paramter (which is actually a
serialized image file).

When I tested this from a 'normal' client, I just call my webservice method,
e.g. ws.UploadFile(fileBytes);

But in Silverlight I have to do it asynchronously using the Begin and End
methods - ws.BeginUploadFile

But I really don;t understand how to do this, and I can;t seem to find any
examples. Can anyone point me in the right direction?

Cheers

Brett