Friday, November 16, 2007

HealthCare IT Blog

I was searching for a good Healthcare-IT Blog , which can speak on various technologies used in the Today's Healthcare World , also was loooking for a good place where we can get the Latest News ...

Came across a good Healthcare IT Blog..GOOD ONE!!

http://blogs.msdn.com/healthblog/

Tuesday, November 06, 2007

Web2.0

Recently came across web2.0 and read through articles on web2.0.

what does web2.0 mean ?

in one context it means the next gen of internet, on how internet is used and users can benefit from internet.

Web2.0:

Web 2.0 refers to a perceived second generation of web-based communities and hosted services — such as social-networking sites, wikis which aim to facilitate collaboration and sharing between users.

Web 2.0 is the business revolution in the computer industry caused by the move to the internet as platform, and an attempt to understand the rules for success on that new platform

Thursday, October 04, 2007

B.Net SilverLight Sessions in Bangalore

6th October, 4Pm to 6Pm

Big Guns from Infragistics USA are here in town and we would not miss the opportunity to have them with us and give us insight of latest technology.

Venue:
Krishna Hall, Microsoft GTSC, Embassy Golf Links Business Park
Off. Intermediate Ring Road (AKA Koramangala Ring Road)
(near domlur flyover) Bangalore 560 071

Monday, August 13, 2007

Microsoft MSF Agile !

MSF Agile development Process

eAgile From Microsoft

Many development teams inside Microsoft are now using the agile methodology for software development and had been looking for a way to track their daily progress.
About e-Scrum


eScrum 1.0 ( updated June 23,2007) download it from here -

Friday, August 03, 2007

VS2008 and .Net Framework 3.5 in Beta !!

MS has released VS2008 and .Net 3.5 as Beta.

The downloads can be made from :
The VPC can be downloaded at : http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx

downloads directly from : http://msdn2.microsoft.com/en-us/vstudio/default.aspx

From SomaSegars Blog :
>>
The road to Beta 2 has been an exciting one for me and my team. With our focus on delivering frequent CTP’s, we really opened the door for real time feedback from the developer community, and drove the development of this product based on that feedback. With Beta 2 we are feature complete, so now is the time to have your first look if you haven’t seen Visual Studio 2008 yet, or evolve your experience if you have been using our Beta 1 or previous CTP’s. To add to this, we are also releasing a Go Live license for Visual Studio 2008, the .NET Framework 3.5, and Silverlight 1.0 to make it easier for you to start developing in our next generation of tools.

Developers can now use VS2008 and Silverlight 1.0 to build rich interactive applications for the web. With Silverlight 1.0 RC we will also be releasing a CTP for the Silverlight Add-In for Visual Studio 2008. With this add-in, developers can start building Silverlight 1.0 applications from within the Visual Studio 2008 environment and work with their designer counterparts using Expression Blend v2 preview. We expect to deliver the final version of this add-in soon after the final version of Visual Studio 2008.
>>>>

Thanks
Senthil

Tuesday, June 05, 2007

New Agile Users Groups Forum

new Agile Users Discussion Forum Started !!

http://groups.msn.com/bagile


,,,
Senthil

Thursday, May 31, 2007

thoughts !

My eyes captured few of these pics in few web sites.

Just added my captions to these !!

what you want to be ??

Time is Invaluable!

Learn the Basics !!

GO step by Step !!

Thursday, April 12, 2007

IIS7 Settings for WCF hosting

IIS7.0 is much advanced than its previous verions. 40 feature modules and more advantages.

However i have captured the basic config steps which are a must for hosting WCF Servives in IIS7.0.

1.Make sure the below settings are done in IIS7.0 to host a service:
a. Open the Windows Programs features
b. Click , expand the nodes to Internet Information Services:
c. Click on the Web Management tools
d. Expand all the sub – nodes


Select the IIS6 Management Compatibility
select on all the sub items.




2.Now click on the world wide web services.

3.Expand the Security node:






5.Click on the Basic, Windows, Client Certificate Mapping, IIS Client Certificate, etc ..Except IP Security.
6.When Microsoft 3.0 is installed in the Vista machine, we will see a node like Microsoft Dotnet Framework 3.0.
7.Click on the “Microsoft .Net 3.0 Node” and expand.


8. Check on the Windows Communication Foundation HTTP Activation.
9. The above settings are pretty much enough for the settings for IIS7.0 to host a WCF Service.
10. To check if all the settings are done perfect open IIS7.0 now.
11. The below steps will help us to check if the settings from step 2 to step7 are reflected in IIS7.0.
12. Open IIS7.0 and click on the Application Pools in the left most corner.

13. In the application Pools check if there are 2 Pools in default, namely the Clasic.Net AppPool and the Default AppPool.
14. In IIS7.0 select a particular Virtual directory and check for the Properties.
15. Select the Handler Mappings:

