Ohad's Blog

Lets talk about .net !

Mirror at:
blogs.microsoft.co.il

News

         Ohad Israeli's Facebook profile

Grab this badge here!

C# Code Snippts

Favorite Blogs

Israeli .Net Bloggers

September 2005 - Posts

Sql Server 2005 - Hands On Labs

Sql Server 2005 HOL are here !

  • Data Transformation Services (DTS) Hands-On Lab Manual
  • Reporting Services Hands-On Lab Manual
  • Management Studio Hands-On Lab Manual
  • XML Features Hands-On Lab Manual
  • SQL Server 2005 and ADO.NET Hands-On Lab Manual
  • T-SQL Enhancements Hands-On Lab Manual
  • SQL CLR Hands-On Lab Manual
  • SMO and Web Services Hands-On Lab Manual
  • Analysis Services Hands-On Lab Manual
  • Data Mining Hands-On Lab Manual
  • Database Tuning Hands-On Lab Manual
  •  

    Posted: Sep 21 2005, 01:27 PM by Ohad Israeli | with 1 comment(s)
    Filed under:
    Visual Studio 2005 Team Suite - Release Candidate

    Just checked msdn subscriber downloads and look what i’ve found : 

    Visual Studio 2005 Team Suite - Release Candidate

    This Release Candidate of Visual Studio 2005 Team Suite offers significant enhancements and greater quality over previous Beta releases. This software is unsupported pre-release software and upgrading to or from this RC is not supported. This RC is NOT covered by the Beta 2 Go-Live license and cannot be used for production deployments of customer applications.

    By releasing this RC, we are providing you with the opportunity to track improvements made to the product since previous releases and to provide any last minute feedback as we approach RTM. We thank you for your continued participation in evaluating this pre-release software.

    COOL !

    How to make Apache run ASP.NET / ASP.NET 2.0

    Don’t ask me why… but i’ve been asked to make Apache run ASP.NET.

    IT Worked !

    Even worked with ASP.NET 2.0 Site !

    Following are the instruction to make Asp.Net work under apache:

    – Install Apache 2.0.54

    – Install Mod_AspDotNet

    – Add at the end of C:\Program Files\Apache Group\Apache2\conf\httpd.conf the following lines

    #asp.net
    LoadModule aspdotnet_module "modules/mod_aspdotnet.so"

    AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo

    <IfModule mod_aspdotnet.cpp> 
      # Mount the ASP.NET /asp application
      AspNetMount /SampleASP "c:/SampleASP"
      #/SampleASP is the alias name for asp.net to execute
      #"c:/SampleASP" is the actual execution of files/folders  in that location

      # Map all requests for /asp to the application files
      Alias /SampleASP "c:/SampleASP"
      #maps /SampleASP request to "c:/SampleASP"
      #now to get to the /SampleASP type
    http://localhost/SampleASP
      #It'll redirect
    http://localhost/SampleASP to "c:/SampleASP"

      # Allow asp.net scripts to be executed in the /SampleASP example
      <Directory "c:/SampleASP">
        Options FollowSymlinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex index.htm index.aspx
       #default the index page to .htm and .aspx
      </Directory>

      # For all virtual ASP.NET webs, we need the aspnet_client files
      # to serve the client-side helper scripts.
      AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
      <Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
        Options FollowSymlinks
        Order allow,deny
        Allow from all
      </Directory>
    </IfModule>
    #asp.net

    – Create a directory c:\SampleASP and insert in it the index.aspx – Restart apache server :
       Start->
     Apache HTTP Server 2.0.54 ->
       Control Apache Server -> Restart
    – Open Explorer and navigate to http://localhost/SampleASP/index.aspx If everything worked fine you should get a nice asp.net page working.

     — index.aspx —

    <%@ Page Language="VB" %>
    <html>
       <head>
          <link rel="stylesheet"href="intro.css" mce_href="intro.css">
       </head> 
       <body> 
           <center> 
           <form action="index.aspx" method="post"> 
               <h3> Name: <input id="Name" type=text> 
               Category:  <select id="Category" size=1> 
                              <option>One</option>
                              <option>Two</option>
                              <option>Three</option>
                          </select> 
               </h3> 
               <input type=submit value="Lookup"> 
               <p> 
               <% Dim I As Integer
                  For I = 0 to 7 %>
                  <font size="<%=I%>"> Sample ASP.NET TEST</font> <br>
               <% Next %> 
           </form> 
           </center> 
       </body>
    </html>

    Software Factories

    Following are some links to content on software factories:

    Software Factories Workshop

    Visual Studio Team System: What is a software factory?

    The case for Software Factories

    Problems and Innovations

    Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools

    A Software Factory Approach to HL7 Version 3 Solutions

    The case for Software Factories

    Software Factories Blogers:

    Keith Short
    Steve Cook
    Jack Greenfield

    WinFS Beta 1 - Thomas Rizzo and the WinFS team Video !

    Do you want to learn what WinFS is all about ?

    Do you want to see the pepole behind WinFS ?

    Watch Thomas Rizzo and the WinFS team talking about WinFS beta 1 on this cool video hosted on Channel 9

     

    More Posts