| ||||||||||||||||
| ||||||||||||||||
|
Share about technology and the Tools (i.e.Windows Azure, SQL Azure, AppFabric, SharePoint 2007, SharePoint 2010, Lotus Notes, Dynamics CRM) that I come across. I am always looking out for new technologies and Tools to share them with everyone :-).
Thursday, October 20, 2011
Southeast Asia SharePoint Conference 2011 (Singapore)
Monday, October 10, 2011
Windows Azure MVC 3 Application Database Error
“CREATE DATABASE permission denied in database 'master'”
IIS runs under the Network Service account, which does not have permissions to create a new SQL Server Express database by default. You can comment out the <Sites> section in the ServiceDefinition.csdef file to indicate that your web role should run in the Hosted Web Core, which runs under your authenticated user account, rather than running in IIS, which runs under the Network Service account. We will revert this change later, before deploying to Windows Azure, but for now, make theServiceDefinition.csdef file look like the following:
<WebRole name="AzureRoadTripSite">
<!--<Sites>
<Site nameWeb">
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" />
</Bindings>
</Site>
</Sites>-->
<Endpoints>
<InputEndpoint name="Endpoint1" protocol="http" port="80"/>
</Endpoints>
<Imports>
<Import moduleName="Diagnostics" />
</Imports>
</WebRole>
Now you run your Windows Azure MVC 3 Application which will work….
Thursday, October 6, 2011
Wednesday, October 5, 2011
Outlook Integration with SharePoint 2010 (Drag and Drop)
Recently, I was working on one of the SharePoint 2010 tender, User need to drag and drop the email and attachments from Outlook to SharePoint 2010 and SharePoint 2010 to Outlook. First I thought of propose Colligo outlook integration tool but the CAL licenses seems too expensive for our customer. When I look around I come across following tools.
1.) harmon.ie for SharePoint is an Outlook: http://harmon.ie/SharePoint/Product (Free for Outlook but limited feature). You can compare Free vs Enterprise edition @ http://harmon.ie/Products/CompareEdition
2.) OnePlaceMail : http://www.scinaptic.com/oneplacemail.html (OnePlace Express is free, but its limited to 25 users, Enterprise need to buy only server license)
3.) Third Sight (Singapore Base company) http://www.thirdsight.net/product_PS.html (I think implemented few government agencies)
4.) Connect for SharePoint : http://www.knowledgelake.com/products/Pages/sharepoint-integration-office-desktop-application.aspx
5.) SharePoint Email filer : http://www.sharepointemailfiler.com/features.asp
Some of above is server licenses and as well as CAL licenses. Overall I don’t know… if I custom develop using Visual Studio with Outlook Add-In not sure can we meet 50% of above product features?
I think it’s time to explore...
Tuesday, October 4, 2011
SharePoint 2010 and Windows Azure Training Course
Good News the updated version of the SharePoint and Windows Azure Developer Training Kit is now available for developers who want to explore how SharePoint and Windows Azure work together.
This course is intended for developers and architects who are interested in understanding how SharePoint 2010 and Windows Azure can leverage each other. Knowledge of SharePoint 2010 development or Windows Azure is helpful but not required. Familiarity with general .NET development along with web technologies such as HTML, JavaScript and Web Services is recommended