TechBubbles

What is SharePoint Solution Package?

 

What is SharePoint Solution Package?

SharePoint has a system which bundles all the components of a SharePoint Foundation extension in to a single file which is called a Solution Package. The Solution Package file has the extension .wsp. 

SP2010

The contents of solutions package are

  • Assemblies
  • Web Parts
  • Site Definition files -  Site definition is a unique type of SharePoint website. It contains (onet.xml, webtemp*.xml, and default.aspx)
  • Application Pages -  these can be .aspx pages
  • Resource files and resources- Resource files (can be *.doc or *.xls ) and Resources are (*.resx)

Read more

Related Posts:

No comments

Microsoft Codename Cloud Numerics

Microsoft Codename “Cloud Numerics” is a new .NET programming framework which can be used to perform intensive numeric computations on large distributed data sets. If you are some one who works with large data sets, extracting the data and forming and simulating the models then you might need more computing power and memory.

image

Read more

Related Posts:

No comments

Windows Store for Developers

Windows store is really an important part of Windows 8 platform. Windows store is the place where user find the metro-style apps. Windows Store is the distribution point for metro style applications. The idea behind building the windows store is connecting people to as many apps as possible.

Additional details about the Developer opportunity coming on windows 8 with the windows store can be found here .

Read more

Related Posts:

No comments

Wishing you all a very happy start to 2012!

2012 wallpapers pics

I wish all of my BLOG readers a very happy and safe New Year! I keep my best to write a great posts on new technologies. I appreciate your valuable feedback and comments on my BLOG posts.

Many thanks

Related Posts:

  • No Related Posts
No comments

Configuring Custom Master Page in SharePoint 2010

This post discusses about configuring custom master page in SharePoint 2010 website. You might have use custom images, custom style sheets to create new master page in SharePoint. Follow the below steps to apply custom master page in SharePoint 2010.

SP2010

1. Place your custom style sheets in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\template\layouts\1033\STYLES this is the default SharePoint Point path where it stores it’s css files.

2.Place your custom images in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\template\layouts\1033\IMAGES

3.Place your custom master page in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\GLOBAL 

4. Navigate to your SharePoint Web site, Click Site Actions and click Site Settings from the menu

image

Read more

Related Posts:

No comments

Impersonation and Delegation in WCF

 

Impersonation is a technique that WCF Services use to authorize the caller’s identity to access to service resources such as files and database tables. Service resources can be located either on local service machine or remotely hosted. The resources are being accessed by WCF Service’s process identity or specific windows identity.

Difference between Impersonation and Delegation in WCF?

Impersonation is used to access the resources when the resources are on the same machine as the service. Delegation is used to access the resources that are remotely hosted.

There are two types of Impersonation in WCF

  • Imperative Impersonation – Perform programmatically at run time
  • Declarative Impersonation – Applied with a static attribute which associated with an operation.

Read more

Related Posts:

1 comment

Application Lifecycle Management in Visual Studio 11

 

This post discusses about new Application Lifecycle Management features in Visual Studio 11. Application Lifecycle Management represents how do you prioritize your requirement, how do you breakdown them into tasks and how do you implement those tasks.

image 

Start with the Requirements, Visual Studio 11 coming up with new tool PowerPoint Storyboarding which you can use for visualise your customer requirements without writing a single line of code.

Read more

Related Posts:

No comments

How to choose right WCF binding?

Binding in WCF defines how clients can connect with your service. The base class for all bindings in WCF is System.ServiceModel.Channels.Binding. A Binding includes definition for WS-* protocols used, the message encoding and the transport protocol.

The available WCF Bindings are

  • wsHttpBinding
  • basicHttpBinding
  • netTcpBinding
  • netNamedPipeBinding
  • netMsmqBinding
  • wsDualHttpBinding

Read more

Related Posts:

1 comment

Transport and Message Security in WCF

This post discusses about transport and message security. In Transport Security user credentials and claims are passed using transport layer. The transport protocols are TCP, HTTP, MSMQ and IPC. Each of these protocols have their own mechanism for passing user credentials. The most common approach is using secure socket layer(SSL) for encrypting the details which sent over HTTPS.

image 

Read more

Related Posts:

No comments

Service Orientation vs Object Orientation

Services are good communication technique to use across application and platform boundaries. Service-oriented approach always preferred when you are building a distributed application. Object orientation approach provides a view of what a system should look and effective for producing logical models. Object based approach can fail to consider real-world factors like physical distribution and network communication. This post compares the two approaches.

Object Orientation Service Orientation
Suitable in a homogeneous platform and
execution environment.
Suitable in a heterogeneous platform and
execution environment.
Shares types, not schemas. Shares schemas, not types.
Runs in cheap and transparent communication. The cost is variable and requires explicit communication.
Life-time of objects is maintained by the infrastructure. Services are autonomous –Security and failure isolation are necessary.
It requires synchronized deployment of both client and server. It allows continuous, separate deployment of client and server.
Provides no guide-lines for state management and ownership. It maintains and uses the reference state.
You can predict the sequence of events, timeframe and outcome of invocations. Message orientation approach and supports asynchronous and long-running communications.
Goal is to transparently use functions and types remotely. Goal is to provide inter-service isolation and interoperability based on standards.


Share this post :

Related Posts:

No comments

Next Page »