| |
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.
|
22 Articles match "AJAX","Web"
| Related DevelopMentor Courses | MORE | | Roll Your Own REST-ful WCF Router Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. This allows the service to be entirely stateless and function easily in a web farm environment without maintaining client state between method calls. Download the code for this post here. FirstOrDefault(); if (region != Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 Guerrilla.NET (US) Training LINQ : Use LINQ to access objects, XML, and SQL relational data MVC : Learn the how build modern web applications using ASP.NET MVC 3.0 MVC : Build modern web applications and services using JavaScript, jQuery, AJAX, REST, ASP.NET MVC, and more. oData : Expose your SQL data sources to rich clients and RIA web applications using WCF Data Services and oData. LINQ : Use LINQ to access objects, XML, and SQL relational data MVC : Learn the how build modern web applications using ASP.NET MVC 3.0 dynamic typing from C# 4.0, assuming Silverlight 5.0 and jQuery. and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Spring 3.0 and the Enterprise Training This course provides coverage of the concepts and practices for interacting between Spring and relational databases, security components, distributed resources, web services, messaging, EJB3, and other components. Web Services Interoperability Organization XML and Java APIs at a Glance J2EE and Web Services Web Services Stacks at a Glance SOAP in a Nutshell SOAP and HTTP SOAP Specification Why do I need SOAP? Students who attend Spring 3.0 Processes and best practices are discussed and illustrated through both discussions and group activities. DevelopMentor Courses - Tuesday, March 1, 2011 |
17 Articles match "AJAX","Web"
| The Latest from DevelopMentor | MORE | | Improve perceived performance of ASP.NET MVC websites with asynchronous partial views Now, you web app is mostly fast and responsive, but there are certain types of data that just bring the whole thing to a grind. We can load the fast data immediately using direct model to razor processing and pus the loading of the slow parts to an asynchronous operation using AJAX. MVC will easily serve the PopularControl’s content up over AJAX and same for any other partial view. Each partialContents section has a message and image to show an AJAX indicator that we are working on that area. Articles.NET ASP.NET jQuery MVC webFirst a disclaimer / warning. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 Roll Your Own REST-ful WCF Router Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. This allows the service to be entirely stateless and function easily in a web farm environment without maintaining client state between method calls. Download the code for this post here. FirstOrDefault(); if (region != Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 Using jQuery from an HTML5 Web Worker jQuery is one of the most useful frameworks out there for web development. ajax() and related, like the $.getJSON() Now HTML5 contains a real useful part in Web Workers for doing work that should not block the background thread. And using the XMLHttpRequest for network IO is fine in a Web Worker. Unfortunately however working with the DOM is not ok in the Web Worker, which makes total sense, but as a result using jQuery, which has lots of DOM related code is not fine in a Web Worker. getJSON() , functions. Enjoy! TheProblemSolver DotNetEvents. The Problem Solver - Tuesday, April 10, 2012 | -
| The Best from DevelopMentor | MORE | - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
Now, you web app is mostly fast and responsive, but there are certain types of data that just bring the whole thing to a grind. We can load the fast data immediately using direct model to razor processing and pus the loading of the slow parts to an asynchronous operation using AJAX. MVC will easily serve the PopularControl’s content up over AJAX and same for any other partial view. Each partialContents section has a message and image to show an AJAX indicator that we are working on that area. Articles.NET ASP.NET jQuery MVC webFirst a disclaimer / warning. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Using jQuery from an HTML5 Web Worker
jQuery is one of the most useful frameworks out there for web development. ajax() and related, like the $.getJSON() Now HTML5 contains a real useful part in Web Workers for doing work that should not block the background thread. And using the XMLHttpRequest for network IO is fine in a Web Worker. Unfortunately however working with the DOM is not ok in the Web Worker, which makes total sense, but as a result using jQuery, which has lots of DOM related code is not fine in a Web Worker. getJSON() , functions. Enjoy! TheProblemSolver DotNetEvents. The Problem Solver - Tuesday, April 10, 2012 - ASP.NET WebAPI Security 5: JavaScript Clients
The most common is probably that the JS code is originating from the same web application that also contains the web APIs. Think a web page that does some AJAX style callbacks to an API that belongs to that web app – Validation, data access etc. The typical course of events is that the user first logs on to the web application – which will result in an authentication cookie of some sort. That cookie will get round-tripped with your AJAX calls and ASP.NET does its magic to establish a client identity context. ajax({. ajax({. else {. www.leastprivilege.com - Thursday, March 15, 2012 - Verifying JavaScript with JSLint and Visual Studio
And, no, I don’t mean my web browser—I mean cscript.exe. Mr. Crockford does have a simple, cscript-compatible version of his script on his web site. I’ve also added an option that adds the global variables defined in the Microsoft AJAX Library so that you don’t have to declare them in each of your scripts or on the command line. I’ve turned that option on by default, but it shouldn’t hurt you if you’re not using ASP.NET AJAX. from the JSLint web site. finally decided to make this an almost instantaneous process. Jason Diamond - Saturday, August 9, 2008 - Verifying JavaScript with JSLint and Visual Studio
And, no, I don’t mean my web browser—I mean cscript.exe. Mr. Crockford does have a simple, cscript-compatible version of his script on his web site. ve also added an option that adds the global variables defined in the Microsoft AJAX Library so that you don’t have to declare them in each of your scripts or on the command line. ve turned that option on by default, but it shouldn’t hurt you if you’re not using ASP.NET AJAX. from the JSLint web site. Next, download jslint.wsf from this web site and put it in the same folder you put fulljslint.js Jason Diamond - Saturday, August 9, 2008 - ASP.NET WebAPI Security 3: Extensible Authentication Framework
In my last post, I described the identity architecture of ASP.NET Web API. The short version was, that Web API (beta 1) does not really have an authentication system on its own, but inherits the client security context from its host. AJAX style callbacks with an already established logon session). But there are many cases where you don’t use the containing web application for authentication, but need to do it yourself. Examples of that would be token based authentication and clients that don’t run in the context of the web application (e.g. Extensible. and 2.0 www.leastprivilege.com - Tuesday, March 13, 2012 - Digging into WCF REST
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. Tony will provide concrete examples of where it makes sense to implement REST-ful web services. 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. It creates a Visual Studio solution with just a single web project. WCF 3.5 Tony and Zuzana's World - Saturday, September 10, 2011 %>
| | |