Skip to main content

Posts

What is REST

Today I will put some detail on REST,a architecture which is just hot now a days among architect,personally I felt this is the one of the simplest architecture.Although it's not easy to implement without getting thorow understanding of it. Representational State Transfer(REST) is  architectural style for distributed hypermedia systems  . This complete architecture use few elements like Resource,URI,Verb,Representation,Component and Connector etc. Let me explain each term with detail: * what is Resource?  - The key abstraction of information in REST is a  resource. A resource can be any meaningful functional object which can be addressed and can  act upon a request * What is URI?  - The address using which resource is being addressed is URI( uniform resource identifier  ).It's having it's own structure to represent any object. It's composed of five parts called scheme, host, path, query, and fragment e.g. http://xyz.com/Resource/pageno=10#bookma...

Other aspects of HTML5

There is great feature embedded with HTML5 that is multimedia support without any plugin at end user.The best part of this tag is that it support wide range of quality audio/video format. The tags which we use for audio and video are: <audio> <video> The code snippet for same: <audio id=“audio” controls preload="auto" autobuffer>   <source src="source1.mp3" />   <source src=" source2.ogg" /> </audio> <video id=“video” poster=”poster.jpg" src=”source.mp4" width="2" height="1" x-webkit-airplay="allow” autoplay controls> </video> HTML5 is enriched with other input type tag which is having great ability to enrich the mobile interface,this input type tag along with Jquery UI plugin give them very strong presence on mobile where end user get very lucrative look and feel. <input type="number" pattern="[0-9]*" /> <input type=...

RESTful service called from Jquery and used in HTML5

The above architecture is based upon the .NET framework and keeping in line the architectural guidelines offered as base line for standard web service oriented applications with disconnected rich front ends “ HTML5 ”. .NET 4.0 is a premiere software development framework that is used for building enterprise applications delivered to end users. Combined together with HTML 5 /JavaScript/JQuery and CSS, the .NET SDK along with its rich support for web application development, offers a top of the line web application development environment. As promised in last blog I am going to write some syntax/code snippet and architecture flow. In above architecture we will avoid server side control,we will use client side scripting to give same look and feel. As per our architecture user first make request from web page on server,so let's see how we will design webpage. As I mentioned in architecture we will be using HTML5 to design webpage. there are tags in HTML5 which is being common...

explanation on HTML5+WCF+JQuery

Well let me tell you in advance I was not aware about HTML5  before my last project.Once I started digging I found that this is platform independent,having support of all browser latest version,light weighted and best for mobile applicatio n and other smart devices.This gives you advantage of not create two website one for browser and other for mobile and smart devices. Now coming to technology front ,there are the following skill set you require to develop the portal based on HTML5: -C# 4.0 -WCF -HTML5 -CSS -JQuery and there latest plugin -SQL server Whole application will have four part: -HTML page using HTML5 tag(Developer can select HTML5 editor from VS2010 tools menu,which will support intellisense on HTML tag) -service layer using WCF RESTful classes(this layer can be segregated into three layer:        1-Service class        2-Business class        3- DataAccess Class B...

Deadly combination of .NET,HTML5,Jquery,AJax,WCF REST

.Net 4.0 itself is enriched with all web controls and lucrative UI which gives a very immense effect to the end user. But if we moved from server control to client side control and use HTML5 which is having support of smart devices apart of  all browser(latest version),this is deadly combination along with Jquery ,AJAX,WCF REST services. This is perfect combination except that no support for SEO. I will continue in my next post how it is deadly combination.Please follow here