<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-13993074</id><updated>2011-12-14T18:51:01.281-08:00</updated><title type='text'>Bharat T. Motwani</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-13993074.post-1579066289556327854</id><published>2009-07-22T06:02:00.000-07:00</published><updated>2009-07-22T23:06:26.051-07:00</updated><title type='text'>SQL CLR Stored procedure deployment</title><content type='html'>&lt;span style="font-family:arial;"&gt;&lt;span style="color:#ff0000;"&gt;"CREATE ASSEMBLY for assembly 'CLRAssembly' failed because assembly 'CLRAssembly' is not authorized for PERMISSION_SET = EXTERNAL_ACCESS. The assembly is authorized when either of the following is true: the database owner (DBO) has EXTERNAL ACCESS ASSEMBLY permission and the database has the TRUSTWORTHY database property on; or the assembly is signed with a certificate or an asymmetric key that has a corresponding login with EXTERNAL ACCESS ASSEMBLY permission."&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;strong&gt;&lt;span style="color:#006600;"&gt;Have you got this error while deploying an SQL CLR stored procedure ?&lt;br /&gt;If yes, then look no further and check out the steps below to deploy a sample SQL CLR Stored procedure. &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;1/ Create a New SQL Server 2005 Database and name it "CLRTest"&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;br /&gt;2/ In order to set the correct permissions for the database to execute the SQL CLR stored procedure we need to set the Trustworthy property of the database to "true". By default the Trustworthy property is set to "false".&lt;br /&gt;Execute the following statement to set the Trustworty property to "true"&lt;br /&gt;&lt;br /&gt;&lt;em&gt;ALTER DATABASE CLRTest SET TRUSTWORTHY ON &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;3/ Create a new user in SQL Server named "clrtestuser" and use the authentication type as "SQL Server Authentication".&lt;br /&gt;Assign the db_owner permission to the "clrtestuser" on the "CLRTest" database.&lt;br /&gt;&lt;br /&gt;4/ The next step is to grant the "external access assembly" permission to the "clrtestuser" user.&lt;br /&gt;This can be done by running the following statement.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;USE master&lt;br /&gt;GO&lt;br /&gt;GRANT EXTERNAL ACCESS ASSEMBLY TO clrtestuser&lt;br /&gt;GO&lt;br /&gt;&lt;/em&gt;&lt;br /&gt;5/ Create a new "SQL Server project" in Visual Studio 2005 named "CLRAssembly"&lt;br /&gt;Add a new user-defined function to the project which will have the following code.&lt;br /&gt;&lt;u&gt;"UserDefinedFunctions.vb" &lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;Imports System&lt;br /&gt;Imports System.Data&lt;br /&gt;Imports System.Data.SqlClient&lt;br /&gt;Imports System.Data.SqlTypes&lt;br /&gt;Imports Microsoft.SqlServer.Server&lt;br /&gt;&lt;br /&gt;Partial Public Class UserDefinedFunctions&lt;br /&gt;&amp;lt;microsoft.sqlserver.server.sqlfunction()&amp;gt;_&lt;br /&gt;Public Shared Function MyFirstCLRFunction() As SqlString&lt;br /&gt;' Add your code here&lt;br /&gt;Return New SqlString("Hello")&lt;br /&gt;End Function&lt;br /&gt;End Class&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;6/ Change the database settings for the project "CLRAssembly" to point to the "CLRTest" database.&lt;br /&gt;To make this change in Visual Studio 2005 go to Project --&gt; CLRAssembly Properties&lt;br /&gt;Go to the "Database" tab and set the Connection String to point to the "CLRTest" database. The connection string should use SQL Authentication and the user name "clrtestuser"&lt;br /&gt;Go to the "Database" tab and set the Permission Level to "External"&lt;br /&gt;&lt;br /&gt;7/ If you want to debug the SQL CLR stored procedure from Visual Studio 2005, then assign the "sysadmin" role to the "clrtestuser".&lt;br /&gt;&lt;br /&gt;8/ The SQL CLR stored procedure can now be deployed using the "Build--&gt;Deploy CLRAssembly" menu.&lt;br /&gt;&lt;br /&gt;9/ If you want to deploy the SQL CLR stored procedure manually then build the "CLRAssembly" project.&lt;br /&gt;Log on to SQL Server using windows authentication and run the following statement.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;DROP FUNCTION fnMyFirstCLRFunction&lt;br /&gt;GO&lt;br /&gt;DROP ASSEMBLY CLRAssembly&lt;br /&gt;go&lt;br /&gt;CREATE ASSEMBLY CLRAssembly&lt;br /&gt;FROM 'C:\Projects\CLRAssembly\bin\CLRAssembly.dll'&lt;br /&gt;WITH PERMISSION_SET = EXTERNAL_ACCESS&lt;br /&gt;GO&lt;br /&gt;CREATE FUNCTION fnMyFirstCLRFunction() returns nvarchar(200)&lt;br /&gt;AS EXTERNAL NAME [CLRAssembly].[CLRAssembly.UserDefinedFunctions].[MyFirstCLRFunction]&lt;br /&gt;GO &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;Note: &lt;/strong&gt;If a database has been backed up and restored and the above steps for creating an assembly are run on that database, then the assembly will not be installed and it will throw an error. &lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-1579066289556327854?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/1579066289556327854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2009/07/sql-clr-stored-procedure-deployment.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/1579066289556327854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/1579066289556327854'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2009/07/sql-clr-stored-procedure-deployment.html' title='SQL CLR Stored procedure deployment'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-4035755593307950577</id><published>2008-03-30T23:46:00.000-07:00</published><updated>2008-03-30T23:48:24.589-07:00</updated><title type='text'>New Tech site</title><content type='html'>Checkout this amazing site. &lt;a href="http://www.techiecrossing.com/"&gt;www.techiecrossing.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-4035755593307950577?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/4035755593307950577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2008/03/new-tech-site.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/4035755593307950577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/4035755593307950577'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2008/03/new-tech-site.html' title='New Tech site'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-6437444328039654643</id><published>2007-11-06T00:34:00.000-08:00</published><updated>2007-11-06T00:36:34.686-08:00</updated><title type='text'>Homestead is cool</title><content type='html'>&lt;div align="justify"&gt;&lt;span&gt;Homestead is a cool site which has the following offerings.&lt;br /&gt;True to its name, Homestead QuickSites whips up Web sites in a hurry. As with Bubbler, you can establish an attractive, functional Web presence without knowing the first thing about Web hosting or HTML. But whereas Bubbler uses a blog-tool-on-steroids approach (operating entirely from a local client), QuickSites is better thought of as a full-blown—though approachable—Web site creation tool and hosting service&lt;br /&gt;small business website design&lt;br /&gt;real estate website design&lt;br /&gt;custom website design&lt;br /&gt;ecommerce website design&lt;br /&gt;Check out the links below.&lt;br /&gt;&lt;a href="http://www.homestead.com/"&gt;http://www.homestead.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.homestead.com/~site/small-business-website-design.ffhtml"&gt;http://www.homestead.com/~site/small-business-website-design.ffhtml&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span&gt;&lt;a href="http://www.homestead.com/~site/real-estate-website-design.ffhtml"&gt;http://www.homestead.com/~site/real-estate-website-design.ffhtml&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span&gt;&lt;a href="http://www.homestead.com/~site/custom-website-design.ffhtml"&gt;http://www.homestead.com/~site/custom-website-design.ffhtml&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span&gt;&lt;a href="http://www.homestead.com/~site/ecommerce-website-design.ffhtml"&gt;http://www.homestead.com/~site/ecommerce-website-design.ffhtml&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-6437444328039654643?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/6437444328039654643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2007/11/homestead-is-cool.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/6437444328039654643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/6437444328039654643'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2007/11/homestead-is-cool.html' title='Homestead is cool'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-8338394180023664429</id><published>2007-05-04T00:23:00.000-07:00</published><updated>2007-05-04T00:25:39.406-07:00</updated><title type='text'>Gadget on Live.com</title><content type='html'>I got the Webrockstar Gadget posted on the Live.com site.&lt;br /&gt;The gadget can be accessed by clicking on the following link&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gallery.live.com/LiveItemDetail.aspx?li=24aec5c7-b4f8-4271-899a-3776a9ebddff"&gt;http://gallery.live.com/LiveItemDetail.aspx?li=24aec5c7-b4f8-4271-899a-3776a9ebddff&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is the Mumbai Live Videos gadget and can be added to the users Live Page..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-8338394180023664429?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/8338394180023664429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2007/05/gadget-on-livecom.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/8338394180023664429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/8338394180023664429'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2007/05/gadget-on-livecom.html' title='Gadget on Live.com'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-1633427377153752422</id><published>2007-02-04T23:56:00.000-08:00</published><updated>2007-02-06T06:03:49.080-08:00</updated><title type='text'>I am a Web Rockstar</title><content type='html'>Microsoft had a contest for the &lt;a href="http://webrockstars.in/"&gt;Web Rockstars&lt;/a&gt; in India.&lt;br /&gt;I am one of the winners and get an XBox 360.&lt;br /&gt;Check out the winners list on the WebRockStars site..&lt;br /&gt;&lt;br /&gt;My Gadget for the contest was the "Mumbai Live Traffic Videos".&lt;br /&gt;This gadget can be added by going to the &lt;a href="http://live.com"&gt;http://live.com&lt;/a&gt; site&lt;br /&gt;and adding the following URL&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bharatmotwani.spymac.com/MumbaiVideo/MumbaiVideoGadget.xml"&gt;http://bharatmotwani.spymac.com/MumbaiVideo/MumbaiVideoGadget.xml&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This gadget displays Live Videos from Mumbai//&lt;br /&gt;&lt;br /&gt;Thanx "Microsoft" for the XBox (Which i am yet to get).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-1633427377153752422?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/1633427377153752422/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2007/02/i-am-webrockstar.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/1633427377153752422'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/1633427377153752422'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2007/02/i-am-webrockstar.html' title='I am a Web Rockstar'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-5787633460031432538</id><published>2007-01-22T22:01:00.000-08:00</published><updated>2007-01-22T22:06:31.159-08:00</updated><title type='text'>One more post on /.</title><content type='html'>Today one of my Posts was listed on the /. site. I tried to add the same post to indianpad.com but it did not turn up on the home page.&lt;br /&gt;&lt;br /&gt;Its good to see one of my post back again on slashdot.org&lt;br /&gt;The post was about "India Brings back Orbiting Satellite to Earth."&lt;br /&gt;Check it out at &lt;a href="http://science.slashdot.org/article.pl?sid=07/01/22/1344254"&gt;http://science.slashdot.org/article.pl?sid=07/01/22/1344254&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-5787633460031432538?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/5787633460031432538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2007/01/one-more-post-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/5787633460031432538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/5787633460031432538'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2007/01/one-more-post-on.html' title='One more post on /.'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-115683294760301352</id><published>2006-08-28T23:27:00.000-07:00</published><updated>2006-08-28T23:29:07.636-07:00</updated><title type='text'>Ganpati</title><content type='html'>Yes.. its back again this year. and i have quite some snaps&lt;br /&gt;Check the link below to view the snaps&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.flickr.com/photos/88876540@N00/'&gt; At Flickr&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-115683294760301352?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/115683294760301352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2006/08/ganpati.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/115683294760301352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/115683294760301352'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2006/08/ganpati.html' title='Ganpati'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-113147744611370151</id><published>2005-11-08T11:13:00.000-08:00</published><updated>2005-11-08T11:17:26.126-08:00</updated><title type='text'>My First Submission on /.</title><content type='html'>Wow,, finally the guys at /. (www.Slashdot.org) accepted one of my&lt;br /&gt;submissions and its good to see my name on the /. front page..&lt;br /&gt;Check out the &lt;a href='http://www.slashdot.org'&gt;/.&lt;/a&gt; page for &lt;br /&gt;the article on History's Worst Software Bugs..&lt;br /&gt;&lt;br /&gt;The submission is for an article on wired.com and its generated some&lt;br /&gt;hits on my blog toooooo.. &lt;br /&gt;The wired article is at the foll. &lt;a href='http://wired.com/news/technology/bugs/0,2924,69355,00.html?tw=wn_tophead_1'&gt;link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;nnnnnnnnjoy..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-113147744611370151?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/113147744611370151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2005/11/my-first-submission-on.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/113147744611370151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/113147744611370151'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2005/11/my-first-submission-on.html' title='My First Submission on /.'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-113099716921080340</id><published>2005-11-02T21:47:00.000-08:00</published><updated>2005-11-02T21:55:02.550-08:00</updated><title type='text'>Online Ver. of Windows.</title><content type='html'>I just checked out this new online ver. of Windows which MS has just launched&lt;br /&gt;and its cooooll..&lt;br /&gt;Check it out at &lt;a href='http://www.live.com'&gt;www.live.com&lt;/a&gt;&lt;br /&gt;Windows Live is a set of Internet-based personal services, such as e-mail, blogging and instant messaging.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-113099716921080340?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/113099716921080340/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2005/11/online-ver-of-windows.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/113099716921080340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/113099716921080340'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2005/11/online-ver-of-windows.html' title='Online Ver. of Windows.'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-112840812770362339</id><published>2005-10-03T23:34:00.000-07:00</published><updated>2005-10-03T23:42:07.710-07:00</updated><title type='text'>Permission error while debugging ASP app.</title><content type='html'>&lt;div align="justify"&gt;Today i made a second copy of my ASP appln and tried debugging it.&lt;br /&gt;My ASP app was accessing a COM+ component and the component was not in a compiled state.&lt;br /&gt;I was running the component directly from the VB IDE so that i could debug the component also.&lt;br /&gt;&lt;br /&gt;All this stuff is currently working in my current ver. of the ASP app but just as i made another copy of the ASP appln and tried to run it i got an error which goes like this..&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff6666;"&gt;Server object, ASP 0178 (0x800A0005) The call to Server.CreateObject failed while checking permissions. Access is denied to this object.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I tried to recollect the solun. to this cos i have faced this a lot of times and i finally got it at the following MS link..&lt;br /&gt;&lt;br /&gt;&lt;a href="http://support.microsoft.com/kb/259725/EN-US/"&gt;http://support.microsoft.com/kb/259725/EN-US/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;google helped me again in this and with just a single search..&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-112840812770362339?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/112840812770362339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2005/10/permission-error-while-debugging-asp.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/112840812770362339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/112840812770362339'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2005/10/permission-error-while-debugging-asp.html' title='Permission error while debugging ASP app.'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-112014345778827330</id><published>2005-06-30T07:51:00.000-07:00</published><updated>2005-06-30T08:32:32.696-07:00</updated><title type='text'>Debugging ASP apps in Interdev.</title><content type='html'>" What ? a technical post ",&lt;br /&gt;yeahh i decided to start with posting some technical solutions to problems which we developers face in our day 2 day life..&lt;br /&gt;&lt;br /&gt;Most of us work on VS 6.0 &amp;amp; Visual Interdev and are not aware that we can debug the Visual Interdev solutions / ASP apps just as we debug the normal VB apps. To enable Visual Interdev to debug below go thro the steps given below.&lt;br /&gt;&lt;br /&gt;1. First Install a Working copy of Visual Interdev 6.0.&lt;br /&gt;&lt;br /&gt;2. Next we need to install the Back Office components. These are typically present in the 5th CD of the Visual Studio 6.0 set.Insert this Cd and then select Launch Backoffice Installation Wizard after that select the following components to install.a. Remote Machine Debuggingb. Frontpage Server Extensions.(imp. these are the 2 apps which are needed for debugging ASP apps.)Complete the Backoffice Installation.&lt;br /&gt;&lt;br /&gt;3. Next give a breakpoint in one of your ASP page and run your Visual Interdev solution.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;The first time you run it there would be a message box which says. "This Project is not set up to enable ASP Debugging. Would you like to enable ASP Debugging on this Project ?" Select Yes on this message box (cos we need ASP pages to be debugged).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now if you get another message box which says. "Unable to set server into Correct Debugging state automatically..." Select Yes over here also.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now browse to the page where you have set up the breakpoint and the Visual Interdev app will go in the Debugging mode and you will be able to look into variable values, Immediate window etc.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;If after the c. step you are still unable to debug the ASP application then stop the Interdev app perform the following steps.&lt;br /&gt;&lt;br /&gt;a. Go To Control Panel --&gt; Administration --&gt; Internet Services Manager / Internet Information Service / IIS.&lt;br /&gt;b. Here go to your Virutal Directory and right-click --&gt; Properties.&lt;br /&gt;c. Click on the Configuration button which is in the Directory tab. Select the Debuggin Tab in the Application Configuration window.&lt;br /&gt;d. Check the boxes 'Enable ASP server-side script debugging' and 'Enable ASP client-side script debugging'&lt;br /&gt;Run the Interdev application and you will be able to debug it now. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;(imp. You will also need to enter the Administrators / Logged In Users password while running the Interdev app. So enter the correct password.)&lt;/p&gt;&lt;p&gt;This was it about Debugging the ASP scripts in Visual Interdev.&lt;br /&gt;&lt;br /&gt;We can also similarly debug the Client-Side vb/javascript code in the ASP/HTML pages.&lt;br /&gt;&lt;br /&gt;While running the ASP page in IE Webbrowser click on the menu View --&gt; Script Debugger --&gt; Open.&lt;br /&gt;This will open the Script Debugger in Interdev after which you can debug your client code.&lt;br /&gt;If you want to debug after say clicking on the Submit button then select View --&gt; Script Debugger --&gt; Break at Next Statement.&lt;br /&gt;This will open the code at the onclick event of the Submit button.&lt;br /&gt;&lt;br /&gt;This was a very brief overview about debugging the Interdev apps.&lt;br /&gt;&lt;br /&gt;If you are still unable to make Debugging work youcan find the MSDN article at&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvid/html/msdn_videbugging.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvid/html/msdn_videbugging.asp&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-112014345778827330?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/112014345778827330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2005/06/debugging-asp-apps-in-interdev.html#comment-form' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/112014345778827330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/112014345778827330'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2005/06/debugging-asp-apps-in-interdev.html' title='Debugging ASP apps in Interdev.'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13993074.post-111987782348548932</id><published>2005-06-27T06:06:00.000-07:00</published><updated>2005-06-27T06:10:23.486-07:00</updated><title type='text'>My 2nd Blog...</title><content type='html'>Hi Evry1..&lt;br /&gt;&lt;br /&gt;This is my 2nd blog after my prev. 1 on MSN spaces didnt work quite well.. Bloggers interface&lt;br /&gt;is quite good and way ahead then the one on MSN Spaces... Lets see how this turns out..&lt;br /&gt;&lt;br /&gt;Keep coming back in a while to check out my Posts...&lt;br /&gt;&lt;br /&gt;Cya...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13993074-111987782348548932?l=bharatmotwani.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bharatmotwani.blogspot.com/feeds/111987782348548932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bharatmotwani.blogspot.com/2005/06/my-2nd-blog.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/111987782348548932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13993074/posts/default/111987782348548932'/><link rel='alternate' type='text/html' href='http://bharatmotwani.blogspot.com/2005/06/my-2nd-blog.html' title='My 2nd Blog...'/><author><name>Bharat T. Motwani</name><uri>http://www.blogger.com/profile/15202555067086552290</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='27' src='http://1.bp.blogspot.com/_1ucAMQ_j9vY/SmcNnDr7jsI/AAAAAAAAAAk/8QbtYR9QRgM/S220/Image003.jpg'/></author><thr:total>1</thr:total></entry></feed>
