Originally posted on IoT, API, Big Data, Mobile, SOA, Cloud & Security Blog:
– By Andy Thurai (@AndyThurai) and Blake Dournaee (@Dournaee). This article was originally published on Gigaom…
Month: February 2014
OAuth2 with Apache CXF
Originally posted on Securing Restful Web Services with OAuth2:
An overview on the OAuth2 security authorization protocol and its implementation with Apache CXF. Quick Background OAuth and…
Workshop: Identity & Access Control for modern Web Applications and APIs
Originally posted on leastprivilege.com:
Brock and I are currently working on a brand new two day workshop about all things security when building modern web applications…
Typical CXF OAuth2 Implementation Flow
Originally posted on Securing Restful Web Services with OAuth2:
1. TYPICAL AUTHORIZATION SCENARIO 1.1. TYPICAL REQUEST 1.1.1. REQUEST URI http://localhost:8080/oauth2/authorize?response_type=code&client_id=1&scope=read_user_profile&redirect_uri=http://localhost:8080/transport/authorization/code Client_id: Represents the id of the client…
OAuth made easy
Originally posted on avisheksharma:
OAuth 2.0 The article explains you why we actually need to learn OAuth, what is this beast actually, how we implement it to…
Visualforce
Originally posted on SalesForce Knowledge Tips:
Visualforce allows you to build sophisticated, custom user interfaces that can be hosted natively on the Force.com platform. Visualforce achieves this…
Salesforce – Apex Language
Originally posted on SalesForce Knowledge Tips:
Apex is a development platform for building software as a service (SaaS) applications on top of Salesforce.com’s customer relationship management (CRM)…
javascript convert between array and string
Originally posted on zhonghuafy:
javascript convert between array and string 1.数组: array to string: var datas=[]; for(var i=0;i<5;i++){ datas[datas.length]=i; } var str = datas.join(“,”); 结果:0,1,2,3,4 string…
jQuery Menu Slide effect
Originally posted on Venislaus's Blog:
<script type=”text/javascript”> function mainmenu(){ jQuery(“#menu-top_menu li”).hover(function(){ jQuery(this).find(‘ul:first’).slideDown(“slow”); },function(){ jQuery(this).find(‘ul:first’).slideUp(“slow”); }); } jQuery(document).ready(function(){ mainmenu(); }); </script>
HTML Table Example
Originally posted on Visicomp Codder:
Table Examples <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <title></title> </head> <body> <table align=”center” border=”1″ style=”width: 80%”> <tr> <td align=”center” style=”width:250px” > </td> <td style=”width:250px”> Namee</td>…
You must be logged in to post a comment.