|
More site info...
Silverlight | Forum profile
|
|
Forum profile page for Silverlight on http://www.codeproject.com.
This report page is the aggregated overview from a single forum: Silverlight, located on the Message Board at http://www.codeproject.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Silverlight" on the Message Board at http://www.codeproject.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Silverlight:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
10
|
38
|
152
|
|
Post:
|
18
|
78
|
295
|
|
|
Silverlight Posting activity graph:
|
Top authors during last week:
user's latest post:
Load dll client side
Published (2009-12-24 09:39:00)
Here's a version that searches the assembly for the first instance of a class that implements your interface, and if found, creates an instance of that class: IMyInterface myinterfaceobject = null; Stream sourcestream = ...; AssemblyPart assemblypart = new AssemblyPart(); Assembly assembly = assemblypart.Load(sourcestream); foreach (Type t in assembly.GetTypes()) { if (null != t.GetInterface( " IMyInterface" , false ))...
user's latest post:
The remote server returned an...
Published (2009-12-28 18:27:00)
Connect directly to your wsdl and confirm that you do not have problems with your wcf service itself. NotFound is a really poor messaging error which means basically "something's screwed up" and has nothing to do with something not being found.
user's latest post:
Where do you see Silverlight a...
Published (2009-12-28 17:24:00)
Goalie35 wrote: My company is looking into beginning to integrate Silverlight into some of our upcoming web projects soon Okay that is nice, but have you ask the question: 'Why are we thinking of doing this? Every successful application must fist use the correct technology to be successful. Ie. I wouldn't use JAVA as my technology on a windows installation when I can use .NET. Reason being I only need to support one operating...
user's latest post:
Unable to start debugging.
Published (2009-12-21 01:07:00)
when i try to run my silver light 3 application i m getting the following message "The Silverlight managed debugging package isn't installed" pls help me to get out of this mess
user's latest post:
System.Net.HttpWebRequest...
Published (2009-12-21 04:43:00)
I am building a Silverlight 3 application using MSBuild. I am attempting to POST data in a HttpWebRequest, and I get error CS1061: 'System.Net.HttpWebRequest' does not contain a definition for 'ContentLength'. Here is a code snippet: HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri); request.Method = "POST"; // Create POST data and convert it to a byte array. string postData =...
user's latest post:
Load dll client side
Published (2009-12-23 02:38:00)
Hi, I'm working on extensibility of my Silverlight application and would like to load a dll on the client side and invoke methods based on an interface, can it be done? Any links to good articles? I would prefer to not include it in my build of my application, ie the client can upload extensions, and then invoke them, so its not a referenced library...
user's latest post:
Where do you see Silverlight a...
Published (2009-12-23 05:52:00)
Hello. My company is looking into beginning to integrate Silverlight into some of our upcoming web projects soon, but before we do, I want to get some opinions from those who are already experienced in developing in it. From what I've read, Silverlight seems to be slowly picking up marketshare (the stats I read showed it's now installed in 40% of all users computers), which is a good thing...but what do you see for the future of...
user's latest post:
Where do you see Silverlight a...
Published (2009-12-23 06:08:00)
Hard to say, this early in the game (Ok, it's not THAT early)... But here are my predictions: 1) Adoption will continue to be slow for a while, because let's face it... Most people don't even know what Silverlight is, and Microsoft isn't using their marketing machine yet (Probably waiting until version 4 to start pushing it). 2) Microsoft will package SilverLight in with the next Windows 7 service pack and all subsequent...
user's latest post:
login authentication in...
Published (2009-12-28 22:05:00)
how can login authentication (use windows media service 2008) in silverlight 3
|
|
|
|
Latest active threads on Silverlight::
Started 1 day, 8 hours ago (2009-12-28 22:42:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 1 day, 8 hours ago (2009-12-28 22:28:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 2 weeks, 1 day ago (2009-12-14 18:57:00)
by Mark Salsbery
If you haven't already, maybe try turning on the includeExceptionDetailInFaults service behavior option in the web.config... <serviceDebug includeExceptionDetailInFaults="true" /> If you can't catch the exception in the debugger, you may need to use something like Fiddler to capture the fault response with the exception info in it. Regardless, it's hard to guess without more detailed ...
Started 1 week ago (2009-12-23 06:08:00)
by Ian Shlasko
Hard to say, this early in the game (Ok, it's not THAT early)... But here are my predictions: 1) Adoption will continue to be slow for a while, because let's face it... Most people don't even know what Silverlight is, and Microsoft isn't using their marketing machine yet (Probably waiting until version 4 to start pushing it). 2) Microsoft will package SilverLight in with the next Windows 7 ...
Started 5 days, 22 hours ago (2009-12-24 08:57:00)
by Mark Salsbery
Adriaan Davel wrote: would like to load a dll on the client side and invoke methods based on an interface, can it be done? Yes. Given a Stream to an assembly DLL, you can use the AssemblyPart.Load method to load the assembly into the current app domain and get an Assembly object. Then you can use Assembly.CreateInstance to create instances of classes in the assembly. Stream ...
Started 1 week, 1 day ago (2009-12-21 19:22:00)
by Mark Salsbery
Have you installed the Silverlight Tools for Visual Studio? Silverlight: Get Started [ ^ ]
Started 1 week, 1 day ago (2009-12-21 19:20:00)
by Mark Salsbery
Siberz wrote: 'System.Net.HttpWebRequest' does not contain a definition for 'ContentLength'. Correct. This property is not available in the Silverlight . NET Framework. I believe the system sets this for you based on how much data is written to the request stream. See the "Remarks" section here: HttpWebRequest.Headers Property [ ^ ] Siberz wrote: I also get the same error for ...
Started 1 week, 5 days ago (2009-12-17 23:55:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 1 week, 6 days ago (2009-12-16 11:38:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 2 weeks ago (2009-12-15 08:33:00)
by Mark Salsbery
|
|
Hot threads for last week on Silverlight::
Started 1 week ago (2009-12-23 06:08:00)
by Ian Shlasko
Hard to say, this early in the game (Ok, it's not THAT early)... But here are my predictions: 1) Adoption will continue to be slow for a while, because let's face it... Most people don't even know what Silverlight is, and Microsoft isn't using their marketing machine yet (Probably waiting until version 4 to start pushing it). 2) Microsoft will package SilverLight in with the next Windows 7 ...
Started 5 days, 22 hours ago (2009-12-24 08:57:00)
by Mark Salsbery
Adriaan Davel wrote: would like to load a dll on the client side and invoke methods based on an interface, can it be done? Yes. Given a Stream to an assembly DLL, you can use the AssemblyPart.Load method to load the assembly into the current app domain and get an Assembly object. Then you can use Assembly.CreateInstance to create instances of classes in the assembly. Stream ...
Started 1 week, 1 day ago (2009-12-21 19:20:00)
by Mark Salsbery
Siberz wrote: 'System.Net.HttpWebRequest' does not contain a definition for 'ContentLength'. Correct. This property is not available in the Silverlight . NET Framework. I believe the system sets this for you based on how much data is written to the request stream. See the "Remarks" section here: HttpWebRequest.Headers Property [ ^ ] Siberz wrote: I also get the same error for ...
Started 1 day, 8 hours ago (2009-12-28 22:28:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 1 day, 8 hours ago (2009-12-28 22:42:00)
by Abhinav S
There's nothing left in my right brain and nothing right in my left brain.
Started 1 week, 1 day ago (2009-12-21 19:22:00)
by Mark Salsbery
Have you installed the Silverlight Tools for Visual Studio? Silverlight: Get Started [ ^ ]
Started 2 weeks, 1 day ago (2009-12-14 18:57:00)
by Mark Salsbery
If you haven't already, maybe try turning on the includeExceptionDetailInFaults service behavior option in the web.config... <serviceDebug includeExceptionDetailInFaults="true" /> If you can't catch the exception in the debugger, you may need to use something like Fiddler to capture the fault response with the exception info in it. Regardless, it's hard to guess without more detailed ...
|
|