|
|
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.
|
49 Articles match "Configuration","How To"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
In this course, you learn to: Leverage new features of C# 3.0, Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET? How is LINQ to Entities different from LINQ to SQL? We learn to correctly apply these features and avoid their misuse.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Spring 2.5 and Hibernate
Explain how the issues associated with object persistence in a relational model are addressed by Hibernate Understand the relationships between SQL, Java, Spring, and Hibernate Discuss the challenges to adopting Hibernate in the enterprise Write applications that take advantage of the Hibernate Persistence Manager. Map Java classes to relational tables. Understand how identity and keys are handled in Hibernate. Understand the persistent object lifecycle and how that relates to transactions and concurrency. Spring makes J2EE development easier.
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
You'll get answers to these questions: How do I understand the page-processing and request-processing framework? How can I build custom lists, pages, master pages, web parts, event handlers, content types and more? How do I connect to the object model? What is the best way to handle authentication for extranet users and intranet users? Come and learn to build solutions for Windows SharePoint Technologies! DevelopMentor's Essential courses provide four to five days of instructor-led training for the experienced developer. intranet?
DevelopMentor Courses
- Friday, June 12, 2009
|
32 Articles match "Configuration","How To"
|
The Latest from DevelopMentor
|
MORE
|
|
Unity, Multiple Constructors and Configuration
Its mostly straightforward as IoC containers go but one thing had me puzzled for a while as its not really documented or blogged as far as I can see; so I decided to blog it so hopefully others looking will stumble across this article. Notice that MyService needs an IRepository to do its work. Now the idea here is I’m going to wire this together via dependency injection and the Unity IoC container. However, there must be some information about how the interfaces map to concrete types and this is in the config file. 1: public interface IService. and MyService.
.NET Meanderings
- Monday, June 7, 2010
Workflow 4 Services and duplex communications
There are quite a a few cases where it is useful to have a duplex communications. An obvious candidate is allowing a service to notify the user interface application of the progress so the user knows what is happening. But with a workflow service this doesn’t work because, without the ServiceContract attribute, there is no way to specify the CallbackContract. So if we can’t use a CallbackContract how can we do so? Also settings a workflow, and the client, up for durable duplex takes a bit more configuring. So lets take a look how to do so. Enjoy.
The Problem Solver
- Monday, May 3, 2010
Workflow 4 Services and duplex communications
There are quite a a few cases where it is useful to have a duplex communications. An obvious candidate is allowing a service to notify the user interface application of the progress so the user knows what is happening. But with a workflow service this doesn’t work because, without the ServiceContract attribute, there is no way to specify the CallbackContract. So if we can’t use a CallbackContract how can we do so? Also settings a workflow, and the client, up for durable duplex takes a bit more configuring. So lets take a look how to do so. Enjoy.
The Problem Solver
- Monday, May 3, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
How to build a Development/Test/Demo CA
So I ended up running Windows Cerificate Services which proved to be an easy to use, robust solution. There are some gotchas you can run into and I refined my configuration over the years. just had to rebuild my Test CA (on Hyper-V) so I thought I'll document the important steps (for self-reference and whoever might be interested). They usually expire on the very day where you have to do an important demo. You can configure the lifetime in the registry. Now by default there is an entry pointing to the CA's Netbios name. Set it to e.g.
www.leastprivilege.com
- Thursday, August 14, 2008
-
Geneva Framework Quick Tip: How to access Configuration
One thing you most often need is access to the Geneva framework configuration (microsoft.identityModel section) from code – and again this is very easy: ServiceConfiguration config = new. Remember that Geneva framework is a framework – all the nice integration into WCF and ASP.NET is built on top of a public API. This also means that you can use Geneva framework for integration in arbitrary hosts and environments. ServiceConfiguration ( ServiceConfiguration.DefaultServiceName); HTH.
www.leastprivilege.com
- Wednesday, May 27, 2009
-
How to use app.config files in Visual C++ 2005 projects
Before the target application is started, (with or without a debug session), the language package ensures that the app.config file is automaticallly copied to the target application's configuration file. Visual C++ does not have this feature, however it is easy to get the same: Add a file named app.coinfig to a Visial C++ project and choose the following project settings: Command line: type app.config > "$(TargetPath).config". Description: "Updating target's configuration file". config". Outputs: "(TargetPath).config". config".
Marcus' Blog
- Friday, November 11, 2005
-
WIF Configuration – Part 1: ServiceConfiguration
WIF supports a flexible configuration system and various ways to programmatically interact with that configuration. This flexibility comes in two ways: Named configuration elements that you can selectively load (service & token handler configuration). Configuration extensibility (e.g. In this first part I’ll focus on the service configuration. The WIF configuration can have several service elements. Services can be named, the unnamed element becomes the default configuration: <!-- default configuration --> <!--
www.leastprivilege.com
- Tuesday, December 22, 2009
-
How to use a publishing page as display form
A client wanted to place a SharePoint calendar on a publishing page and have it configured such that when you clicked an event the full details showed up at the top of the page, and searching for calendar items should also put you at this page. Sounds easy just put the calendar view on the page and set the calendars display form to be that page. But setting the display form to be the publishing page puts the ID of the calendar item in the URL of the publishing page which then confuses SharePoint as it thinks it has to lookup that id in the Pages list.
The Black Knight Sings
- Friday, June 27, 2008
-
Unity, Multiple Constructors and Configuration
Its mostly straightforward as IoC containers go but one thing had me puzzled for a while as its not really documented or blogged as far as I can see; so I decided to blog it so hopefully others looking will stumble across this article. Notice that MyService needs an IRepository to do its work. Now the idea here is I’m going to wire this together via dependency injection and the Unity IoC container. However, there must be some information about how the interfaces map to concrete types and this is in the config file. 1: public interface IService. and MyService.
.NET Meanderings
- Monday, June 7, 2010
-
Using WF4 bookmarks with IWorkflowInstanceExtension
Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Neither the WorkflowInvoker not the WorkflowServiceHost contain a ResumeBookmark function so how do we resume a bookmark using either of those execution hosts? The trick is to use a IWorkflowInstanceExtension. But that also means they are not aware of the workflow runtime environment and can’t do much more that respond to calls from a workflow. This interface has just two methods. return null ; }.
The Problem Solver
- Wednesday, January 27, 2010
|
|
|