|
|
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.
|
62 Articles match "Course","Functionality"
|
Related DevelopMentor Courses
|
MORE
|
|
Software Functional Testing
Understand the basic concepts of software testing Perform effective and efficient functional testing of software Select the appropriate tests to regression test your software after changes have been made Software Functional Testing is a 2-day course designed to provide an excellent knowledge base and practical skills for anyone interested in improving Software Testing and Test Management techniques and practices in their organization. This course will also explore various issues involved in testing the software's nonfunctional requirements. When to Test? How to Test?
DevelopMentor Courses
- Monday, June 22, 2009
Essential LINQ with the Entity Framework
In this course, you learn to: Leverage new features of C# 3.0, With SQL-like syntax (from, where, select, orderby, group by), we can leverage an assortment of query operators to perform join, partition, conversion, and aggregation functions. 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. How is LINQ to Entities different from LINQ to SQL? Appendices ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
Essential Spring 2.5 and Hibernate
Work with Spring's support for transactions Understand how to use Hibernate within the Spring framework Integrating Hibernate and Spring is a five day in-depth course geared for experienced Java developers who need to understand what Hibernate is in terms of today's systems and architectures, and how to apply Hibernate to persistence requirements in Java and J2EE applications.? The course then covers to the Spring framework and how to integrate Hibernate as the persistence layer for Spring applications. Map Java classes to relational tables. Spring makes J2EE development easier.
DevelopMentor Courses
- Friday, June 12, 2009
|
44 Articles match "Course","Functionality"
|
The Latest from DevelopMentor
|
MORE
|
|
Computer Language Benchmarks
This data can be broken down into the % of time spent doing object allocation, function calls, int & float math, loops, and other low-level operations. Of course, this calculation is extremely crude, but the goal is to get a sense of the difference in scale. The Computer Language Benchmarks Game explains the limits of comparing the performance of different programming languages (PL) using simplistic benchmarks. The issue is how to map the performance of real programs to a new language using data from simple benchmarks. How would my Java program perform if written in Haskell?
Handwaving
- Wednesday, May 26, 2010
More Workflow 4 Services and duplex communications
The code in the Main() function now looks like this: static void Main( string [] args). {. Of course they don’t receive the data being passed in the callback so that is something to keep in mind when deigning your workflow. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Also the callback address had to be passed by the client using CallbackContextMessageProperty and the workflow service had to use a callback correlation handle to connect the Receive activity with the Send activity used for the callback. As it turns out it is!
The Problem Solver
- Tuesday, May 4, 2010
More Workflow 4 Services and duplex communications
The code in the Main() function now looks like this: static void Main( string [] args). {. Of course they don’t receive the data being passed in the callback so that is something to keep in mind when deigning your workflow. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Also the callback address had to be passed by the client using CallbackContextMessageProperty and the workflow service had to use a callback correlation handle to connect the Receive activity with the Send activity used for the callback. Conclusion.
The Problem Solver
- Tuesday, May 4, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
ELINQ with EF 4.0 Course Update
I’ve been working feverishly the last couple of months to update my DevelopMentor course: Essential LINQ with Entity Framework 4.0. Here is a breakdown of the course content: Day 1: 1. Functional Programming in C# 2. Here’s when and where we’re offering the course: Boston: February 9-12, 2010 London: February 23-26, 2010 Los Angeles: March 30-April 2, 2010 Boston: April 20-23, 2010 London: May 4-7, 2010 Los Angeles: June 8-11, 2010 Boston: June 29-July 2, 2010. LINQ to Objects 3. LINQ to XML. Day 2: 4. LINQ to SQL 5. EF: Architecture 6. EF: LINQ to Entities.
Tony and Zuzana's World
- Tuesday, December 29, 2009
-
The new Windows Workflow Foundation 4 runtime
The same functionality in WF4 looks very different: static void Main( string [] args). {. Of course this would affect every workflow created through the same WorkflowRuntime. With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows. To compare the two, this is what a minimal console application looks like in WF3. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. Nice right!
The Problem Solver
- Tuesday, June 23, 2009
-
Workflow 4 Services and duplex communications
Add a console application, add a service reference to the workflow service and add the following code to the Main() function: static void Main( string [] args). {. Next step is to update the Main() function to host this service: static void Main( string [] args). {. This can be done with an OperationContextScope by replacing the proxy.GetDate() call with the following code in the Main() function: var proxy = new ServiceClient(); using ( new OperationContextScope((IContextChannel)proxy.InnerChannel)). {. public interface IService1. {. OperationContract]. ServiceContract].
The Problem Solver
- Monday, May 3, 2010
-
WCF Duplex Messaging
Now normally a contract just determines what functionality is available at the service. Now the issue is of course that the call is going to be processed on a non UI thread so you would have to manually marshal any UI interaction using the SynchronizationContext.Post method. I am one of the moderators of the MSDN WCF Forum. One of the main areas of questions on the forum is duplex messaging – particularly using the WSDualHttpBinding. What is Duplex Messaging? However, the first three of these are supported natively in WCF and are known as One-way, request/response and duplex.
.NET Meanderings
- Tuesday, June 9, 2009
-
More Workflow 4 Services and duplex communications
The code in the Main() function now looks like this: static void Main( string [] args). {. Of course they don’t receive the data being passed in the callback so that is something to keep in mind when deigning your workflow. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Also the callback address had to be passed by the client using CallbackContextMessageProperty and the workflow service had to use a callback correlation handle to connect the Receive activity with the Send activity used for the callback. As it turns out it is!
The Problem Solver
- Tuesday, May 4, 2010
-
Implications of the Power Law
If you take a source code base and count the length of each function you will find a few long functions and lots of small functions. few functions account for most of the execution time. Not necessarily the long functions I just mentioned, they could be short. Obviously this law has implications for performance optimisation: find and optimise those few functions where the time is spent. Because they exist in a function which is very very rarely used. One of the topics that resurfaced at SPA was the Power Law. Is this another Power Law at work?
Allan Kelly's Blog
- Sunday, March 23, 2008
-
Article: Building a Twitter Application in.NET
In short, we needed more functionality than Twitter provides. Of course you must have the REST Starter Kit installed for this to work.[2]. I recently wrote an article for DevelopMentor 's Developments newsletter entitled Building a Twitter Application in.NET. You can read it at the DevelopMentor website: [link]. I've republished here for my readers. Enjoy! Building a Twitter Application in.NET. by Michael Kennedy ( @mkennedy ). link]. Twitter has become one of the web's hottest properties. In fact, it grew at a rate of 1400% this past year [ bit.ly/jG9BG jG9BG ]. Case 1. Case 2.
|
|
|