|
|
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.
|
13 Articles match "Format"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Biztalk Server (accelerated format)
Architecture Orchestrations XML and XML Schemas in BizTalk Using the Orchestration Designer Writing XSLTs with BizTalk Maps Creating and Managing Ports Adapters and Pipelines Custom Adapters and Pipelines Using Web Services in BizTalk Health Monitoring Security Automation Business Rules Engine Correlation and Convoys Transactions Debugging Strategies New Adapters in 2006 New Administration and Deployment Features BAM Essential BizTalk Server teaches best practices in BizTalk applications: set up, configuration, development, deployment, tracking, and administration. both atomic and long-running.
DevelopMentor Courses
- Friday, June 12, 2009
Virtual XML Fundamentals (XML, Schema, XPath & XSLT)
Improvements XSLT 2.0 - No More RTFs XSLT 2.0 - Multiple Output Documents XSLT 2.0 - Dynamic attribute values XSLT 2.0 - Manipulation of XPath sequences XSLT 2.0 - Custom Functions XSLT 2.0 - Transclusion XSLT 2.0 - Regular Expression Processing XSL FO (Formatting Objects) What is XSL-FO? This course provides indoctrination in the practical use of W3C standards (including XSL and XML Schema) and of implementing tools and technologies. This course is programming language independent, making it useful for Java,NET, C++, and any other programming orientation. and XSLT 2.0 Sequences XPath 2.0
DevelopMentor Courses
- Thursday, June 24, 2010
Essential J2EE using Servlets/JSPs, Tags, JDBC, EJBs
JSP Format Rules JSP Error Pages The Expression Language The Expression Language The Expression Language (JSP 2.0) Design and build robust, secure, and maintainable web applications Access databases with JDBC Create dynamic HTML content with Servlets and Java Server Pages Make Servlets and JSP work together cleanly Use JSP 2.0, Java 2, Enterprise Edition (J2EE) is a powerful platform for building web applications. The J2EE platform offers all the advantages of developing in Java plus a comprehensive suite of server-side technologies. fw863 Session:? What is J2EE? JSP 2.0
DevelopMentor Courses
- Friday, June 12, 2009
|
60 Articles match "Format"
|
The Latest from DevelopMentor
|
MORE
|
|
A3 reports: templates and observations
Strictly speaking there isn’t a specified A3 format. One thing that struct me while reading Shook’s description of A3 is their similarity to patterns: both involve a context, a problem, the things that make the problem hard (forces or analysis), both propose a better way (solution or counter measures), both value brevity and both allow the authors to change the format to suit the problem. recently experimented with A3 formats on a coaching assignment with a client. As I mentioned last time, I recently delivered a course on Lean software development in Oslo.
Allan Kelly's Blog
- Monday, May 17, 2010
Thinktecture.IdentityModel: WRAP and SWT Support
It combines a number of features: conversion between string format and CLR type representation. The latest drop of Thinktecture.IdentityModel contains some helpers for the Web Resource Authorization Protocol (WRAP) and Simple Web Tokens (SWT). The WrapClient class is a helper to request SWT tokens via WRAP. It supports issuer/key, SWT and SAML input credentials, e.g.: var client = new WrapClient (wrapEp); var swt = client.Issue(issuerName, issuerKey, scope); All Issue overrides return a SimpleWebToken type, which brings me to the next helper class. creation of SWT tokens.
www.leastprivilege.com
- Sunday, May 9, 2010
The NoSQL Movement, LINQ, and MongoDB - Oh My!
The means of interaction with the server is through JavaScript rather than T-SQL and the storage format is a binary form of JSON as you can see. Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm. Insanity!” you may cry, “for where will people put their data if not in a database? Flat files? Tell me we aren’t we going back to flat files.”. No, but in the relational model, something does has to give. Ok, ok.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Using Model – View – ViewModel with Silverlight
The FullName property represents some business rule on how a name should be formatted. Just like I had a business rule about how to format a FullName I have a rule about the font weight to use to display the FullName. The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. The View is data bound to a ViewModel. This is the most important step to remember. 11: {.
The Problem Solver
- Tuesday, April 7, 2009
-
Integrating Simple Web Tokens (SWT) with WCF REST Services using WIF
The Simple Web Token (SWT) is a new & simple token format that was created by Microsoft, Google and others. The downsides are – it is not a widely adopted token format (current spec version is 0.9.5.1) See here for specs. The Azure platform App Fabric Access Control service e.g. uses this token type. Why yet another token type? Well – the advantages of SWT are that it is simple to construct (form encoded key value pairs), that only simple crypto is needed (SHA256 HMACs) and that it is compact on the wire which allows easy embedding in HTTP headers or query strings.
www.leastprivilege.com
- Monday, February 8, 2010
-
Verifying JavaScript with JSLint and Visual Studio
It also outputs any errors it finds in a format compatible with Visual Studio. Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. In it, he describes what parts of the JavaScript language we should be using (the good parts) and what parts we shouldn’t (the bad and the awful parts). To help keep ourselves in check, he’s made his JSLint tool available years ago, but I always found myself too lazy to copy/paste my script into the tool to verify it. And, no, I don’t mean my web browser—I mean cscript.exe.
Jason Diamond
- Saturday, August 9, 2008
-
Verifying JavaScript with JSLint and Visual Studio
It also outputs any errors it finds in a format compatible with Visual Studio. Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. In it, he describes what parts of the JavaScript language we should be using (the good parts) and what parts we shouldn’t (the bad and the awful parts). To help keep ourselves in check, he’s made his JSLint tool available years ago, but I always found myself too lazy to copy/paste my script into the tool to verify it. It’s too simple, though.
Jason Diamond
- Saturday, August 9, 2008
-
NET RIA Services and data communication
It turns out the.NET RIA Services use JSON as their serialization format. I was working on an article about the.NET RIA Services and decided to fire up Fiddler to take a close look at the data actually passed around. was sort of expecting to see a WCF REST based approach with XML messages. Turns out I was wrong, though I expect this option will be added in the future. This is actually kind of nice as the DataContractJsonSerializer is part of the System.ServiceModel.Web assembly and therefore usable by all.NET clients. So the same.NET RIA Services library gives us lots of client options.
The Problem Solver
- Monday, April 6, 2009
-
Article: Building a Twitter Application in.NET
So you may want to simply pull this feed into your website rather than digging into the Twitter API and consuming custom XML or JSON formats. What you get back to dependent on the requested format. Here again we have the four possible formats: XML, JSON, RSS, ATOM. The date-time format used by the Twitter API is not directly parseable in.NET. The format returned is in the format "Fri Feb 01 18:18:08 +0000 2008". I recently wrote an article for DevelopMentor 's Developments newsletter entitled Building a Twitter Application in.NET. Enjoy! link]. jG9BG ].
-
WCF Data Services versus WCF Soap Services
The truth is that RIA Services rests on Data Services, which is turn sits on top of Web HTTP Services (aka REST), which is tightly coupled to HTTP as a transport and XML, Atom or Json as a format. Only SOAP Services (leaving Workflow Services aside for the moment) can be used with any format and transport protocol. Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? Heck, it even supports batch updating and concurrency control.
Tony and Zuzana's World
- Tuesday, April 13, 2010
|
|
|