Here is a great guide to WCF web services and Silverlight This is where you need to start!
Using WCF Service with Silverlight - CodeProject
This blog will hold favorite gadgets and graphic user interfaces that don't really fit in my main blog @ mmcelhaney.blogspot.com
Friday, September 30, 2011
Wednesday, September 28, 2011
Introduction to IIS 7.0 Architecture - CodeProject
Introduction to article
Introduction to IIS 7.0 Architecture - CodeProject
This Article looks into the end-to-end request processing architecture in IIS 7.0.IIS 7.0 has been completely redesigned in comparison with the previous versions. I will begin with the core IIS 7.0 components and their role in the processing of an HTTP request.
I will then look at how a request is executed, focusing on the integrated request processing pipeline and core Web server modularity
Introduction to IIS 7.0 Architecture - CodeProject
Gadget Maker IDE - CodeProject
Introduction to Article
Gadget Maker IDE - CodeProject
I have created an IDE using Visual C# 2010 (Express Edition) that automates the process of creating a Windows Vista Gadget. This IDE has the common features found in an IDE, for example, editing the HTML/JavaScript code using an editor, editing the gadget manifest using a GUI interface, inserting generic code and building the gadget. I have used SharpZipLib, a free C# compression library to compress the gadget files.
Gadget Maker IDE - CodeProject
Tuesday, September 27, 2011
Deploying A Web Service
Image via WikipediaFor the past several months I've been working on a .Net program in Silverlight that employs a web service. IT took some time but I did make it work in Visual Studio 2010. The problem came when I wanted to deploy it to web server. It refused to work. The Silverlight App had the ASP.Net debugging activated and my webservice didn't so I had to add the following line to just before my web service's class instantiation:
And I had to make sure that the url in the ServiceReference.ClientConfig file and the configuration for the web service match the url for the web service *.svc file on the web server. I found this to be a problem when it came comes to trying to run the projects from inside Visual Studio 2010, I have to switch the url to match the local server. I also found out that I had to change the code for calling the web service.
Deployment of Silverlight App + Silverlight-Enabled WCF Service to Production
Deploying Silverlight with WCF Services
And I had to make sure that the url in the ServiceReference.ClientConfig file and the configuration for the web service match the url for the web service *.svc file on the web server. I found this to be a problem when it came comes to trying to run the projects from inside Visual Studio 2010, I have to switch the url to match the local server. I also found out that I had to change the code for calling the web service.
Uri address = new Uri(Application.Current.Host.Source, "../YourService.svc"); // this url will work both in dev and after deploy.You can read the links I used to come up with this:
var webService = new YourWebService.YourWebServiceClient("YourServiceEndPointName", address.AbsolutePath);
Deployment of Silverlight App + Silverlight-Enabled WCF Service to Production
Deploying Silverlight with WCF Services
How to flush a storage volume's the file cache, lock and dismount it and eject the media - CodeProject
Introduction to Article
How to flush a storage volume's the file cache, lock and dismount it and eject the media - CodeProject
Ejecting a media is well known for CD/DVD drives. Here we get a physical ejection. But also ZIP/JAZ drives and card readers (drives with a removable media) support ejection and since they are not read only it is required to dismount their file system before ejection to prevent loss of data.
How to flush a storage volume's the file cache, lock and dismount it and eject the media - CodeProject
Labels:
CodeProject,
dismount,
eject,
Hardware,
Optical,
programmatically.,
Solid-state drive,
Storage,
USB flash drive
Sunday, September 25, 2011
10 Awesome Free Tools To Make Infographics | MakeUseOf
Here is an article about how to make infographics!
10 Awesome Free Tools To Make Infographics | MakeUseOf
10 Awesome Free Tools To Make Infographics | MakeUseOf
Saturday, September 24, 2011
Things That Happen On Internet Every Sixty Seconds | Infographic Generator - Daily Infographics, Online Infographic Maker and Creator
Things That Happen On Internet Every Sixty Seconds | Infographic Generator - Daily Infographics, Online Infographic Maker and Creator
Related articles
- The Value of Email [Infographic] (sendblaster.com)
- How Star Wars characters could have benefitted from online training [infographic] (holykaw.alltop.com)
- How Google Changed the Way We Think and Remember [infographic] (famousbloggers.net)
- Event Marketing From A to Z [Infographic] (hubspot.com)
- 1996 vs. 2011 - The Internet, Yesterday & Today [Infographic] (famousbloggers.net)
Labels:
Facebook,
Games,
Google,
Information graphics,
Internet,
Social network,
Twitter
Bing vs. Google Infographic | Infographic Generator - Daily Infographics, Online Infographic Maker and Creator
Labels:
Bing,
Companies,
Google,
Information graphics,
Microsoft,
search engine
Thursday, September 22, 2011
How to Create a Simple Natural Interaction (NI) App. - CodeProject
Introduction to Article
How to Create a Simple Natural Interaction (NI) App. - CodeProject
OpenNI is an easy and friendly platform, used for Natural Interaction (NI) programming to create NI Apps.
This article contains a short description for a beginner NI programmer on how to create a simple “Hello World” NI App.
Natural Interaction (NI) refers to a concept whereby Human-device interaction is based on human senses, mostly focused on visual and auditory senses. NITE™ by PrimeSense, is the middleware that perceives the world in 3D based on depth images, and translates these perceptions into meaningful data in the same way that people do. NITE acts as the perception engine that comprehends user interaction within their surroundings and includes both computer vision algorithms.
How to Create a Simple Natural Interaction (NI) App. - CodeProject
Tuesday, September 20, 2011
How to: Get Android 3.0 on your desktop PC with emulation | Everything About Tablets
Image via CrunchBaseGot Android apps to test but no hardware to use? Emulators are a good alternative.
How to: Get Android 3.0 on your desktop PC with emulation | Everything About Tablets
And here is an article about how to load an app form a apk file in an emulator
How to: Get Android 3.0 on your desktop PC with emulation | Everything About Tablets
And here is an article about how to load an app form a apk file in an emulator
How to Install APK Files on Android Device Emulator
Monday, September 19, 2011
XAMLFinance – A Cross-platform WPF, Silverlight & WP7 Application - CodeProject
Introduction to Article
XAMLFinance – A Cross-platform WPF, Silverlight & WP7 Application - CodeProject
This article describes the development of XAML Finance, a cross-platform application which works on the desktop, using Windows Presentation Foundation (WPF), on the web, using Silverlight and on Windows Phone 7 (WP7). My aim in writing this article is to highlight how the XAML based technologies used for desktop, web and mobile allow you to share large quantities of code and cost-effectively distribute your application on a range of devices.
XAMLFinance – A Cross-platform WPF, Silverlight & WP7 Application - CodeProject
Friday, September 16, 2011
vb.net - ComAutomationFactory - Stack Overflow
Image via WikipediaIntroduction to the article
vb.net - ComAutomationFactory - Stack Overflow
I'm trying to use the ComAutomationFactory class in VB .NET the example im working from is c# and is working fine but my project doesn't compile and says this class is not defined??
also what is the return type? in the c# example it returns a type of dynamic but this type does not exist in vb .NET?
vb.net - ComAutomationFactory - Stack Overflow
Related articles
- Asp.net Using Vb.net (docserve.wordpress.com)
- VB to .NET Migration (docserve.wordpress.com)
- Which is the good language vb net or asp net (wiki.answers.com)
- Programming VB.NET (docserve.wordpress.com)
Labels:
.NET Framework,
Microsoft,
NET,
Programming,
Visual Basic,
Visual Basic .NET
UI Automation in Silverlight - Simulating User Interactions - gaisen - Site Home - MSDN Blogs
Image via WikipediaIntroduction to article
UI Automation in Silverlight - Simulating User Interactions - gaisen - Site Home - MSDN Blogs
I was recently tasked with automating Silverlight Rich Internet Applications (RIAs) in our immediate group. Some tools out there provide limited assistance in this regard; for example, you can write unit tests against your Silverlight controls for in-proc testing. You can read more about that approach here: http://www.jeff.wilcox.name/2008/03/31/silverlight2-unit-testing/
UI Automation in Silverlight - Simulating User Interactions - gaisen - Site Home - MSDN Blogs
Related articles
- Expression Blend for Silverlight 5 now available (i-programmer.info)
- Unit Testing Silverlight from MSTest - Forcing VS to use the right Silverlight Assemblies (devlicio.us)
- Silverlight 4.0 : Open .Exe Files using COM Interoperability (devcurry.com)
Communication Between Local Silverlight-Based Applications
Image via CrunchBaseThese methods work regardless if the apps are running in or out of-browser!
Communication Between Local Silverlight-Based Applications
Communication Between Local Silverlight-Based Applications
Related articles
- Designing Silverlight Business Applications: Best Practices for Using Silverlight Effectively in the Enterprise (ridwan2906.wordpress.com)
- Silverlight 5 arrives for developers (i-programmer.info)
- Microsoft delivers near-final test version of Silverlight 5 (zdnet.com)
Cutting Edge Silverlight4 COM+ Features - Justin myJustin = new Silverlight.Expert.Justin();
Image via WikipediaHere is an invaluable blog article about how to use Silverlight 4 in Out-of-Browser to get effects that take advantage of the protected status that gives you a lot more openness to the operating system.
Cutting Edge Silverlight4 COM+ Features - Justin myJustin = new Silverlight.Expert.Justin();
Cutting Edge Silverlight4 COM+ Features - Justin myJustin = new Silverlight.Expert.Justin();
Related articles
- Expression Blend for Silverlight 5 now available (i-programmer.info)
- Silverlight Html MVC Helper (jeremybranham.wordpress.com)
- Silverlight TV 82: Custom Markup Extensions (channel9.msdn.com)
Thursday, September 15, 2011
How to Compress Several Pages into One page to Print in Silverlight - CodeProject
Image via WikipediaIntroduction to Article
How to Compress Several Pages into One page to Print in Silverlight - CodeProject
In this article, I will introduce the method to compress several pages contents in one page and print this page in Silverlight.
How to Compress Several Pages into One page to Print in Silverlight - CodeProject
Related articles
- Silverlight Html MVC Helper (jeremybranham.wordpress.com)
Windows Communication Foundation Basics - CodeProject
Windows Communication Foundation (WCF) basics for beginners
Windows Communication Foundation Basics - CodeProject
Windows Communication Foundation Basics - CodeProject
Related articles
- Windows Communication Foundation WCF 4.0 Tutorials (devcurry.com)
- What's New in the .NET Framework 4.5 (msdn.microsoft.com)
- Why Is Windows Phone 7 Winning Over Some Indie App Developers? (pcworld.com)
Wednesday, September 14, 2011
Installing Oracle 11g XE (Express Edition) - CodeProject
Introduction to Article
Installing Oracle 11g XE (Express Edition) - CodeProject
Oracle 11g XE is a free edition of Oracle database which supports most of the functionality of Standard edition. 11g XE is available (at least) for Windows and Linux.
As with all free versions of databases, also XE has limitations:
- The maximum database size is 11 GB
- The maximum amount of RAM XE can use is 1 GB
- Only one instance of Oracle XE can be installed on a single computer
- XE uses only a single CPU so it does not distribute operations between several CPU’s
Installing Oracle 11g XE (Express Edition) - CodeProject
Related articles
- Oracle 11g SecureFiles (sbhoracle.wordpress.com)
- Encryption Wizard Offers Transparent Data Encryption for Oracle 11g Release 2 (prweb.com)
- Cintra Achieves Specialization Status in Oracle Database 11g (prweb.com)
Sunday, September 11, 2011
Facebook Comments For Blogger - Blogger Widgets
Image via CrunchBaseWant to add Facebook comments to posts on Blogger? Here is a great tutorial about how to do it!
Facebook Comments For Blogger - Blogger Widgets
Facebook Comments For Blogger - Blogger Widgets
Related articles
- WordPress widget for Publicizing Blog Posts on facebook/Twitter is just a click away. (sohandhande.wordpress.com)
- Verizon FiOS Widgets; Twitter Talk During Your Shows (scrapsofmygeeklife.com)
- You Know You're a Blogger When... (buildabetterblog.com)
- Infolinks Presents a New Blogger Widget (prweb.com)
Labels:
Blog,
Blogger,
Facebook,
Facebook features,
Social network
Thursday, September 8, 2011
Common C#.NET Performance Guidelines - CodeProject
Image via WikipediaIntroduction to Article
Common C#.NET Performance Guidelines
Common C#.NET Performance Guidelines - CodeProject
Common C#.NET Performance Guidelines
Common C#.NET Performance Guidelines - CodeProject
Labels:
.Net,
.NET Framework,
C-sharp,
C#,
CodeProject,
NET,
Programming
Play AVI files in Silverlight 5 using MediaElement and MediaStreamSource - P/Invoke - CodeProject
Introduction to the Article
Play AVI files in Silverlight 5 using MediaElement and MediaStreamSource - P/Invoke - CodeProject
Silverlight 4 did not have P/Invoke support for calling native functions; Silverlight 5 does (see Pete Brown's blog for more details http://10rem.net/blog/2011/09/01/silverlight-5-rc-now-available). Our objectives for this HowTo article is no different from my previous article with almost exactly the same Title. That article dealt with COM support. It is important to go through that article first - most of the steps covered there won't be covered here (CustomMediaStreamSource.aspx).
So in short, just as the previous article, this HowTo article tries to demostrate the power of the MediaElement and MediaStreamSource classes with P/Invoke support to call native code to play an AVI video.
Play AVI files in Silverlight 5 using MediaElement and MediaStreamSource - P/Invoke - CodeProject
Related articles
- Silverlight 5 arrives for developers (i-programmer.info)
- Expression Blend for Silverlight 5 now available (i-programmer.info)
- Microsoft delivers near-final test version of Silverlight 5 (zdnet.com)
- Windows in Silverlight (i-programmer.info)
- Unit Testing Silverlight from MSTest - Forcing VS to use the right Silverlight Assemblies (devlicio.us)
Wednesday, September 7, 2011
Vizualize.me Creates an Infographic Resume for You in One Click
There is a website you can go to generate an Infographic Resume based on you! Here is mine!
Vizualize.me Creates an Infographic Resume for You in One Click
Vizualize.me Creates an Infographic Resume for You in One Click
Monday, September 5, 2011
You Built What?! A Real Iron Man Suit | Popular Science
Here is a great story. Someone made a home-made War Machine suit!
You Built What?! A Real Iron Man Suit | Popular Science
You Built What?! A Real Iron Man Suit | Popular Science
Labels:
fan-made,
Iron Man,
Popular Science,
War Machine
Transformers G1 : Awakening Android Download Game v1.0.0
Hey, there is a Transformers G1 game for Android! I don't really like turn-based battle in a video game but on the plus side it is Transformers!
Transformers G1 : Awakening Android Download Game v1.0.0
Transformers G1 : Awakening Android Download Game v1.0.0
Labels:
Android,
Transformers,
Transformers G1: Awakening,
Video game
Subscribe to:
Posts (Atom)