Advanced Forum Search Results
-
Ok, thank you for confirming!
-
I think I understand what you mean but to clarify; I do need to split them to different requests right?
If this is the case I'm out of luck because with my setup the client has no idea which server is called (azure) and the chunks can end up at different servers. The workaround will be very cumbersome.
Is it possible to ditch the built in ...
-
Say i wan't to upload a file to my server which has an ashx handler waiting and the file I wan't to upload is really large, even gigabyte large. Is there a way to stream the data directly from the filestream to the request stream without having to load it in the memory first? It seams that the really large files don't play well with ...
-
spot on MarauderzMY, it's exactly the setup I have.I have already implemented a function like the one you mention: bool shouldSeek = true;
shouldSeek &= mediaPlayer.CanSeek;
shouldSeek &= mediaPlayer.CurrentState == MediaElementState.Playing || mediaPlayer.CurrentState == MediaElementState.Paused || ...
-
I'm still experiencing this problem as does my friends.
An example:
When I seek to a downloaded position in a video that is partially downloaded the mediaelements property DownloadProgress sets to 1 which is not true because it is not fully downloaded. This halts the playback and I have to wait until the video is truly downloaded before I ...
-
...I forgot that there is a AppManifest.xml file in my project folder... :/
By adding the following in my AppManifest.xml file everything works perfect.
[quote]
<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment"
...
-
Hi again,
After a little research I found that another thread have already covered this subject: http://silverlight.net/forums/p/19710/67985.aspx#67985
This solves my problem!
This is a nasty way to solve the problem so I hope Microsoft will fix this in next version
/Martin
-
Hi,
I have troubles making web service calls from my application when xap and html are hosted on different servers.
I have 2 servers:
Server 1 and server 2
My web service is on 2.
Html served by 1, Xap served by 1 - works
Html served by 2, Xap served by 2 - works
Html served by 1, Xap served by 2 - fails
Is there some aspect of the client ...
-
If anyone is experiencing the same issue please let me know.
-
When I seek in a loading SL2b2 video the MediaElement property DownloadProgress falsely sets to 1. I can play the loading video but not seek. Is this a bug? How can I solve it?