| |
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.
|
81 Articles match "Application","Web"
| Related DevelopMentor Courses | MORE | | Ninject WCF Extensions for RESTful Services The advantage of using DI is that it allows you to achieve loose coupling in your application architecture, so that you’re not tightly bound to a particular infrastructure implementation, such as data access or logging. also noticed there was no longer any need to derive the Global.asax code file from NinjectWcfApplication, because the extension now uses WebActivator to configure Ninject on application startup. Download the code for this post. while ago I blogged about using Ninject for dependency injection with WCF Services. NinjectWebCommon.cs Here is code from Global.asax.cs DevelopMentor Courses - Sunday, April 8, 2012 jQuery UI and touch screens I really like using jQuery UI in my web applications. But even though jQuery UI is very well tested there are some potential issues to keep in mind. One of those is using the jQuery UI controls on touch devices like the iPad. With these touch enabled devices becoming more and more popular support is quite important if you don’t know you exact client configuration. And for that matter, even if you client has standardized on a specific browser, let say Internet Explorer 9 for example, you may notice that there are in fact lots of other “unofficial” devices being used. Enjoy The Problem Solver - Monday, September 17, 2012 |
157 Articles match "Application","Web"
| The Latest from DevelopMentor | MORE | | A Roundup of MongoDB Management Tools MongoVUE is an innovative MongoDB desktop application for Windows OS that gives you an elegant and highly usable GUI interface to work with MongoDB. Now there is one less worry in managing your web-scale data. Import relational data from MySQL or SQLServer into MongoDB automatically and start building your applications right away. Directly work in the objects and classes of your application. Installs into your web app (provided you’re using Ruby or PHP). My take : This is a very interesting web monitoring app. SQL Server Management Studio ). Michael C. Kennedy's Weblog - Monday, April 22, 2013 Getting started with AngularJS AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. In fact it is more of a benefit as it helps structure your application in a good way. The simplest AngularJS application Below is pretty much the simplest AngularJS application you can make. So this is already a “somewhat” dynamic HTML/JavaScript application. In this case I added it to the element so the whole page is an AngularJS application. And while it is really powerful it is also really easy to get started with. 1: 2: 3: 4: AngularJS Demo. The Problem Solver - Friday, April 5, 2013 Getting started with AngularJS AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. In fact it is more of a benefit as it helps structure your application in a good way. The simplest AngularJS application Below is pretty much the simplest AngularJS application you can make. So this is already a “somewhat” dynamic HTML/JavaScript application. In this case I added it to the element so the whole page is an AngularJS application. 'One of the nicer JavaScript frameworks out there to work with must be AngularJS. 5: 6: 7: 8: {{1 + 1}}. The Problem Solver - Friday, April 5, 2013 | -
| The Best from DevelopMentor | MORE | - Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series)
For example, if you were writing a forum web app, you should absolutely be paranoid about what your users are typing into your site. Three ways to encode or avoid encoding HTML data in ASP.NET MVC applications. Filed under: Articles Tagged: NET , Foundations , MVC , web. Articles.NET Foundations MVC webThis article covers the various ways in which you might handle text encoding in ASP.NET MVC. You need to be very careful about how you redisplay their input. For example, a friendly forum user might write something like: Nice post, thanks for sharing! data). Michael C. Kennedy's Weblog - Monday, October 15, 2012 - Using the WCF Web API in an ASP.NET MVC application
Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. Not that there is anything specific to MVC I need here, all I need is a web site and I could have started with a WebForms application just the same. Just like in this post we can add a reference to the WCF Web API to our project. The Problem Solver - Monday, June 13, 2011 - Using an Active Endpoint to sign into a Web Application
The scenario is, that you don’t want to do a passive redirect in a web app – but directly talk to an active STS endpoint to authenticate and request a token. The reasons for that could be that you need a local sign-in page in the web app – or that the token service is not publicly reachable. This question comes up from time to time, so I thought I’ll document it here. The following code can be used on a login page: protected void _btnLogin_Click( object sender, EventArgs e). {. // authenticate with WS-Trust endpoint. var factory = new WSTrustChannelFactory (. www.leastprivilege.com - Wednesday, April 14, 2010 - Access Control Service: Walkthrough Videos of Web Application, SOAP, REST and Silverlight Integration
This video does a quick walkthrough of the solution and shows the web application part. Part 4 – Silverlight and Web Identity Integration. The Silverlight Client shows ho to sign in to the application using a registered identity provider (including web identities) and using the resulting SWT token to call our REST service. This is designed to be a desktop (OOB) client application (thanks to Jörg for the UI magic). Over the weekend I worked a little more on my ACS2 sample. Have fun ;). Part 1 – Overview. watch. Part 2 – SOAP Service and Client. watch. www.leastprivilege.com - Tuesday, May 24, 2011 - Download My Web Apps Have HotKeys Too Sample App
I recently blogged about how web apps have hotkeys too. To encourage more developers to add hotkeys to their web applications, I created a jQuery plugin called jQuery.hotKeyMap.js and a sample application. It’s an ASP.NET MVC 3 web app. Filed under: jQuery Tagged: NET , ASP.NET , MVC , Open Source , Plugins , web. jQuery.NET ASP.NET MVC Open Source Plugins webjust added a download link for the source code: WebAppsHaveHotKeysTooSample-MichaelKennedy-v1.zip. Hope you find it useful! Cheers, @mkennedy. Michael C. Kennedy's Weblog - Thursday, August 30, 2012 - Access Control Service v2: Registering Web Identities in your Applications [code]
This kicks automatically in, whenever authorization fails in the application (e.g. Registered users will have claims that come from the application domain, the claims of unregistered users come directly from ACS and get passed through. This effectively replaces the ACS claims with application defined claims without requiring the user to re-signin. All pages that should be only reachable by registered users check for a special application defined claim that only registered users have. You can download the full solution here. Checking and transforming incoming claims. www.leastprivilege.com - Saturday, May 21, 2011 - Access Control Service v2: Registering Web Identities in your Applications [concepts]
ACS v2 support two fundamental types of client identities– I like to call them “enterprise identities” (WS-*) and “web identities” (Google, LiveID, OpenId in general…). also see two different “mind sets” when it comes to application design using the above identity types: Enterprise identities – often the fact that a client can present a token from a trusted identity provider means he is a legitimate user of the application. Sometimes also a mixture of both approaches exist, for the sake of this post, I will focus on the web identity case. in ASP.NET terms). www.leastprivilege.com - Saturday, May 21, 2011 %>
| | |