|
|
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.
|
72 Articles match "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. Basic testing terminology is defined. This course will also explore various issues involved in testing the software's nonfunctional requirements.
DevelopMentor Courses
- Monday, June 22, 2009
Essential LINQ with the Entity Framework
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. 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?
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. Day 2 Programming with the Object Model In order to develop and customize functionality in WSS and MOSS, we must be able to gain access to all the various objects through the API. We learn to build sophisticated workflows using the out-of-the-box functionality in the new version of SharePoint. We cover the advanced issues of building workflows that go outside the basic OOB functionality.
DevelopMentor Courses
- Friday, June 12, 2009
|
147 Articles match "Functionality"
|
The Latest from DevelopMentor
|
MORE
|
|
Software Architect Conference 2010
examining both the rich functionality of the library, how it can be best leveraged avoiding common parallel pitfalls and finally looking at patterns that aid parallelisation of your code. I’m speaking at Software Architect 2010 in October. m going to be delivering two sessions on Windows Workflow Foundation 4.0: the first explains the basic architecture and looks at using workflow as a Visual Scripting environment to empower business users. The second looks at building big systems with workflow concentrating on the WCF integration features.
.NET Meanderings
- Tuesday, June 8, 2010
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. 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? The first step is to break down the performance of a real program using detailed profiling data.
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). {. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Its a long story but the most important points where that workflow services don’t support the same style duplex communication as WCF with the callback channel defined in the ServiceContract but rather something that is called durable duplex where the callback contract is independent and the client has to create a ServiceHost and act as a full-blown WCF service. So what is the problem with this?
The Problem Solver
- Tuesday, May 4, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Marshalling native function pointers
Recently, a customer asked me how to marshal function pointers across managed / unmanaged interop boundaries. If you know a simple API and two attributes and if you are aware of a pitfall specific to marshaling function pointers, the job can be quite easy. In my book I focus on wrapping class libraries that use virtual functions for callbacks instead of function pointers, because virtual functions are the typical C++-like approach for callbacks. The managed equivalent to a native function pointer is a delegate. struct CallbackData. {. of the CLR.
Marcus' Blog
- Friday, April 6, 2007
-
Mixed mode DLLs: Problem with public functions using native types as arguments
Edward Diener asked an very interesting question : Why can't I call a function having arguments of a native type like std::string from another assembly? If you try to compile this code, you will get a disappointing error message: error C3767: 'Conversions::S2S': candidate function(s) not accessible. Why is a public static function S2S of a public type Convesions not accessible? This managed wrapper value type is private, therefore, the Conversions::S2S cannot be called from outside the assembly even though it is a public function of a public type. include. include.
Marcus' Blog
- Tuesday, March 21, 2006
-
Requirements not functionality
In Competitive Engineering Tom Gilb argues that development groups spend a lot of time focusing on functional requirements but they should actually focus on performance and quality requirements: “ From the point of view of understanding ‘competitiveness’, ‘levels of achievement’ and ‘associated risk’, the performance requirements are by far the most interesting requirements. Yet, traditionally, too much attention has been given to specification of functional requirements and resource requirements.” A footnote to the recent discussion of requirements.
Allan Kelly's Blog
- Friday, February 27, 2009
-
Can DLLs export managed functions to native clients?
System::Console::WriteLine("I am f(), a managed function that test.dll exports to native clients"); }. dumpbin /exports test.dll" will show you that there is indeed a native exported function: ordinal hint RVA name. System::Console::WriteLine("I am f(), a managed function that can be called by native clients"); }. System::Console::WriteLine("I am f2(), a managed function that can be called by native clients"); }. The native function main can not call f without some magic that is going on under the hood: Think of a scenario, where f has not even been jit compiled.
Marcus' Blog
- Wednesday, October 19, 2005
-
Rehosting the Workflow Designer in WF4
With Windows Workflow Foundation 4 live has become much better on the rehosting front In fact it is possible to create the fully functional and useful workflow editor below in about 200 lines of code. And loading or saving a workflow is easy to, all it takes is a Load() and Save() function pointing to a XAML file. We could periodically check this Selection but its even easier to subscribe to chances using the Subscribe() function and passing in a handler that is called whenever the selection changes. Note: This blog post is written using the.NET framework 4.0 null ). {.
The Problem Solver
- Wednesday, December 23, 2009
-
Using WF4 bookmarks with IWorkflowInstanceExtension
Neither the WorkflowInvoker not the WorkflowServiceHost contain a ResumeBookmark function so how do we resume a bookmark using either of those execution hosts? Note that the GetAdditionalExtensions() function just returns null as we are not adding extra extensions. The easiest option is to let the activity itself do so in the CacheMetadata() function by using the AddDefaultExtensionProvider() function. Note: This blog post is written using the.NET framework 4.0 Using that in a WorkflowApplication was easy but what about WorkflowInvoker or WorkflowServiceHost? Enjoy!
The Problem Solver
- Wednesday, January 27, 2010
-
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
|
|
|