December 29, 2006

Ses Yalitimi

Nasıl ses yalıtımı yapılabilir?
  • Ses yalıtımı için duvarlar akustik alçıpan panellerle kaplanmalı.
  • Panellerin duvara montajı alüminyum profillerle yapılmalı.
  • Duvar ile paneller arasında 5cm kalınlığında camyünü kullanılmalı.
  • Ses yalıtımına takviye çok amaçlı kumaş estetik renk uyumlu panolar kullanılmalı

December 27, 2006

Enabling anonymous access in WSS 3.0

Two steps:
  1. Enable anonymous access in Central Administration > Application Management > Authentication Providers
  2. Enable anonymous access in Site Settings > Permissions > Anonymous Access

December 20, 2006

Working offline in TFS

In Microsoft's new team colloboration tool working offline is not well supported. You have to use some command line utility to get it work as it was in Visual Source Safe.

If you happen to lose your connection during a VS2005 session, you are lost. You should restart it. And after that restart you can have the option to work in disconnected mode.

Then you write some code, change some files, delete some of them and return back to office. Then you start your VS2005 instance and what do you see??? The vs2005 automatically checks in your files!!! Does it ask anything? NO. Any warnings? NO.

What you should do is download a team foundation power toy utility called tfpt. This was used to be a part of vs2005 sdk but is now available as a seperate download. After installation, change your PATH environment variable to include C:\Program Files\Microsoft Team Foundation Server Power Toys. Now haveing installed tfpt (not tftp!!!) , open command prompt and navigate to your solution directory where .sln file is located. Execute tfpt online, enter your domain user name and password and see the list of files and some checkboxes indicating the changed items. If you choose "Pend Changes" your files are automatically checked out and wait for you to checkin. That's all. Just remember to do these prior to starting your visual studio.

The main content of this blog entry taken from here.
Team Foundation Power Toys download site.

December 15, 2006

WPF/E

WPF/E ( Windows Presentation Foundation/Everwhere) community edition is out. I have looked at the samples although you need to download a plugin, the demo applications look promising. The plugin lets you see the XAML content .

December 13, 2006

Enabling forms authentication in Sharepoint 2007 or WSS 3.0



9.4.1 Create forms authentication database
You can do this by running aspnet_regsql and choosing the database to configure for aspnet forms authentication
9.4.2 Create users
You can accomplish this by creating a simple web site in VS 2005 and configuring it for forms authentication.
Run asp.net configuration tool

9.4.3 Change application name if necessary
You can do this using sql server management studio express.
Navigate to your portal authentication database and choose table Applications and change the column applicationName.
9.4.4 In sharepoint site edit machine.config file
Be sure that the provider sections for authentication and role management uses the same application name as forms authentication database application name
Edit LocalSqlServer connection string for custom authentication database connection
9.4.5 In sharepoint administration change authentication provider
Navigate Central Administration > Application Management > Authentication Providers
choose forms authentication
Edit Membership Provider Name
Fill with AspNetSqlMembershipProvider
This entry is defined in machine.config file located in c:\windows\Microsoft.Net\(2.0 framework directory)
This is the place where machine wide configuration information is kept.
Edit Role Manager Name
Fill with AspNetSqlRoleProvider
This entry is defined in machine.config file located in c:\windows\Microsoft.Net\(2.0 framework directory)
This is the place where machine wide configuration information is kept.
9.4.6 Change site administrators
Navigate to Central Administration > Application Management > Site Collection Owners
Choose the users you have created
9.4.7 Execute a iisreset command on sharepoint server machine
9.4.8 Restart your browser

December 11, 2006

Enabling versioning on documents

WSS 3.0 does not initially come with document versioning as Office 2007 Server does. You should enable it, this is how:

  1. Open your site (eg.http://sp2007test/default.aspx)
  2. Click on Site Actions -> Site Settings
  3. Under Site Administration click "Site Libraries and Lists"
  4. Click the "Customize ..." link to customize your library.
  5. Click Versioning Settings
  6. Choose the appropriate options you like.

That's it.Now you should see the "Version history" option in the document drop down list.

Sharepoint Essential Sites

WSS 3.0 SDK
http://msdn2.microsoft.com/en-us/library/ms472057.aspx
Workflow development blog series http://blogs.msdn.com/sharepoint/archive/tags/Workflow/default.aspx
WSS 3.0 Demo(will launch a video)
http://office.microsoft.com/assistance/asstvid.aspx?assetid=ES102055641033&vwidth=884&vheight=540&type=mediaplayer&CTT=11&Origin=HA102055631033
Developer Site
http://msdn2.microsoft.com/en-us/sharepoint/default.aspx

Sharepoint Blog Series

I am currently evaluating Microsoft Windows Sharepoint Services 3.0 (WSS 3.0) as a base for a portal project. I will try to share the difficulties I have come across and the solutions I managed to find. Hope it helps newbies like me.