| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
21 Articles match "Visual Studio","WCF"
| Related DevelopMentor Courses | MORE | | WCF SOAP and REST Multi-Project Visual Studio Templates Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. What I like about this sort of project template is that it produces a much more realistic WCF solution with entities spit off into a separate project that is referenced from both the service and client projects. ve been doing quite a bit more WCF work lately and found myself creating the same kind of WCF SOAP projects over and over again. DevelopMentor Courses - Sunday, June 10, 2012 Simple WCF SOAP-REST Multi-Project Template did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. My other REST and SOAP templates are intended as a starting point for more real-world WCF services. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. Search for “WCF SOAP-REST” in the Online Gallery, then click Download to install the extension. Technical REST SOAP Visual Studio WCFEnjoy. DevelopMentor Courses - Monday, June 11, 2012 Visual Studio 2010: Debugging a x86 WCF service on a x64 machine I just ran into an issue where I have a WCF service that depends on a.NET assembly that is compiled specifically for x86. No problem, but now when I want to test or add a service reference to this WCF service I ran into the problem that WcfSvcHost and WcfTestClient both will run a x64 because I’m running Windows 7 x64. found the answer in the forums and adapted the answer for my specific problem: 1.Copy WcfSvcHost.exe and WcfTestClient.exe from C:program files (x86)Microsoft Visual Studio 10.0Common7IDE to a local directory. Visual Studio 2010 WCF Windows 7 DevelopMentor Courses - Wednesday, October 5, 2011 |
39 Articles match "Visual Studio","WCF"
| The Latest from DevelopMentor | MORE | | The Architecture of WCF 'Before WCF it was, of course, possible for software running on different machines to communicate. The goal of WCF was to provide a unified API for communication and to be able to provide a common level of service irrespective of the underlying transport. To understand the structure of WCF and why it looks the way it does useful starting point are the four tenets of service orientation. There are three core concepts at play whenever you use WCF: messages, channels and encoders. Message is a first class construct in WCF and are modeled on SOAP messages. DevelopMentor Courses - Sunday, April 7, 2013 Simple WCF SOAP-REST Multi-Project Template did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. My other REST and SOAP templates are intended as a starting point for more real-world WCF services. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. Search for “WCF SOAP-REST” in the Online Gallery, then click Download to install the extension. Technical REST SOAP Visual Studio WCFEnjoy. DevelopMentor Courses - Monday, June 11, 2012 WCF SOAP and REST Multi-Project Visual Studio Templates Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. What I like about this sort of project template is that it produces a much more realistic WCF solution with entities spit off into a separate project that is referenced from both the service and client projects. ve been doing quite a bit more WCF work lately and found myself creating the same kind of WCF SOAP projects over and over again. DevelopMentor Courses - Sunday, June 10, 2012 | -
| The Best from DevelopMentor | MORE | - Build a Multi-Project Visual Studio Template
To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. After installing the toolkit, all a developer needs to do to get started is open Visual Studio and create a new project by selecting one the project templates that appear under the Mvvm category. Visual Studio makes it extremely easy to create a single-project template. Now that you’ve created a multi-project Visual Studio template, you need a way to deploy it. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 - WCF SOAP and REST Multi-Project Visual Studio Templates
Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. What I like about this sort of project template is that it produces a much more realistic WCF solution with entities spit off into a separate project that is referenced from both the service and client projects. ve been doing quite a bit more WCF work lately and found myself creating the same kind of WCF SOAP projects over and over again. DevelopMentor Courses - Sunday, June 10, 2012 - Reporting using Entity Framework
No need to fear, Visual Studio offers a solution. Starting with Visual Studio 2005 Microsoft started shipping the ReportViewerControl with Visual Studio. The data can still come from a database, but also from a WCF Service, any.NET object or SharePoint. 39: Next step is to create a WCF service application, add an Entity Framework model and drag the two views onto the model: Next we’ll implement two methods to use the Entity Framework model to select the data and return a list of CustomerView or OrderView objects. Life is good. 2: GO. The Blomsma Code - Wednesday, October 20, 2010 - Visual Studio Tricks Series: #2 Multiple Startup Projects
W elcome to the next installment of my Visual Studio Tricks series. Suppose you're working on a brand new WCF application that has both a client and server piece. Tags: Visual Studio Continuing on from last time when I discussed how to quickly switch between startup projects using hot-keys, we'll cover another startup project trick. Here's the scenario. You need to start both the client and server to accomplish anything interesting. Most people fumble around starting the server, then the client. Did you know that you can tell VS to run both at once. Enjoy! Michael C. Kennedy's Weblog - Wednesday, August 22, 2007 - Digging into WCF REST
Last Thursday evening I presented a talk to the Dallas.NET User Group on support in WCF 4 for building REST-ful services. Building REST-ful Services with the WCF Web Programming Model REST is defined as an architectural style for building services that embrace the principles of the web. He’ll also get down and dirty using the WCF Web Programming Model and show how WCF makes it easy to serve up POX or JSON, increasing the reach of your services to clients that don’t understand or care about SOAP. WCF 3.5 WCF 4.0 Technical WCFEnjoy. Tony and Zuzana's World - Saturday, September 10, 2011 - Entity Framework 4 : ContextOption.LazyLoadingEnabled
Now suppose the above code is part of a WCF operation. The WCF operation want to return the Employee to the caller. Here is what happens: When WCF starts serializing the Employee object it sees the Department property and will try to access the property, since it setup to do lazy loading it will now go back to the database to load the department row. This may throw you off and make you look for a WCF issue, but you’ll be looking in the wrong area. According to the documentation ( [link] ) it should default to false.NET C# Visual Studio 2010 WCF The Blomsma Code - Tuesday, January 18, 2011 - Visual Studio 2010: Debugging a x86 WCF service on a x64 machine
I just ran into an issue where I have a WCF service that depends on a.NET assembly that is compiled specifically for x86. No problem, but now when I want to test or add a service reference to this WCF service I ran into the problem that WcfSvcHost and WcfTestClient both will run a x64 because I’m running Windows 7 x64. found the answer in the forums and adapted the answer for my specific problem: 1.Copy WcfSvcHost.exe and WcfTestClient.exe from C:program files (x86)Microsoft Visual Studio 10.0Common7IDE to a local directory. Visual Studio 2010 WCF Windows 7 DevelopMentor Courses - Wednesday, October 5, 2011 %>
| | |