How to read an xml file in silverlight using webclient. I have one task, in this the xml file that i stored in my machine will read and the content od the xml file will display on a data grid.
how it will be done?
I'm interested in one WCF server exposing both HTTP and TCP interfaces. It'll be used with Silverlight clients, so the thinking is that the HTTP interface will be for secure communications while TCP will be used the rest of the time.
Is it possible for these two interfaces to use the same port in their endpoints, e.g. http://localhost:9000/ and net.tcp://localhost:9000/?
I have a usercontrol, and I want a storyboard inside the user control to fade the user control out. Using Expression Blend, I can create the storyboard and cause it to fade the user control out, but when I run the silverlight application I get an error on FindControl stating that it can't find the control. I'm guessing the find control only searches the children of the parent, but does not look at the parent itself. Is there any way around this?
silverlight 3.0 client
wcf 3.0 VS.Net 2005 Web Site Win 2003 Server
50 column observable collection.
return observable collection select top 975 * ... no problem
return observable collection select * .... Issue
On SL client after proxy.Get 50 col OC
logon screen from win 2003 server pops up
Mever makes it to the completed event.
I'm assuming this isn't possible but before digging further is there a way to do something like this:
public void ProcessInterface(ISomeInterface obj) {}
//...
dynamic myDyn = GetDynamic<ISomeInterface>()
ProcessInterface(myDyn);
I've seen a post arguing for it but it sounds like it wasn't included.
A little context: .Net assembly exposed through COM - Silverlight app consuming interface-implementing classes. Would be nice to refer to the objects by interface. I really don't expect that this was what was intended...
Hi
I'm trying to fragment an image into several smaller triangles in WCF or Silverlight. I've looked around but most of the cropping looks like its done using the clone method which only takes a rectangle.
Is there a way to make a desktop application easily interfaceable via Web ? Meaning, can you have a way to interface with a single desktop application as if you were remote desktop'd into the machine but not? I am looking at doing this in ASP.NET or Silverlight.
I'd like to know how I can assign in XAML a dependency property of type Type in Silverlight since the markup extension {x:Type} does not exist ?
Thanks,
Hello,
do you know any browser-side component, in HTML/Javascript, Flash, Applet or Silverlight, that
would allow source code edition with syntax highlighting and auto-completion.
CodeMirror has a good syntax highlighting support but does not seem to support auto-completion.
If no such editor exists do you know any way to implement auto-completion using HTML and javascript or any other browser-side technology ?
Thanks by advance.
I'm using silverlight, project structure is similiar to any other .net app. I have a map control that I would like to store what mode it is in (either road or aerial) so that other controls can access this.
Where do I put this enum variable, I plan to use 2 way binding on it so both are updated when either changes.
Thanks.
Since Silverlight 4 Microsoft recommends the usage WCF RIA services for business applications. Are there scenarios, where the WCF RIA serices should no be used and plan WCF services or webservices or other techniques are the better choice ?
In my Silverlight application, I load all the images I need at application start and store them in a dictionary.
Then as I need them I pick them out of the dictionary and attach them in XAML trees etc.
However, I have the problem that if I attach an Image object to a Grid, then want to use that image again, it tells me:
The image element is already a child
of another element.
How can I run through my dictionary and "detach all images from parent XAML elements"?
I'm making pretty heavy use of the Panorama and Pivot controls in my WP7 applications. Is it possible to use these same controls in a standard Silverlight (4) application?
http://phone.codeplex.com/
I added the dll's, was able to compile and create the controls in my views. However; I was not able to "Scroll". I thought they used the "LeftMouseDown" event handlers but I guess I'm wrong.
When I start up VS 2008 to work on a WPF / Silverlight App and open a XAML or XML file the XAML / XML editor is no longer working. The designer does not show up and intellisense is unavailable. It basically looks like a text file has been opened.
The question title says it all, really. What books, videos, articles are you looking at to learn how to use the newly released WCF RIA Services for Silverlight?
Thanks!
Hello,
i have a silverlight app which calls a webservice. that webservice encodes a wav file to mp3 format. how should be the best way to wait for full mp3 file creation?
regards
Hi, There seems to be a browser hijack problem and I really dont have time to sort it. I need an alternative download location for Silverlight SDK 3 since microsoft.com does not work.
I have binded a list of enum to a combobox. Now I want to get the SelectedItem return the enum, which currently returns it as type object. How do I convert this object to my enum?
My framework is silverlight on windows-phone-7
I have the feeling that Flash-based ( or Silverlight-based) websites are generally frowned upon, except when you are creating games or multimedia-content rich applications. Why this is so?
Hi,
I am trying to upload images using a webservice from silverlight. I am first converting the images into stram of bytes and then trying to upload them. I am able to upload image of size 2.5 MB. But not more than that.It gives me "The remote server returned an error: NotFound" error.
What could be the reason.
I have a Silverlight application communicating with a server over WCF using basicHttpBinding. It works fine over the web, but customers complain of "communications issues" over a 3G network.
Is there anything specific in WCF that can be tweaked to work more nicely over a 3G network? What is it about a 3G network that might cause problems?
Picture a listbox in Silverlight that is similar to the "feed" on facebook. Each item might be 1) a status update with an image on the left, 2) a photo thumbnail with a title, 3) a youtube video, or 4) a blog entry. Each item uses a different template. How would you accomplish this?