16. Click on the Handler Mappings:
17. Check on the List of Handler Mappings , there will be a mapping for *.svc:

18. Check if the svc-ISAPI-2.0 is present.
19. The values of the SVC setting will be like:
a. Request Path = *.svc
b. Executable: %SystemRoot%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll
c. Request RestrictionsàVerbsàAll Verbs.
20. Click on the Directory Settings:


21. When you do a IIS restart, have the restart done from the command prompt.





Hope the above steps will reduce 1 hr of Time to someone!!!!!!


,,,,
Senthil

Wednesday, March 21, 2007

XAML --1

XAML is the next next generation of the windows presentation for applications.

Think if XAML as a programing language where in the front end - GUI is all governed by XML tags...for each control which is added on the screen , there is an entry in the XAML file, in the XML node entry..

XAML is used as the front end GUI part and the Event Driven part of the XAML is coded in the back *.xaml.cs file..for example, if you want to create a message box which needs to be pop up on a click of a button of button. The Messagebox pop up code is written in the *.xaml.cs file.

1.Add the button to the XAML screen and you can see an entry like :



<--- --->

2. Now on the click button , we i have written the OnClick event.

3. The code which must be written for this click event must be written on the OnClick function in the XAML.Cs file.


MessageBox.Show("Senthil in XAML!!!!");

4.Just the above is not enogh , there needs to be a routedevent which needs to be created :


button2.Click += new RoutedEventHandler(Onb2Click);

public void Onb2Click(object sender, RoutedEventArgs e)
{
MessageBox.Show(textBox1.Text.ToString());
}

5. Its not just the code which is written in the Clickevent , but there needs to be a RoutedEventArgs created and which is done by button2.Click += new RoutedEventHandler(Onb2Click);

[.. deep in XAML in the next posts..]
,,,,,
Senthil

Saturday, March 17, 2007

In North Carolina ---- Raleigh

XAML

XAML, is the buzz word of WPF --windows presentatin foundation ...
XAML is gaining much speed in the applications user experience..

when user experience is considered to the top priority for any application, the presentation layer is the one which needs to be considered much.

XAML is Extensible application markup language by Microsoft..
using XAML rich UI based applications can be created.
As a Dotnet developer there can be segregation of the UI layers from the midlle warfe business logics layer...
XAML consists of the UI Garphics and the mark up language for the UI. Its all XML based...
As of now, there is a big gap in combination of documents , Audio , Video which can be presented in the UI, but with the Evolution of XAML, all the 3 can be linked which gets a great user experience...


[The thirst for XMAL will continue in the next posts....]
,,,
Senthil

Tuesday, February 20, 2007

Microsoft India is organizing an event in Bangalore on 8-Mar-2007

Microsoft India is organizing an event in Bangalore on 8-Mar-2007 for developers, focused on application development on the Vista and Office 2007 platform.

With Windows Vista set to become the predominant platform soon, a host of exciting features are now available for developers to build visually stunning, connected and secure applications. With new technologies such as Sidebar Gadgets, WPF, WCF, RSS, Search and Peer-to-Peer, Windows Vista provides new platform capabilities which simplify and enhance application development. The 2007 Office system includes a set of new extensible technologies and the building blocks that enable developers to build a full range of solutions – basic information management to advanced enterprise scale applications - for businesses to realize the potential of the data they’ve been accumulating on their back-ends by exposing it through tools that people use every day.

Find out more about the event and register at http://www.microsoft.com/india/events/devvista/

To know more about developing on Vista,
visit http://msdn2.microsoft.com/en-us/windowsvista/default.aspx

Friday, February 09, 2007

.Net 3.0 and the Code Names

Hi,

The code names with which MS has built the latest .Net 3.0 is :

1. Avalon --WPF --Windows Presentation Framework.

2. Indigo -- WCF -- Windows Communication Framework.

3.Aero -- Windows Aero is the name of the new graphical user interface and style used in the new Windows operating system called "Windows Vista". AERO is an acronym for Authentic, Energetic, Reflective and Open.

Thanks
Senthil

Tuesday, January 09, 2007

Running ASP.Net Applications in Linux Platform

ASP.Net Applications can be made to run on Linux Platform also !!!
This can be accomplished by using MONO ..

MONO :
The Mono Project is an open development initiative sponsored by Novell to develop an open source, UNIX version of the Microsoft .NET development
platform. Its objective is to enable UNIX developers to build and deploy cross-platform .NET Applications. The project implements various technologies
developed by Microsoft that have now been submitted to the ECMA for standardization.

http://www.mono-project.com/FAQ:General
http://aspalliance.com/387

,,,
Senthil