從Windows Azure開始提供VM服務後,在VM中使用Java作為服務平台已經不是難事,但對於不想管機器及網路設定的我而言,還是偏好使用PaaS的Cloud Servcies作為Java的服務平台。當然,透過PaaS來建置Azure上的Java服務平台有其一定的入門門檻存在,
多數情況下,你必須熟悉Worker Role的架構,還有儲存體的應用,才能建造出一個可活用到PaaS平台特性,又不會造成太多困擾的系統。
The Windows Azure Role Startup Task
在Windows Azure所提供的Cloud Services服務裡主要分成兩種Role,一是許多人都熟知的Web Role,用於開發可Host於IIS的Web應用程式,例如ASP.NET及PHP等類。另一類是Worker Role,
用於開發不可Host於IIS的應用程式,例如自行開發的TCP Server或是Java/Node.js等類。
The Closure and Lambda Programming Style
- 21535
- 0
- .NET Framework
Closure這種寫法,在程式語言領域存在已經有一段很長的時間了,其原意很簡單,就程式語言角度來看,Closure意指將一個function(函式)放到一個變數中,
也就是C++常用的function pointer(函式指標)的意思
Windows Azure SDK for Java 1.7
在Windows Azure 推出Spring Release後,Windows Azure SDK for Java也更新到了1.7,這版與Eclipse IDE的整合更緊密了,首先是安裝SDK的位址改變了
Integrated ACS in Tomcat/Java Web Application
Windows Azure SDK for Java 1.7添加了一個Windows Azure Access Control Filter功能,透過這個Library的協助,我們現在可以輕易地在Java Web Application
中結合ACS及Windows Live或是Facebook等Identity Providers來進行使用者驗證的工作,本文以Step by Step方式引導讀者完成這個工作。
The Windows Azure Toolkits – Integrated ACS with iOS、Windows Phone、Android and Windows 8 – Secure WCF Service
在前一篇文章中,我們讓Android、iOS、Windows Phone及Windows 8應用程式的使用者可以透過ACS整合Facebook Identity Provider完成使用者初步的帳密驗證動作,但這只是前半部故事,
當完成驗證動作後,接下來該做什麼事呢?
The Windows Azure Toolkits – Integrated ACS with iOS、Windows Phone、Android and Windows 8
- 61927
- 0
- .NET Framework
- 2012-07-28
隨著Windows Azure Platform的發展,其支援的平台及語言也越來越多,行動裝置自然也是重點之一,從去年開始,Windows Azure Toolkit for Windows Phone率先推出,
緊接著for iOS與Android版本也釋出了。10個月後的今天,這些Windows Azure Toolkits隨著Windows Azure Platform的發展逐步演進
Session Management in Tomcat on Azure
想把Web應用程式搬上雲端,且想運用到雲端的優勢(這是重點),至少必須做出三個抉擇, Language,Database,Session Manager,
本文討論如何使用Table Storage Service或是memcached作為Session Manager
Windows Azure Platform Overview for Java
對於熟悉Microsoft開發工具的開發者而言,多少都聽過Windows Azure這個雲端平台,但對於Java開發者而言或許就不是如此了,
本篇文章先整理出一些主要服務的相關資料及知識,協助Java開發者快速的了解Windows Azure Platform
Tomcat/Java in Azure – Deployment tips
在Java/Tomcat on Windows Azure一文中介紹了如何將Web Project打包後送上Windows Azure平台的方法,這個方法基本上是正確的,
也是官方文件所建議使用的。但仔細想想,每次的打包動作都必須包含兩樣東西: JDK與Tomcat,至少需要近40MB的大小,上傳不僅耗時
Using Windwos Azure Storage Services with Java
在Windows Azure平台中,應用程式除了可選擇完整的資料庫平台SQL Azure儲存資料外,也可選擇較為簡單的Windows Azure Storage Services來儲存資料,
Windows Azure Storage Services共提供三種儲存體
Access SQL Azure with JDBC/Hibernate
前篇文章介紹了如何將Tomcat及Web應用程式部署到Windows Azure,凡事只要起了頭,接下來的工作就相對簡單許多,本篇文章接續前篇,介紹如何透過JDBC來存取SQL Azure。
[Azure]Java/Tomcat on Windows Azure
Microsoft提供了Windows Azure SDK for Java,同時也提供了Windows Azure Plug-In for Eclipse IDE,讓Java開發者能快速地將使用
J2EE Container如Tomcat之類的Web應用程式搬上Windows Azure,本文便使用這個Plug-In與各位分享如何一步步的將Tomcat的專案搬上Windows Azure執行。
- 1