TechBubbles

Archive for August, 2011

Creating Parallel Workflow in SharePoint 2010

 

This post explains how to create parallel tasks in SharePoint 2010 workflow. The idea is we are going to assign the tasks to people and they can complete them in any order without having a dependency on one another. In this example we create a custom SharePoint list which contains a vacation request details looks as below

image

The Request contains a title field which represents the type of request and then two people(Team Lead and Department Head) who requires to approve this request.

Read more

Related Posts:

1 comment

Displaying Custom HTML message in SharePoint 2010

 

This post explains about displaying a custom HTML message in Visio Web access web part on a SharePoint web part page. We are using two web parts content editor webpart and Visio Web access webpart as shown below

image

Read more

Related Posts:

No comments

Accessing Web Services from Sandboxed Silverlight application in SharePoint 2010

 

This post discuss about accessing public web services from sandboxed Silverlight application in SharePoint 2010. SharePoint 2010 introduced the concept of sandboxed solution where the application runs in separate process outside the w3p process where SharePoint is running. Sandboxed solutions having the restriction to make a call to external resources like database and web services. This restriction causing the SharePoint developers to access these resources from sandboxed applications. SP2010

The solution is delivering a Silverlight application in sandbox environment which in turn calls the web service. Because Silverlight applications are running from the client machines even though they delivered from the sandbox solution.

Read more

Related Posts:

No comments

Recycling Application pools in IIS for SharePoint 2010

 

This post discuss about recycling application pools when memory limits are exceeded. Recycling based on memory limits is not necessary in 64-bit environment. It is suggested that recycling should not be enabled in 64-bit environment. Unnecessary recycling can result in dropping in user requests and performance.

Note: When application memory limits are exceeding then change the recycle settings in Internet Information Services(IIS).

1. Make sure that you are a member of Farm Administrators group.

2. Open SharePoint Central administration website. Click Review problems and solutions in Monitor section.

image

Read more

Related Posts:

2 comments

Windows Azure–Security essentials

 

This post discusses about Security essentials which technical decision maker should know in-order to protect customers applications and data in Windows Azure platform. Instead you building the server racks and datacenters, Cloud takes your traditional data centers from you and run on their premises which greatly reduces the cost and maintenance. Cloud runs as services platform follows the SAS(software as service) model. image

image

Read more

Related Posts:

1 comment

SQL Azure vs SQL Server

 

This post discusses the differences between SQL Azure and SQL Server in the context of security

                              

image image
Supports SQL(native) and Windows authentication. Supports SQL(native) only, no windows authentication.
Authorization is based on database users and roles. Authorization is based on database users and roles.
SQL Server has fixed server roles such as serveradmin, securityadmin and dbcreator. There are no fixed server roles such as in sql server but it has loginmanager and dbmanager roles in Master DB to simulate  relevant server roles.
Accessing SQL Server over wire is via Tabular Data Stream (TDS) plus SSL on port TCP 1433. Using SSL is optional. Accessing SQL Azure over wire is same as SQL server using TDS but SSL is mandatory
Firewall and IP blocking is using hosted firewall. SQL Azure has built-in firewall which blocks all external IP’s until you specify to allow.
SQL Server supports native encryption at page level using transparent data current. TDC SQL Azure does not supports the native encryption.
   

More detailed comparison can be found here


Share this post :

Related Posts:

No comments

Heterogeneous Development using Visual Studio 2010

 

Your organization might have .NET and Java developers working on different platforms to develop the applications. Each development team might have been using different processes to develop the application. With this separation, Organisations have no end-to-end visibility on the development efforts. With Visual Studio 2010 this separation become a thing of past. image

Visual Studio 2010 ultimate supports Heterogeneous development and helps to manage multiple teams and spans the team to multiple platforms.

1. Eclipse is a familiar interface for Java developers and everything is based on perspectives. Open the perspective Team foundation server explorer which is an add-on to eclipse.

You can download the Team Explorer from every where from here

image 

Read more

Related Posts:

1 comment

Creating Code UI Tests in Visual Studio 2010

 

This post discusses about creating a test case for windows application in both Microsoft Test Manager and using a Code UI Test in Visual Studio 2010. It also discuss about editing a Code UI test by adding assertions into the UI map using UI controller.

1. Before creating test case we will create small windows application notepad.

image

Read more

Related Posts:

No comments

Creating Firewall rules using SQL Azure

 

The firewall feature in Windows Azure portal allows you to store your data securely on cloud which deny all connections by default. The new firewall feature allows you to specify list of IP addresses which can access your SQL Azure Server.You can also programmatically add connections and retrieve information for SQL Azure database. This post discusses about creating the firewall rule using the Azure portal. image

1. Browse the website https://windows.azure.com/ and enter your live account credentials

image

Read more

Related Posts:

No comments

Deploying Windows Azure Application Part2

 

In my previous post I have discussed about creating the service accounts which required to create to deploy the windows azure application. This post discusses the second step which is deploying the application management portal. Windows Azure tools for visual studio allows you to create and deploy the service package to Windows Azure using Visual Studio. image

Before deploying the application to the staging environment using management portal, generate the service package using the visual studio

1. Open the ServiceConfiguration.cscfg file in windows azure service project

replace the placeholders [YOUR_ACCOUNT_NAME] with the storage account name which you created in the step1 and [YOUR_ACCOUNT_KEY] with the primary key access value.

Read more

Related Posts:

No comments

Next Page »