<?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-3517493193240205135</id><updated>2011-11-12T10:14:49.565-08:00</updated><title type='text'>Impossible As Possible</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>50</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5266361670215429792</id><published>2010-07-02T23:08:00.000-07:00</published><updated>2010-10-13T20:15:13.518-07:00</updated><title type='text'>How to Send an Email from Microsoft Azure (cloud).</title><content type='html'>Hi, Sorry for not updating my blog these days. from past eight months I am working very less in sharepoint 2010.These days I am working more on new emerging technology "Microsoft Azure" .As we aware Azure is cloud computing.These days I am getting requests from other teams as well as from other colleagues about how to send an email from Azure.&lt;br /&gt;&lt;br /&gt;So here are the ways I did it practically in our applications.&lt;br /&gt;&lt;br /&gt;1)sending mail using exchange service&lt;br /&gt;2)sending mail using SMTP Server&lt;br /&gt;     a)using service bus &lt;br /&gt;     b)using a windows service &lt;br /&gt;3)you can also use public available mail services like LIVEID,Google&lt;br /&gt;4)SMTP Relay or mail relay service(which I dont prefer as I faced lots of port issues.)&lt;br /&gt;&lt;br /&gt;lets see one by one &lt;br /&gt;&lt;br /&gt;easy approach to send an email from azure is using exchange service :). I prefer this approach.If the application is having any dependency on SMTP service then next two approaches can be used.&lt;br /&gt;&lt;br /&gt;sending mail from exchange service is 4 steps.&lt;br /&gt;&lt;br /&gt;1)Download the &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=c3342fb3-fbcc-4127-becf-872c746840e1#filelist"&gt; dll &lt;/a&gt; . 32bit is fine &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2)Reference this dll in your project.((but make sure copylocal property set to True)&lt;br /&gt;&lt;br /&gt;3)set the values in the service configuration.(for easy configuration)&lt;br /&gt;I am using web.config in this but better to use service configuration instead of web.configuration.&lt;br /&gt;&lt;br /&gt;    &lt;---add key="EmailDomain" value="your Domain Name"/&gt;&lt;br /&gt;    &lt;---add key="EmailUserName" value ="provide your username "/&gt;&lt;br /&gt;    &lt;---add key="EmailPwd" value="provide password "/&gt;&lt;br /&gt;    &lt;---add key="EmailID" value="provide your email ID"/&gt;&lt;br /&gt;    &lt;---add key="ExchangeserverURI" value="provide your exchange service URI"/&gt;&lt;br /&gt;&lt;br /&gt;4)use the below code to send an email.&lt;br /&gt;            try&lt;br /&gt;            {&lt;br /&gt;&lt;br /&gt;                string domain = WebConfigurationManager.AppSettings["EmailDomain"];&lt;br /&gt;                string username=WebConfigurationManager.AppSettings["EmailUserName"];&lt;br /&gt;                string pwd=WebConfigurationManager.AppSettings["EmailPwd"];&lt;br /&gt;                string email=WebConfigurationManager.AppSettings["EmailID"];&lt;br /&gt;                string exchangeuri=WebConfigurationManager.AppSettings["ExchangeserverURI"];&lt;br /&gt;                &lt;br /&gt;                ExchangeService service = new ExchangeService();&lt;br /&gt;                service.Credentials = new WebCredentials(username, pwd, domain);&lt;br /&gt;                service.Url = new Uri(exchangeuri);&lt;br /&gt;                service.AutodiscoverUrl(email);&lt;br /&gt;                EmailMessage message = new EmailMessage(service);&lt;br /&gt;                message.ToRecipients.Add(e.Message.To[0].ToString());&lt;br /&gt;                message.From = new EmailAddress(email);&lt;br /&gt;                message.Subject = e.Message.Subject;&lt;br /&gt;                message.Body = e.Message.Body;&lt;br /&gt;                // The following method sends the mail and also saves a copy in the 'Sent Items' folder&lt;br /&gt;                message.SendAndSaveCopy();&lt;br /&gt;            }&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;That's it now you can send an email from AZURE using exchange service. :) Give a try if you are facing problems add a comment.&lt;br /&gt;&lt;br /&gt;2)some applications depends on SMTP server.if this SMTP server resides in our intranet or company's network it is not easy to access from cloud.as the smtp is protected using firewalls and NAT's to avoid spam's or attacks by external users.&lt;br /&gt;&lt;br /&gt;there are two ways to achieve this.&lt;br /&gt;&lt;br /&gt;1)using service bus.&lt;br /&gt;&lt;br /&gt;I am not going to explain it detailedly but ill give you steps how to do. if possible ill also update the code if I get some time. :)&lt;br /&gt;&lt;br /&gt;create a wcf service which uses SMTP server  and host it in IIS or windows service which reads mail message and using service bus connect to this wcf service that's it now you are good to send an email.&lt;br /&gt;&lt;br /&gt;2)not recommended but if application is having mails to send on timely basis like daily once or for every 6 hr's some thing like this they can use this approach.&lt;br /&gt;&lt;br /&gt;store the mail details in SQLAzure and read from sql azure using windows service and send the mails using your SMTP server.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That's it as of now these are the possibilities we have in AZURE and I did all these practically in my Azure applications.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5266361670215429792?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5266361670215429792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5266361670215429792' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5266361670215429792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5266361670215429792'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2010/07/how-to-send-email-from-microsoft-azure.html' title='How to Send an Email from Microsoft Azure (cloud).'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-633968842764898483</id><published>2010-01-11T21:51:00.000-08:00</published><updated>2010-01-11T21:55:31.561-08:00</updated><title type='text'>How to access list attachments when we model with SPMetal tool</title><content type='html'>I just wondering how to access list attachments when we model using spmetal tool.&lt;br /&gt;&lt;br /&gt;SPLists are ADO.net Data services models. Currently attachments are exposed as properties only on the client side but I didnt find any server side for this.&lt;br /&gt;&lt;br /&gt;and we can access attachments by implementing Icustommapping interface on the entity.&lt;br /&gt;SPlist item object  will be available in mapto and mapfrom methods.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-633968842764898483?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/633968842764898483/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=633968842764898483' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/633968842764898483'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/633968842764898483'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2010/01/how-to-access-list-attachments-when-we.html' title='How to access list attachments when we model with SPMetal tool'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8800846397100747027</id><published>2010-01-01T04:41:00.000-08:00</published><updated>2010-01-03T22:42:06.158-08:00</updated><title type='text'>Vesa and Me</title><content type='html'>I met Vesa juvonen and Jukka Ylimutka. very nice talking to them. &lt;br /&gt;&lt;br /&gt;Vesa,Jukka are Senior consultants of microsoft from Finland.&lt;br /&gt;&lt;br /&gt;Vesa is a MCM in sharepoint.&lt;br /&gt;&lt;br /&gt; Good experience with greate people like Arpanshah,Vesa and Jukka.&lt;br /&gt;&lt;br /&gt;me with Vesa.&lt;a href="http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3uVBzBvTI/AAAAAAAACS4/HiyiTXyKw7A/s1600-h/IMG0464A.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 160px; height: 128px;" src="http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3uVBzBvTI/AAAAAAAACS4/HiyiTXyKw7A/s400/IMG0464A.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5421751571451067698" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8800846397100747027?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8800846397100747027/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8800846397100747027' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8800846397100747027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8800846397100747027'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2010/01/vesa-and-me.html' title='Vesa and Me'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3uVBzBvTI/AAAAAAAACS4/HiyiTXyKw7A/s72-c/IMG0464A.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2724522846687900039</id><published>2010-01-01T04:32:00.000-08:00</published><updated>2010-01-01T04:39:52.732-08:00</updated><title type='text'>Arpanshah and me</title><content type='html'>I got a chance to meet Arpanshah. Arpanshah is director to Sharepoint.In december 2009 I met him. awsome experience talking to him.:)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;me with Arpan. :)&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3rsA_dkJI/AAAAAAAACSw/xog5e4KklEQ/s1600-h/IMG0463A.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 160px; height: 128px;" src="http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3rsA_dkJI/AAAAAAAACSw/xog5e4KklEQ/s400/IMG0463A.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5421748667836895378" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/arpans/"&gt;Arpan's blog&lt;/a&gt;. you can find more new things in his blog which are coming in sharepoint2010.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2724522846687900039?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2724522846687900039/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2724522846687900039' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2724522846687900039'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2724522846687900039'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2010/01/arpanshah-and-me.html' title='Arpanshah and me'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_MHBXgNa6mqE/Sz3rsA_dkJI/AAAAAAAACSw/xog5e4KklEQ/s72-c/IMG0463A.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2290893870845708879</id><published>2009-12-30T04:06:00.000-08:00</published><updated>2009-12-30T04:06:34.479-08:00</updated><title type='text'>Creating Performance Point service app.</title><content type='html'>lots of people in the discussion list are asking how to create the performance point service apps.&lt;br /&gt;&lt;br /&gt;Here are the steps to create performance point service.&lt;br /&gt;&lt;br /&gt;GUI  &lt;br /&gt;&lt;br /&gt;1.) Open your Central Admin page&lt;br /&gt;2.) Click on Manage Service Applications&lt;br /&gt;3.) Look for a Service Applications with a "Type" of "Secure Store Service Application", (if you don't have one, create a new one)&lt;br /&gt;4.) Click on that, the App, (not the Proxy)&lt;br /&gt;5.) If it tells you that you need to generate a key before you can use it, your key isn't setup yet&lt;br /&gt;6.) In the Ribbon you'll see a Create or Generate Key button&lt;br /&gt;7.) Click on that&lt;br /&gt;8.) Enter a Key Passphrase&lt;br /&gt;9.) Now go back up to the Manage Service Applications page&lt;br /&gt;10.) Find your PerformancePoint Service App, (if you don't have one, create one)&lt;br /&gt;11.) Click on the link to that App now&lt;br /&gt;12.) When you get there, click on the first link "PerformancePoint Service Application Settings"&lt;br /&gt;13.) Your Secure Store App's name should automatically be set in the text box&lt;br /&gt;14.) Now you just need to give it the Unattended Service Account name that you want it to use&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These are the actual commands, (generalized here), that I use to create the SS, Generate the Key, and create the PPS Application.  You run these from within your SharePoint Management Shell.&lt;br /&gt;&lt;br /&gt;******************************&lt;br /&gt;** Create the Secure Store App and Key **&lt;br /&gt;******************************&lt;br /&gt;1.) New-SPServiceApplicationPool -Name &lt;Your SS App Pool Name&gt; -Account &lt;Domain\Username&gt;&lt;br /&gt;2.) New-SPSecureStoreServiceApplication -ApplicationPool &lt;Your SS App Pool Name&gt; -AuditingEnabled -Name &lt;Your SS App Name&gt;&lt;br /&gt;3.) New-SPSecureStoreServiceApplicationProxy -DefaultProxyGroup:$True -Name &lt;Your SS App Proxy Name&gt; -ServiceApplication (Get-SPServiceApplication | select DisplayName,ID | where-object { $_.DisplayName -eq &lt;Your SS App Name&gt; }).ID.GUID&lt;br /&gt;4.) Update-SPSecureStoreMasterKey -ServiceApplicationProxy ((Get-SPServiceApplicationProxy | select DisplayName,ID | where-object { $_.DisplayName -eq &lt;Your SS App Proxy Name&gt; }).ID.GUID) -Passphrase &lt;Your Passphrase&gt;&lt;br /&gt;5.) Update-SPSecureStoreApplicationServerKey -ServiceApplicationProxy ((Get-SPServiceApplicationProxy | select DisplayName,ID | where-object { $_.DisplayName -eq &lt;Your SS App Proxy Name&gt; }).ID.GUID) -Passphrase &lt;Your Passphrase&gt;&lt;br /&gt;&lt;br /&gt;***********************&lt;br /&gt;** Create the PPS Application **&lt;br /&gt;***********************&lt;br /&gt;6.) New-SPServiceApplicationPool -Name &lt;Your IIS Web App Pool Name&gt; -Account &lt;Domain\Username&gt;&lt;br /&gt;7.) New-SPPerformancePointServiceApplication -Name &lt;Your PPS App Name&gt; -ApplicationPool &lt;Your IIS Web App Pool Name&gt;&lt;br /&gt;8.) New-SPPerformancePointServiceApplicationProxy -Name &lt;Your PPS App Proxy Name&gt; -ServiceApplication &lt;Your PPS App Name&gt; -Default&lt;br /&gt;9.) Set-SPPerformancePointSecureDataValues -ServiceApplication (Get-SPServiceApplication | select DisplayName,ID | where-object { $_.DisplayName -eq &lt;Your PPS App Name&gt; }).ID.GUID -DataSourceUnattendedServiceAccount (New-Object System.Management.Automation.PSCredential &lt;Domain\Username&gt;, (ConvertTo-SecureString &lt;Your Passphrase&gt; -AsPlainText -Force))&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2290893870845708879?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2290893870845708879/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2290893870845708879' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2290893870845708879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2290893870845708879'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/12/creating-performance-point-service-app.html' title='Creating Performance Point service app.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5714401286118975298</id><published>2009-12-30T01:29:00.000-08:00</published><updated>2009-12-30T01:29:24.126-08:00</updated><title type='text'>Opening HTML Files in Sharepoint 2010</title><content type='html'>I recently faced an issue where the customer was attempting to open HTML documents from a document library.  He only had an option to download the document.  He wanted the ability to open the HTML document directly within the browser. &lt;br /&gt;&lt;br /&gt;By default, Sharepoint 2010 is blocking the ability to open HTML documents directly from a document library.  &lt;br /&gt;&lt;br /&gt;However this can be changed by adjusting the browser file handling option.  The option is located here:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1.  Central Admin\Application Management\Manage Web Applications.&lt;br /&gt;2.  Select General Settings for the specified web application&lt;br /&gt;3.  For Browser file handling, select permissive.  The default is strict​&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5714401286118975298?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5714401286118975298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5714401286118975298' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5714401286118975298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5714401286118975298'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/12/opening-html-files-in-sharepoint-2010.html' title='Opening HTML Files in Sharepoint 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5946472330589822132</id><published>2009-11-25T03:35:00.000-08:00</published><updated>2009-11-25T03:36:12.173-08:00</updated><title type='text'>Azure Design patterns.</title><content type='html'>Design patterns for azure.&lt;br /&gt;&lt;br /&gt;http://azuredesignpatterns.cloudapp.net/AppPatterns.aspx#hostedwebserviceworker&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5946472330589822132?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5946472330589822132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5946472330589822132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5946472330589822132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5946472330589822132'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/azure-design-patterns.html' title='Azure Design patterns.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-783620958516638862</id><published>2009-11-25T00:15:00.000-08:00</published><updated>2009-11-25T00:17:52.030-08:00</updated><title type='text'>Sharepoint 2010 BETA is availiable now.</title><content type='html'>good news sharepoint guyssss here is the link to download sharepoint 2010.&lt;br /&gt;&lt;br /&gt;http://msdn.microsoft.com/en-us/sharepoint/default.aspx&lt;br /&gt;&lt;br /&gt;Download the SDK and start working :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-783620958516638862?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/783620958516638862/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=783620958516638862' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/783620958516638862'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/783620958516638862'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/sharepoint-2010-beta-is-availiable-now.html' title='Sharepoint 2010 BETA is availiable now.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2664537762239750013</id><published>2009-11-19T20:47:00.000-08:00</published><updated>2009-11-19T20:55:14.368-08:00</updated><title type='text'>DB Availability with Failover Database server.</title><content type='html'>Some times Sharepoint site will be down because of database server. &lt;br /&gt;&lt;br /&gt;think if it is a production and u left for the day suddenly database server is down the next day you hav to come and fix the issue. :(&lt;br /&gt;&lt;br /&gt;fortunately in sharepoint 2010 we can fix this issue with out doing anything. There is a new thing called Failover Database server. &lt;br /&gt;&lt;br /&gt;We have to set this property. Sharepoint automatically picks the other database server automatically if the first or primary server is not available.&lt;br /&gt;&lt;br /&gt;The other database which we are talking is a mirror of SQL database. &lt;br /&gt;&lt;br /&gt;To set this property we have to do as below:&lt;br /&gt;&lt;br /&gt;Central Admin-&gt; Application management-&gt; Manage content Databases-&gt; DB-&gt;enter the sqlmirror DB value in "FailOver Database Server".&lt;br /&gt;&lt;br /&gt;really a cool feature for Admin guys. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2664537762239750013?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2664537762239750013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2664537762239750013' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2664537762239750013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2664537762239750013'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/db-availability-with-failover-database.html' title='DB Availability with Failover Database server.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2955827285619002657</id><published>2009-11-19T05:24:00.000-08:00</published><updated>2009-11-19T05:33:01.587-08:00</updated><title type='text'>Content Recovery from Unattached  Databases</title><content type='html'>Sharepoint 2010 is providing new feature to recover data from a sharepoint backup DB. without attaching the db to site.&lt;br /&gt;&lt;br /&gt;Here you go for example I have a document deleted and it is not there in recycle bin as well so to recover that we have to get backup db attach to site and do some extra steps.&lt;br /&gt;&lt;br /&gt;Now in sharepoint2010 they are providing an UI where we can attach a backupDB and can dig in to the sitecollections-&gt;sites-&gt;lists-&gt;items.&lt;br /&gt;&lt;br /&gt;Here is the steps to do:&lt;br /&gt;&lt;br /&gt;Central Admin-&gt;Backup and restore-&gt;specify the name in unattached content database data recovery-&gt; DBname-&gt; site-&gt;list-&gt;select export site or list -&gt;specify location in harddrive.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So we can export that content or document to harddrive and can import in to the site.&lt;br /&gt;&lt;br /&gt;this is a cool feature. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2955827285619002657?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2955827285619002657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2955827285619002657' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2955827285619002657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2955827285619002657'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/content-recovery-from-unattached.html' title='Content Recovery from Unattached  Databases'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3967791562720986861</id><published>2009-11-19T04:09:00.001-08:00</published><updated>2009-11-19T04:13:05.606-08:00</updated><title type='text'>Restarting timer jobs using powershell in sharepoint 2010</title><content type='html'>This is the single line of powershell script which restarts the timerservice jobs in sharepoint 2010&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Get -SPTimerjob | where {$_.name -match "hourly"} | start -sptimerjob.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this line says to get all the sptimerjobs where name mathces hourly and run that job.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;still stsadm command works but powershell is rocking :) admin people must learn this powershell.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3967791562720986861?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3967791562720986861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3967791562720986861' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3967791562720986861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3967791562720986861'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/restarting-timer-jobs-using-powershell.html' title='Restarting timer jobs using powershell in sharepoint 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8285367574508812687</id><published>2009-11-19T03:56:00.000-08:00</published><updated>2009-11-19T04:07:35.031-08:00</updated><title type='text'>SSP in 2007  turnedout to Service Applications in sharepoint 2010</title><content type='html'>SSP(Shared service provider) in sharepont 2007 is turnedout to Service Applications in new sharepoint 2010.&lt;br /&gt;&lt;br /&gt;SSP contains all the services in 2007. now each individual service is a stand alone Service application.&lt;br /&gt;&lt;br /&gt;Ex: Search service application , People Service application, Metadata Service application...&lt;br /&gt;&lt;br /&gt;each of these service applications has its own content DB's. &lt;br /&gt;&lt;br /&gt;one application can have many instances of these services.&lt;br /&gt;&lt;br /&gt;for example we can create 2 metadata services 1 for enterprise and 1 for bankingdomain&lt;br /&gt;&lt;br /&gt;and we can link this service applications to more than one webapplication.&lt;br /&gt;&lt;br /&gt;we can configure this service application when we creating the webapplication or we can configure this later by  going..&lt;br /&gt;&lt;br /&gt;Central Admin-&gt; Manage Service applications -&gt; Select the application (or)Create new -&gt; enter the values for properties or edit the properties.&lt;br /&gt;&lt;br /&gt;making services to run independently gives u more performance and more reusability.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8285367574508812687?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8285367574508812687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8285367574508812687' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8285367574508812687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8285367574508812687'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/ssp-turnedout-to-service-applications.html' title='SSP in 2007  turnedout to Service Applications in sharepoint 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3365230663297208611</id><published>2009-11-18T03:36:00.000-08:00</published><updated>2009-11-18T03:37:36.861-08:00</updated><title type='text'>Document Sets in Sharepoint2010.</title><content type='html'>Sharepoint 2010 is introducing new concept called DocumentSets.&lt;br /&gt;&lt;br /&gt;Using this documentsets we can run workflows on set of documents,manage permissions,manage security..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3365230663297208611?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3365230663297208611/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3365230663297208611' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3365230663297208611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3365230663297208611'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/document-sets-in-sharepoint2010.html' title='Document Sets in Sharepoint2010.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-6814701690640534326</id><published>2009-11-18T03:31:00.000-08:00</published><updated>2009-11-18T03:35:26.592-08:00</updated><title type='text'>Inherting power of WIKI's in sharepoint 2010.</title><content type='html'>Now we can edit the sharepoint pages online.&lt;br /&gt;&lt;br /&gt;And also we can also use the syntax of WIKI's. which is a good news for WIKI Lovers.&lt;br /&gt;&lt;br /&gt;example :&lt;br /&gt;==Section==&lt;br /&gt;&lt;br /&gt;[[Article name#Section heading]]&lt;br /&gt;&lt;br /&gt;etc...&lt;br /&gt;&lt;br /&gt;more info on wiki editings &lt;br /&gt;&lt;br /&gt;http://en.wikipedia.org/wiki/Wikipedia:Section&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-6814701690640534326?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/6814701690640534326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=6814701690640534326' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6814701690640534326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6814701690640534326'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/inherting-power-of-wikis-in-sharepoint.html' title='Inherting power of WIKI&apos;s in sharepoint 2010.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-6121482770547750669</id><published>2009-11-18T03:28:00.000-08:00</published><updated>2009-11-18T03:31:04.193-08:00</updated><title type='text'>PowerPivot in sharepoint 2010 previously called as GEMINI</title><content type='html'>PowerPivot is previously called as "GEMINI".&lt;br /&gt;&lt;br /&gt;Power Pivot is an inmemory database technology that runs on server or client.&lt;br /&gt;&lt;br /&gt;we have &lt;br /&gt;1) SQLServer powerPivot for excel&lt;br /&gt;and&lt;br /&gt;2)SQLServer powerPivot for sharepoint2010.&lt;br /&gt;&lt;br /&gt;Using this power pivot we can manage millions of records and we can search in seconds for the data. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-6121482770547750669?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/6121482770547750669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=6121482770547750669' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6121482770547750669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6121482770547750669'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/powerpivot-in-sharepoint-2010.html' title='PowerPivot in sharepoint 2010 previously called as GEMINI'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-1792779656289846180</id><published>2009-11-18T03:13:00.000-08:00</published><updated>2009-11-18T03:27:12.752-08:00</updated><title type='text'>Opening office files in browser using sharepoint 2010. (Browser enabled documents)</title><content type='html'>using sharepoint 2007 we can only open the office files using rich clients. like powerpoint , word ,excel.&lt;br /&gt;&lt;br /&gt;Using shareoint 2010 we can open the office files in browser as well as client s/w.&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_MHBXgNa6mqE/SwPYo0-q8kI/AAAAAAAACSA/85R1beIJt1A/s1600/ribbonnew.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 93px;" src="http://3.bp.blogspot.com/_MHBXgNa6mqE/SwPYo0-q8kI/AAAAAAAACSA/85R1beIJt1A/s400/ribbonnew.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5405402173702599234" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;select Library Tools(from ribbon) -&gt; Select Library Settings-&gt;Advanced settings&lt;br /&gt;&lt;br /&gt;u will able to see the section opening documents in browser as below.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_MHBXgNa6mqE/SwPZbqyyOxI/AAAAAAAACSI/Y3tXuvKGfVs/s1600/options.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 153px;" src="http://2.bp.blogspot.com/_MHBXgNa6mqE/SwPZbqyyOxI/AAAAAAAACSI/Y3tXuvKGfVs/s400/options.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5405403047141718802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;default option is to open in the browser. choose the option required and save.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-1792779656289846180?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/1792779656289846180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=1792779656289846180' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1792779656289846180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1792779656289846180'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/modes-of-opening-office-files-in.html' title='Opening office files in browser using sharepoint 2010. (Browser enabled documents)'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_MHBXgNa6mqE/SwPYo0-q8kI/AAAAAAAACSA/85R1beIJt1A/s72-c/ribbonnew.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-4303766609516817181</id><published>2009-11-18T03:09:00.001-08:00</published><updated>2009-11-18T03:13:12.817-08:00</updated><title type='text'>Working Offline using sharepoint workspace.</title><content type='html'>We can work offline using sharepoint workspace. &lt;br /&gt;&lt;br /&gt;for a real scenario if we are working in the plane and want to edit some data in sharepoint lists or documents we can move the data to the sharepoint workspace. &lt;br /&gt;&lt;br /&gt;we can work on that and once the network is available we can sync with the sharepoint2010. :)&lt;br /&gt;&lt;br /&gt;to do this : Goto SiteActions-&gt; Sync to sharepoint workspace.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-4303766609516817181?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/4303766609516817181/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=4303766609516817181' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/4303766609516817181'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/4303766609516817181'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/working-offline-using-sharepoint.html' title='Working Offline using sharepoint workspace.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5645525783206652013</id><published>2009-11-18T03:06:00.000-08:00</published><updated>2009-11-18T03:08:41.847-08:00</updated><title type='text'>Easy Navigation in web administration.</title><content type='html'>People who uses sharepoint 2007 administration faced trouble in navigation. &lt;br /&gt;administrators moves from page to page and the navigation is not completely done in 2007 where people unable to reach the page which they came from. &lt;br /&gt;&lt;br /&gt;This problem got solved in new sharepoint 2010. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5645525783206652013?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5645525783206652013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5645525783206652013' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5645525783206652013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5645525783206652013'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/easy-navigation-in-web-administration.html' title='Easy Navigation in web administration.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-7402095934192403054</id><published>2009-11-18T03:03:00.000-08:00</published><updated>2009-11-18T03:06:11.298-08:00</updated><title type='text'>Easy Administration and customisation of sharepoint 2010 with  Powershell</title><content type='html'>New sharepoint 2010 is coming nearly with 500 powershell cmdlets. &lt;br /&gt;&lt;br /&gt;using this cmdlets we can easily do administration and do some customisations.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-7402095934192403054?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/7402095934192403054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=7402095934192403054' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7402095934192403054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7402095934192403054'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/easy-administration-and-customisation.html' title='Easy Administration and customisation of sharepoint 2010 with  Powershell'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8695113655856518014</id><published>2009-11-18T03:00:00.000-08:00</published><updated>2009-11-18T03:03:07.340-08:00</updated><title type='text'>Visual upgrade from Sharepoint 2007 to Sharepoint 2010</title><content type='html'>Now we can have the feel of new sharepoint 2010 UI for the existing 2007 sites. &lt;br /&gt;This needs admin priviliges to do.&lt;br /&gt;&lt;br /&gt;to do this : go to SiteActions-&gt; select Visual Upgrade option -&gt; save the changes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will give the new UI look for the sharepoint 2007 sites. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8695113655856518014?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8695113655856518014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8695113655856518014' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8695113655856518014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8695113655856518014'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/visual-upgrade-from-sharepoint-2007-to.html' title='Visual upgrade from Sharepoint 2007 to Sharepoint 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8408598078253401779</id><published>2009-11-08T23:43:00.000-08:00</published><updated>2009-11-08T23:47:11.275-08:00</updated><title type='text'>Silverlight UI in 2010</title><content type='html'>Hi I just came to know that sharepoint 2010 is providing non silverlight UI for users who dont have silverlight installed on the machines.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for example : siteactions -&gt; New site currently using silverlight the same will be provided with non silverlight also. u can test this by disabling silverlight in IE and checking the non silverlight UI. :)&lt;br /&gt;&lt;br /&gt;to disable the silverlight IE 8 :&lt;br /&gt;&lt;br /&gt;go to tools-&gt;ie options -&gt;programs-&gt;manage add ons -&gt;select all add ons -&gt; select silverlight-&gt; click on disable. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8408598078253401779?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8408598078253401779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8408598078253401779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8408598078253401779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8408598078253401779'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/11/silverlight-ui-in-2010.html' title='Silverlight UI in 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2890285837580112243</id><published>2009-10-23T04:24:00.000-07:00</published><updated>2009-10-23T04:29:00.957-07:00</updated><title type='text'>New Features in sharepoint 2010 discussed in conference</title><content type='html'>Ribbon look:&lt;br /&gt;When choosing to edit a page, now the well-known Office ribbon bar debuts in SharePoint 2010, including Central Administrator, allowing an much improved users interface. &lt;br /&gt;&lt;br /&gt;no need to upload image to picture library sharepoint2010  will handle that:&lt;br /&gt;Pictures can be navigated to your computer while inserting onto the page, and SharePoint takes care of uploading it into the Images library.&lt;br /&gt;&lt;br /&gt;less page refreshings compared to 2007 sharepoint :&lt;br /&gt;Fluid experience without the cumbersome page refreshing. &lt;br /&gt;Multiple document checkout, without the multiple page refreshes.&lt;br /&gt;&lt;br /&gt;Document sets:&lt;br /&gt; Create a set of documents as a single entity and apply workflows, metadata and content types to the set. Build a template to create multiple documents. &lt;br /&gt;Organize a library with metadata and rate documents&lt;br /&gt;&lt;br /&gt;view documents in 2 modes : 1)browser 2)using client application&lt;br /&gt;&lt;br /&gt;Co-edit a single document at the same time. View how many people are editing a document and who is editing. (Very interested to see how changes are integrated from both and which overwrite.)&lt;br /&gt;Note Board - add a note about the document, presentation. &lt;br /&gt;My Site now My Profile&lt;br /&gt;Activity Feed - leave a note for someone else with a question and check out a new or updating document.&lt;br /&gt;&lt;br /&gt;Tag Cloud and recent blog posts&lt;br /&gt;&lt;br /&gt;People Search now ran by FAST and able to provide more relevant results&lt;br /&gt;View recent content - things the person has authored or edited relating to the search&lt;br /&gt;Browse someone in the org chart&lt;br /&gt;&lt;br /&gt;Choose to following colleagues and receive notice when they update or author content in SharePoint&lt;br /&gt;Tag documents with metadata for searching, filtering, grouping, and sorting.&lt;br /&gt;Leave Notes on a document or Document Set&lt;br /&gt;Leave a note on someone's Note Board &lt;br /&gt;Subscribe to RSS feeds for modifications made to documents and view the change without opening the document.&lt;br /&gt;Post a picture in a blog from an address. After the blog is published, the image will update when the data is updated. (i.e. Excel chart updating with new or revised data)&lt;br /&gt;&lt;br /&gt;more......&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2890285837580112243?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2890285837580112243/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2890285837580112243' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2890285837580112243'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2890285837580112243'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/10/new-features-in-sharepoint-2010.html' title='New Features in sharepoint 2010 discussed in conference'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3689844039021442673</id><published>2009-10-22T03:06:00.000-07:00</published><updated>2009-10-22T03:10:10.339-07:00</updated><title type='text'>Videos on sharepoint 2010</title><content type='html'>Here is the link for videos on sp2010. &lt;br /&gt;&lt;br /&gt;http://sharepoint2010.microsoft.com/Pages/videos.aspx&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;want more keep looking to this blog for more and more updates :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3689844039021442673?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3689844039021442673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3689844039021442673' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3689844039021442673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3689844039021442673'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/10/videos-on-sharepoint-2010.html' title='Videos on sharepoint 2010'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8787717425445543439</id><published>2009-10-21T06:26:00.000-07:00</published><updated>2009-10-21T06:29:02.889-07:00</updated><title type='text'>Sharepoint 2010 new features</title><content type='html'>Hi all,&lt;br /&gt;&lt;br /&gt;Currently I am working on sharepoint 2010 dogfood builds from past 2 months as I shouldnt blog anything I kept calm these days. soon I gona blog lots of interesting things in sharepoint 2010.&lt;br /&gt;&lt;br /&gt;Till the time watch out the below links for more info.&lt;br /&gt;&lt;br /&gt;http://msdn.microsoft.com/en-us/sharepoint/default.aspx&lt;br /&gt;&lt;br /&gt;http://sharepoint.microsoft.com/blogs/GetThePoint/default.aspx&lt;br /&gt;&lt;br /&gt;http://sharepoint.microsoft.com/2010/Sneak_Peek/Pages/Developer-video.aspx&lt;br /&gt;&lt;br /&gt;you can also register for the training in november.on sharepoint 2010.&lt;br /&gt;&lt;br /&gt;http://sharepointvcx.com/default.aspx?code=NX9P2C&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;hurry up.... :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8787717425445543439?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8787717425445543439/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8787717425445543439' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8787717425445543439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8787717425445543439'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/10/sharepoint-2010-new-features.html' title='Sharepoint 2010 new features'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8681049240278994580</id><published>2009-10-14T23:30:00.000-07:00</published><updated>2009-10-14T23:32:12.688-07:00</updated><title type='text'>Problem in SPGRIDVIEW</title><content type='html'>Hi I got a problem in spgridview i found a good link here is the link.&lt;br /&gt;&lt;br /&gt;http://blogs.msdn.com/valdon/archive/2009/03/11/how-to-work-around-bugs-in-the-spgridview-control.aspx&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/valdon/archive/2009/03/11/how-to-work-around-bugs-in-the-spgridview-control.aspx"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8681049240278994580?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8681049240278994580/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8681049240278994580' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8681049240278994580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8681049240278994580'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/10/problem-in-spgridview.html' title='Problem in SPGRIDVIEW'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5837964291564386489</id><published>2009-09-09T21:57:00.001-07:00</published><updated>2009-09-10T07:01:24.765-07:00</updated><title type='text'>Silverlight 3.0</title><content type='html'>Hi its a bit late for my post as I am currently busy in working with Silverlight3.0 new controls and new features. Silverlight 3.0 is very cool giving more controls for a developer to make his work easy when I am using silverlight 1.0 I implemented different techniques to get the theme effect but now in silverlight is giving themes effect defaultly the same with tree controls and button controls.and it is also enhanced in media effects too.&lt;br /&gt;Any way soon Ill make a post on silverlight cool stuff with my handsonexperience.:)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5837964291564386489?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5837964291564386489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5837964291564386489' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5837964291564386489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5837964291564386489'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/09/silverlight-30.html' title='Silverlight 3.0'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-993296388032094461</id><published>2009-06-23T02:56:00.001-07:00</published><updated>2009-06-23T03:01:32.511-07:00</updated><title type='text'>Tools for Sharepoint</title><content type='html'>Hi I am bit busy these days so didn't got a chance for new post soon ill keep some good stuff. I found a good blog for Tools in sharepoint when ever you get some time look in to this tools it will help a lot.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://jopx.blogspot.com/2007/05/sharepoint-2007-tools-collection-v1.html"&gt;http://jopx.blogspot.com/2007/05/sharepoint-2007-tools-collection-v1.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-993296388032094461?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/993296388032094461/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=993296388032094461' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/993296388032094461'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/993296388032094461'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/06/tools-for-sharepoint.html' title='Tools for Sharepoint'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-6474646042739599823</id><published>2009-03-19T10:57:00.000-07:00</published><updated>2009-03-19T11:09:10.942-07:00</updated><title type='text'>MOSS-InfoPath-Error on 64bit MOSS when accessing SPSite through OM in InfoPath</title><content type='html'>I had an issue with infopath2007 and sharepoint2007 when i m trying to use object model from infopath in 64 bit machine where sharepoint is installed it gave me the below error. The same code is working fine with console.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_MHBXgNa6mqE/ScKIokOwx5I/AAAAAAAABqE/9iWDpaFUqTE/s1600-h/New+Bitmap+Image.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 282px;" src="http://3.bp.blogspot.com/_MHBXgNa6mqE/ScKIokOwx5I/AAAAAAAABqE/9iWDpaFUqTE/s400/New+Bitmap+Image.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5314960740752344978" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The web application at "" could not be found.verify that you have typed the URL correctly.If the URL should be serving existing content,the system administrator may beed to add a new request.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The solution to this problem is :&lt;br /&gt;InfoPath is a 32 bit app and is loading a 64 bit binary (Microsoft.sharepoint.dll) &lt;br /&gt;so what we have is a 32 bit process (InfoPath) running on a 64 bit OS, wow64 will &lt;br /&gt;translate registry calls to the wow64 registry note, and &lt;br /&gt;"HKLM\\wow6432node\SOFTWARE\\Microsoft\\Shared Tools\\Web Server &lt;br /&gt;Extensions\\12.0\\Secure\\ConfigDB" does not exist. Since the 64 bit version of &lt;br /&gt;SharePoint is installed, wow64 does not get involved and the registry key &lt;br /&gt;"HKLM\\SOFTWARE\\Microsoft\\Shared Tools\\Web Server &lt;br /&gt;Extensions\\12.0\\Secure\\ConfigDB" is used to store the farm’s connection string &lt;br /&gt;info.&lt;br /&gt;&lt;br /&gt;There is no 64 bit version of InfoPath. For Office2007, we support mixing 32-bit &lt;br /&gt;and 64-bit front end servers in the same farm, with the caveat being that customer &lt;br /&gt;must install 32-bit WSS on a 32-bit OS and 64-bit WSS on a 64-bit OS. We do not &lt;br /&gt;support 32-bit WSS v3 on a 64-bit OS via WOW64. If InfoPath 2007 is calling our OM &lt;br /&gt;and installed on a SharePoint box, then they’ll have to install it on an front end &lt;br /&gt;server where 32-bit WSS is running on a 32-bit OS. &lt;br /&gt;The solution would be to add a 32 bit server with 32 bit MOSS and &lt;br /&gt;InfoPath installed to the farm. &lt;br /&gt;&lt;br /&gt;And my sincere thanks to Travis Mathison,Sailaja kalidindi on helping this issue. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-6474646042739599823?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/6474646042739599823/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=6474646042739599823' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6474646042739599823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6474646042739599823'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/03/moss-infopath-error-on-64bit-moss-when.html' title='MOSS-InfoPath-Error on 64bit MOSS when accessing SPSite through OM in InfoPath'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_MHBXgNa6mqE/ScKIokOwx5I/AAAAAAAABqE/9iWDpaFUqTE/s72-c/New+Bitmap+Image.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5350108102993476682</id><published>2009-03-06T14:33:00.000-08:00</published><updated>2009-03-06T15:06:32.326-08:00</updated><title type='text'>getting current node value in a dynamic section of infopath.</title><content type='html'>Hi ,&lt;br /&gt;&lt;br /&gt;came back to blog some thing.&lt;br /&gt;using this technique we can copy the current values and paste to the new section in a check box event.such as copy the same as above.&lt;br /&gt;&lt;br /&gt;last week I had an issue how to get the current node value in a repeating section on firing a dropdown event.&lt;br /&gt;&lt;br /&gt;for example if we have a text box value and a drop downs in a repeating section. as in below image.&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_MHBXgNa6mqE/SbGqiISsc3I/AAAAAAAABp8/9_RZMLYgIJE/s1600-h/scenario.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 30px;" src="http://4.bp.blogspot.com/_MHBXgNa6mqE/SbGqiISsc3I/AAAAAAAABp8/9_RZMLYgIJE/s400/scenario.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5310212938964693874" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In this example ResourceName is the dropdown and groupname is the textbox and in the change event of the dropdown we have to get groupname value.if we are doing with only one section then no need of doing all the below explaination we can use direct xpath.&lt;br /&gt;&lt;br /&gt;But if we have same Resource names in different groups then we have to get the group name and use that group to locate the resource and fill the dependencies.&lt;br /&gt;&lt;br /&gt;so here is the line i used to get the groupName Value &lt;br /&gt;&lt;br /&gt;e.Site.SelectSingleNode("../../../@my:DisplayName", this.NamespaceManager).Value&lt;br /&gt;&lt;br /&gt;here "e" is the  event passed by dropdown and give the xpath value as shown above this gives the country value and we can get easily state value by using e.NewValue&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5350108102993476682?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5350108102993476682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5350108102993476682' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5350108102993476682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5350108102993476682'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2009/03/getting-current-node-value-in-dynamic.html' title='getting current node value in a dynamic section of infopath.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_MHBXgNa6mqE/SbGqiISsc3I/AAAAAAAABp8/9_RZMLYgIJE/s72-c/scenario.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5709935664122317544</id><published>2008-12-08T20:54:00.000-08:00</published><updated>2008-12-31T13:51:42.829-08:00</updated><title type='text'>Moved To Redmond Microsoft</title><content type='html'>Sorry for the delay as i did postings months back as I m busy with my schedule in release of the project.&lt;br /&gt;later with my sister marriage and next moving to Redmond.&lt;br /&gt;&lt;br /&gt;Here are &lt;a href="http://picasaweb.google.com/paritala.sasi/IceAge3#slideshow/5281395038846756434"&gt;my pics&lt;/a&gt; in Redmond. :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Soon Ill post some cool stuff in sharepoint.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5709935664122317544?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5709935664122317544/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5709935664122317544' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5709935664122317544'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5709935664122317544'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/12/moved-to-redmond-microsoft.html' title='Moved To Redmond Microsoft'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-1240988918238844558</id><published>2008-08-28T02:56:00.000-07:00</published><updated>2008-08-28T03:15:12.338-07:00</updated><title type='text'>Getting new Tab instead of Development for our Custom Site Definition.</title><content type='html'>Hi ,&lt;br /&gt;&lt;br /&gt;we have a custom site definition and one of the requirement is user should be able to see a seperate Tab for our Project rather than displaying the template under Development. for this we have 2 options.&lt;br /&gt;&lt;br /&gt;1)if we are generating a sitedefintion using sharepoint solution Generator then open the solution and right click on project properties and select the “SharePoint Solution” tab.&lt;br /&gt;Expand the Solution-&gt;Sitedefintion-&gt;Manifest.&lt;br /&gt;give the Appropriate value in the Display Category as I gave  “Sasi”.&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_MHBXgNa6mqE/SLZ353Kry4I/AAAAAAAAASY/k3mjdE2YEMo/s1600-h/displaycat.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_MHBXgNa6mqE/SLZ353Kry4I/AAAAAAAAASY/k3mjdE2YEMo/s320/displaycat.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5239507052437162882" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2)if the solution is already deployed and you want to change then follow the steps.&lt;br /&gt;&lt;br /&gt;Go to the folder in the SharePoint server: &lt;br /&gt;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\1033\XML&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open the xml webtemp file of ur definition.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You will see the following xml :&lt;br /&gt;&lt;-Templates xmlns:ows="Microsoft SharePoint"&gt;&lt;br /&gt;  &lt;-Template Name="ABC_Site_Definition_11eec25f-6951-462a-a8e5-63d5ae20211e" ID="10000" &gt;&lt;br /&gt;    &lt;-Configuration ID="1" Title="ABC_Site_Definition" Description="" Hidden="False" ImageUrl="/_layouts/images/stsprev.png" DisplayCategory="ABC" /&gt;  &lt;br /&gt;  &lt;-/Template&gt;&lt;br /&gt;&lt;-/Templates&gt;&lt;br /&gt;(Remove '-' in the tags)&lt;br /&gt;Change the display category to your project name. This gives the tab as per your requirement.&lt;br /&gt;&lt;br /&gt;Hidden=”True” Solves the other requirement it hides the other sitedefinitions which you not required.&lt;br /&gt;&lt;br /&gt;So the Output u see as below.&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_MHBXgNa6mqE/SLZ6VQEddoI/AAAAAAAAASg/le9rqIVN-6A/s1600-h/newtab.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_MHBXgNa6mqE/SLZ6VQEddoI/AAAAAAAAASg/le9rqIVN-6A/s320/newtab.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5239509722001667714" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cheers give a try.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-1240988918238844558?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/1240988918238844558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=1240988918238844558' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1240988918238844558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1240988918238844558'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/08/getting-new-tab-instead-of-development.html' title='Getting new Tab instead of Development for our Custom Site Definition.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_MHBXgNa6mqE/SLZ353Kry4I/AAAAAAAAASY/k3mjdE2YEMo/s72-c/displaycat.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-4646729545905958498</id><published>2008-07-27T03:59:00.000-07:00</published><updated>2008-07-27T04:28:36.639-07:00</updated><title type='text'>Sending Mail in Sharepoint using code.</title><content type='html'>we should include the following namespace &lt;br /&gt;for this Add reference of Microsoft.Sharepoint in references.&lt;br /&gt;&lt;br /&gt;using Microsoft.SharePoint.Utilities;&lt;br /&gt;&lt;br /&gt;Get the header information which contains To,Subject,CC...&lt;br /&gt;&lt;br /&gt; System.Collections.Specialized.StringDictionary headers = new System.Collections.Specialized.StringDictionary();&lt;br /&gt;                    headers["To"] = v-sasikp@microsoft.com;&lt;br /&gt;                    headers["Subject"] = "This is test mail";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;finally,&lt;br /&gt;SPUtility.SendEmail(myweb, headers, emailMsg, false);&lt;br /&gt;&lt;br /&gt;But this requires configuration of email server in central administration.&lt;br /&gt;&lt;br /&gt;Simple Ex:&lt;br /&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Text;&lt;br /&gt;using Microsoft.SharePoint;&lt;br /&gt;using Microsoft.SharePoint.Utilities;&lt;br /&gt;&lt;br /&gt;namespace blogmail&lt;br /&gt;{&lt;br /&gt;    class Program&lt;br /&gt;    {&lt;br /&gt;        static void Main(string[] args)&lt;br /&gt;        {&lt;br /&gt;            SPSite Site = new SPSite("http://sasikp-v:4008/");          &lt;br /&gt;            SPWeb myweb = Site.OpenWeb();&lt;br /&gt;            SPUtility.SendEmail(myweb, false, false,"v-sasikp@microsoft.com", "This is test mail for blog","Pls dont reply to this mail this is testmail. ", false);&lt;br /&gt;            &lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-4646729545905958498?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/4646729545905958498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=4646729545905958498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/4646729545905958498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/4646729545905958498'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/07/sending-mail-in-sharepoint-using-code.html' title='Sending Mail in Sharepoint using code.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-7589273956676533478</id><published>2008-07-10T05:04:00.001-07:00</published><updated>2008-07-10T05:12:15.260-07:00</updated><title type='text'>How to Read Url value.</title><content type='html'>Yesterday i m working on Url column of a list. My code has to read the Url value rather than Url. &lt;br /&gt;&lt;br /&gt;and i wrote code simply like below.&lt;br /&gt;foreach(Splistitem item in Allitems)&lt;br /&gt;{&lt;br /&gt;string urlvalue= item["Link"].tostring();&lt;br /&gt;.......&lt;br /&gt;}&lt;br /&gt;as link is my column and item is splist item.&lt;br /&gt;&lt;br /&gt;The above urlvalue is giving a url value which is converted to string.&lt;br /&gt;&lt;br /&gt;to solve this i used SpFieldUrlValue.&lt;br /&gt;&lt;br /&gt; &lt;strong&gt;SPFieldUrlValue&lt;/strong&gt; linkField = new SPFieldUrlValue(item["Link"].tostring());&lt;br /&gt; string linkname = linkField.Description;&lt;br /&gt;&lt;br /&gt;Cheers i got the value finally.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-7589273956676533478?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/7589273956676533478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=7589273956676533478' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7589273956676533478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7589273956676533478'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/07/how-to-read-url-value.html' title='How to Read Url value.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-490357981175978555</id><published>2008-07-03T02:16:00.000-07:00</published><updated>2008-07-03T03:12:17.997-07:00</updated><title type='text'>How Dates Played with me.</title><content type='html'>1)Last night i was writing some code for my project and my requirement is to pull some data from the list based on some condition and condition is linked with some date field.&lt;br /&gt;&lt;br /&gt;And i thought of using U2U tool which makes my life happy. But U2U is working fine, when i copied the query into my code its not working :( .&lt;br /&gt;&lt;br /&gt;So rather than depending on U2U i went with  CAML Language and Dates. I came to know that CAML Language recognises dates which is in "yyyy-MM-ddTHH:mm:ssZ" this format.&lt;br /&gt;&lt;br /&gt;So lets coming to my code i have one date field in my list where i have to filter the list items based on the condition and condition is&lt;br /&gt; " If the list fields date is less than Today-24 hrs " then get the items.&lt;br /&gt;&lt;br /&gt;here i m deleting one day from today.&lt;br /&gt;so the code i written is &lt;br /&gt;&lt;br /&gt;DateTime today;&lt;br /&gt;today = DateTime.Now;&lt;br /&gt;Int32 DurationArtworkWFHrs = 24;&lt;br /&gt;TimeSpan s = new TimeSpan(DurationArtworkWFHrs, 0, 0);&lt;br /&gt;DateTime result = today.Subtract(s);&lt;br /&gt;string date = result.ToString("yyyy-MM-ddTHH:mm:ssZ");&lt;br /&gt;&lt;br /&gt;And my CAML Query looks like below :&lt;br /&gt;&lt;br /&gt;SPQuery query = new SPQuery();&lt;br /&gt;query.Query = "&lt;-Where&gt;&lt;-And&gt;&lt;-Eq&gt;&lt;-FieldRef Name='Status' /&gt;&lt;-Value Type='Choice'&gt;In Progress&lt;-/Value&gt;&lt;-/Eq&gt;&lt;-Lt&gt;&lt;-FieldRef Name='ProjectedEndDate' /&gt;&lt;-Value Type='DateTime'&gt;" +date+ "&lt;/Value&gt;&lt;-/Lt&gt;&lt;-/And&gt;&lt;-/Where&gt;";&lt;br /&gt;&lt;br /&gt;(Remove "-" from the above tags to get it worked).&lt;br /&gt;&lt;br /&gt;SPListItemCollection myItems = mylist.GetItems(query);&lt;br /&gt;int Projectcount = myItems.Count;&lt;br /&gt;&lt;br /&gt;In the above code myitems collection gives the items i required. The variable date contains the converted string which our CAML Language understands. :)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2)One more Date Played with me in infopath form.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;my requirement is i have to capture the date and it should be appended to the infopath form when it is submitted.&lt;br /&gt;&lt;br /&gt;So for this i created one field in infopath form called "Millisec" .&lt;br /&gt;&lt;br /&gt;and assigned our custom date format to this field.&lt;br /&gt;&lt;br /&gt;XPathNavigator xnDoc = this.MainDataSource.CreateNavigator();&lt;br /&gt;            XPathNavigator fldMilliseconds;&lt;br /&gt;            fldMilliseconds = xnDoc.SelectSingleNode("/my:myFields/my:Millisec", this.NamespaceManager);&lt;br /&gt;            DateTime dd;&lt;br /&gt;            dd = DateTime.Now;&lt;br /&gt;            //string[] s = dd.GetDateTimeFormats();&lt;br /&gt;            //string date = s[105].ToString();&lt;br /&gt;            //date = date.Replace(":", ""); This works but we are capturing 135 elements into arraywhich is not required.&lt;br /&gt;            string date = dd.ToString("yyyy-MM-ddTHHmmss");   &lt;br /&gt;            int TimeMilli = dd.Millisecond;&lt;br /&gt;            string instancename = date + TimeMilli;&lt;br /&gt;            fldMilliseconds.SetValue(instancename);&lt;br /&gt;&lt;br /&gt;and while submitting the form append the value in the field. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-490357981175978555?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/490357981175978555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=490357981175978555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/490357981175978555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/490357981175978555'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/07/how-dates-played-with-me.html' title='How Dates Played with me.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-6647237181748602426</id><published>2008-06-23T23:49:00.000-07:00</published><updated>2011-05-25T04:01:41.354-07:00</updated><title type='text'>How to Increase Performance of Sharepoint in all levels.</title><content type='html'>Tune your Sharepoint with following tips.Here are the tips given by me to our project Artcore.&lt;br /&gt;Today i m going to blog how to increase the performance of our sharepoint portal in all the levels.&lt;br /&gt;Performance of an application using MOSS framework can be increased by enhancing in either one or in all of the following areas.&lt;br /&gt;1.0 Infrastructure.&lt;br /&gt;2.0 IIS.&lt;br /&gt;3.0 SharePoint portal.&lt;br /&gt;4.0 Application.&lt;br /&gt;5.0 Code Level &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1.0 Infrastructure&lt;/strong&gt;&lt;br /&gt;SharePoint is an application that works best when it gets lots of memory and CPU resources. SharePoint’s Web role uses stateless connections. Using this as advantage, if we install the Web role on several servers, it is possible to divide the client load between them. However, for this we need to consider and solve two challenges first. One is to make sure all web servers have access to the same information which is done by using a common back-end database for all of them. The second thing to solve is that all of these web servers must look like one single SharePoint server which is done by using (NLB). SharePoint supports up to eight servers running the web service role.&lt;br /&gt;&lt;strong&gt;1.1 Index server&lt;/strong&gt;&lt;br /&gt;Different activities in SharePoint require different extent of resources; for example, displaying a project Site normally generates a very light load on the server, whereas indexing the database generates much higher load.&lt;br /&gt;&lt;br /&gt;The Index service including the crawling activity is very resource intensive regarding CPU and disk access. By separating this service from the Web, many more users will be supported in the SharePoint environment. The indexing activity can be split between up to four different SharePoint servers.&lt;br /&gt;Note: Only one Index server can crawl on a given content source. If one index server goes down, no other server will take over the indexing crawling that server is configured to do. &lt;br /&gt;&lt;br /&gt;With below topology we can double the performance, availability….,&lt;br /&gt;&lt;br /&gt;Picture to be placed here.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1.2 Calculating the Number of Operations per Second (OPS) required&lt;/strong&gt;&lt;br /&gt;For computation of the load or the OPS, on the SharePoint server, the following formula is used&lt;br /&gt;        &lt;br /&gt;(http://blogs.technet.com/wbaer/archive/2007/07/06/requests-per-second-required-for-sharepoint-products-and-technologies.aspx)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A*B*C*D /360,000*E= OPS &lt;br /&gt;Where, &lt;br /&gt;❑ A = The number of users.&lt;br /&gt;❑ B = The percentage of active users on a typical day.&lt;br /&gt;❑ C = The number of operations per active user per day.(1-10)&lt;br /&gt;❑ D = The peak factor.(1-10)&lt;br /&gt;❑ E = The number of working hours per day.&lt;br /&gt;&lt;br /&gt;For ArtCore&lt;br /&gt;&lt;br /&gt;A= ~ 1000&lt;br /&gt;B= ~ 100&lt;br /&gt;C=~10&lt;br /&gt;D= ~10&lt;br /&gt;E= 12&lt;br /&gt;&lt;br /&gt;1000*100*10*10/360,000*12=10000000/4320000 = 2.31 OPS.&lt;br /&gt;&lt;br /&gt;By Redesign we can manage up to 20,000-40,000 of users.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1.3 Requests per second&lt;/strong&gt;&lt;br /&gt;The general rule is to plan for 1 Rps. While a small server farm serves about 60 RPS for 1000 users, a medium farm with 2 WFE servers can serve about 120 Rps.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1.4 Disk Space Needed&lt;/strong&gt;&lt;br /&gt;When planning for the required disk space, there is no need to worry about the SPS binary files, because they are small compared to other files. More important are the index and database files. Regardless of the database type, you still need to follow this important rule:&lt;br /&gt;&lt;br /&gt;You must always have at least 50 percent free space on your database disk!&lt;br /&gt;The reason for this is that some database troubleshooting utilities need to make a copy of the database to perform their tasks. If you don’t have the required space, you may get into a situation where you cannot fix a problem.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;2.0 IIS &lt;br /&gt;2.1&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;When creating a Web Application (and associated site collection) that the default is that a unique IIS application pool be used for each. This can have several benefits – should some unexpected error in a site cause a problem it will be localized to that site collection, additionally the worker process will be caching content related to those specific sites. Worker process sizes between 250-300MB on X86 WFE servers, and between 400-500MB on X64 WFE servers.  There are also other application pools and related IIS processes to support Central Administration, SSP, and so on, on the various WFE servers. The best-practice approach will be to consider which Web Applications should share an application pool, and which should be unique. Using multiple application pools can be beneficial, but it is easy to over-do by always taking the default settings (use new pool). Each related process has to load an instance of the .NET runtime in memory, so un-needed (excessive) application pools can waste memory. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt; 2.2&lt;br /&gt;         IIS Compression&lt;/strong&gt;&lt;br /&gt;         HTTP Compression is a wonderful technology that accomplishes a lot of different things. It allows faster page serving to clients and lower server costs due to lowered bandwidth (these two being enough for me to implement).&lt;br /&gt;&lt;br /&gt;HTTP Compression is when a Web server receives a request for a file and instead of just serving the file to the client, it checks to see if the client browser (or application) is "Compression Enabled". If so, the Web server does a check on what type of file is being requested (this is determined by the file’s extension). If the file is marked as a static file, such as an HTML file, IIS will check the Compression Cache Temporary Directory.&lt;br /&gt; &lt;br /&gt;If a compressed version isn’t found, IIS will send an uncompressed version of the file to the client and a compressed version is placed in the temporary directory (IIS will only serve to the client from the temp directory). If the compressed version is found, IIS will send the file directly to the requesting client. If the requested file is a dynamic file, such as an ASP.NET Web form, then the response is dynamically compressed and sent to the requesting client (no temp directory access is ever done).&lt;br /&gt;&lt;br /&gt;By running the below scripts we can achieve compression&lt;br /&gt;cscript.exe adsutil.vbs set W3Svc/Filters/Compression/GZIP/HcScriptFileExtensions "asp" "dll" "exe" "aspx" "asmx" "ashx" &lt;br /&gt;cscript.exe adsutil.vbs set W3Svc/Filters/Compression/DEFLATE/HcScriptFileExtensions "asp" "dll" "exe" "aspx" "asmx" &lt;br /&gt;cscript.exe adsutil.vbs set W3Svc/Filters/Compression/GZIP/HcDynamicCompressionLevel "9"&lt;br /&gt;cscript.exe adsutil.vbs set W3Svc/Filters/Compression/DEFLATE/HcDynamicCompressionLevel "9" &lt;br /&gt; &lt;br /&gt;(http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d52ff289-94d3-4085-bc4e-24eb4f312e0e.mspx?mfr=true)&lt;br /&gt;&lt;strong&gt;3. 0 SharePoint level&lt;/strong&gt;&lt;br /&gt;3.1 Caching&lt;br /&gt; SharePoint provides two types of caching.&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;3.1.1 Page output caching&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;3.1.2 Disk caching&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Disk-based cache scheme can be enabled on a per-site basis, and should be set consistently on each WFE server. In a typical site there are likely several references to image files (BMP, JPG, and so on) or to CSS style sheets or JS script files. These can be cached to avoid repeated database access for what are essentially static objects, and thus improve page response times. The cache is disabled by default, and is enabled by editing a line in the site WEB.CONFIG file found in the IIS Inetpub folder structure related to the site on the server’s system disk. Edit the file and search for the second instance of “BLOB” to get to the right line, which looks like: &lt;br /&gt;&lt;br /&gt;&lt;(BlobCache location="E:\blobCache" path="\.(gif|jpg|png|css|js)$" maxSize="100" max-age="86400" enabled="false" )/&gt;&lt;br /&gt;&lt;br /&gt;Currently in production it is set to “false”.&lt;br /&gt;The maxSize parameter is the maximum size of the disk cache in GB.&lt;br /&gt;&lt;strong&gt;4.0 Application level &lt;/strong&gt;&lt;br /&gt;Our Project’s Key strength is InfoPath forms.&lt;br /&gt;InfoPath Forms Services uses session state to store the large amount of transient data generated while filling out a form. As a result, front-end Web servers can remain stateless between round trips, and each post back is not burdened with carrying large amounts of session state information over narrow bandwidth pipes.&lt;br /&gt;&lt;br /&gt;So if you are using infopath forms use formview state rather than session state.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;5.0 Code Level &lt;/strong&gt;&lt;br /&gt;Many times we will delete or update list items in the lists by using Object oreiented code if these operations or doing on lists  having bulk items then use&lt;br /&gt; "ProcessBatchData" we can increase performance very much.&lt;br /&gt;&lt;br /&gt;http://msdn.microsoft.com/en-us/library/cc404818.aspx&lt;br /&gt;&lt;br /&gt;Advantages:&lt;br /&gt;1) Performance&lt;br /&gt;2) High availability(WFE &amp; DB)&lt;br /&gt;3) High Throughput&lt;br /&gt;4) Scalability&lt;br /&gt;5) No downtime&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-6647237181748602426?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/6647237181748602426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=6647237181748602426' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6647237181748602426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6647237181748602426'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/06/how-to-increase-performance-of.html' title='How to Increase Performance of Sharepoint in all levels.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3515257253549155439</id><published>2008-06-14T23:42:00.000-07:00</published><updated>2008-06-15T00:07:21.106-07:00</updated><title type='text'>How to Integrate Silverlight in Smartpart.</title><content type='html'>can we integrate our smartpart with silverlight.(&lt;strong&gt;I say YES&lt;/strong&gt;.)&lt;br /&gt;&lt;br /&gt;People who are working with smartpart is in dilemma. how to use silverlight in smartparts then here is the solution jump and give a try.&lt;br /&gt;&lt;br /&gt;This Post is continuation of my previous post so go through my previous post for creating silverlight webpart.&lt;br /&gt;&lt;br /&gt;People who worked in asp.net feels uncomfort in sharepoint as we have to develop custom webpart from the scratch for them smart part is a good webpart which takes usercontrol and renders our usercontrol to webpart. &lt;br /&gt;you will found the smart part in the below link.&lt;br /&gt;http://www.codeplex.com/smartpart/Release/ProjectReleases.aspx?ReleaseId=10697&lt;br /&gt;&lt;br /&gt;The latest release for smart part is v1.3. it is a good webpart developed by inheriting sharepoint webpart.This supports ajax also.&lt;br /&gt;&lt;br /&gt;Now the Question is can we integrate our smartpart with silverlight.&lt;br /&gt;&lt;br /&gt;I tried in multiple ways but i got succeded in Following way. (as usercontrol is .net controls we have to render our controls on top of the silverlight content)&lt;br /&gt;&lt;br /&gt;To integrate Smart part and silverlight the procedure we have to follow is:&lt;br /&gt;1) Create a web part with silverlight rendering.(silverlight web part)&lt;br /&gt;2) Overlap Smart part on the silverlight web part.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open the User Control and place your code in the div tag.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;-div style="position:absolute; width: 600px; height: 100px; z-index: 1; left: 24px; top: 95px" id="layer1"&gt;&lt;/strong&gt;&lt;br /&gt;This makes the control to Render at our required position. We can adjust the properties as per our requirement.&lt;br /&gt;&lt;br /&gt;My user control looks like below in design mode.(Just adding two numbers)&lt;br /&gt;&lt;a href="http://bp1.blogger.com/_MHBXgNa6mqE/SFS9uK_jIWI/AAAAAAAAAF0/zKMRX-FvVlQ/s1600-h/usercontrol+in+design+mode.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_MHBXgNa6mqE/SFS9uK_jIWI/AAAAAAAAAF0/zKMRX-FvVlQ/s320/usercontrol+in+design+mode.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211999269697036642" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Output of the user control after rendering on silverlight web part in my SharePoint site.&lt;br /&gt;Output in the IE Browser.(As this  differs very little in mozilla).&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/SFS-N5UNAJI/AAAAAAAAAF8/mhAwn1MEpBw/s1600-h/afterusercontrol.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_MHBXgNa6mqE/SFS-N5UNAJI/AAAAAAAAAF8/mhAwn1MEpBw/s320/afterusercontrol.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211999814707642514" /&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Cheers it worked for me i have some more options&lt;br /&gt;1)rendering directly silverlight content in usercontrol it worked for me if it is .net application but it is not working for sharepoint i may miss some thing ill try soon and update.&lt;br /&gt;2)inheriting the smartpart webpart and adding our code in Onprerendermethod and override rendermethod.(didnt gave a try.)&lt;br /&gt;&lt;br /&gt;now you can give a try with this.  :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3515257253549155439?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3515257253549155439/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3515257253549155439' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3515257253549155439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3515257253549155439'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/06/how-to-integrate-silverlight-content.html' title='How to Integrate Silverlight in Smartpart.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_MHBXgNa6mqE/SFS9uK_jIWI/AAAAAAAAAF0/zKMRX-FvVlQ/s72-c/usercontrol+in+design+mode.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2642210816462073910</id><published>2008-06-14T23:07:00.000-07:00</published><updated>2008-06-14T23:41:44.895-07:00</updated><title type='text'>How to Create a Silverlight Webpart.</title><content type='html'>Most of the people ask me how to integrate silverlight in sharepoint. In my previous post I explained about rendering silverlight content in a sharepoint page.&lt;br /&gt;&lt;br /&gt;This time i'll explain you how we can render silverlight content in a sharepoint webpart where we can display individual silverlight content in a webpart rather than rendering silverlight for total  Sharepointpage.&lt;br /&gt;&lt;br /&gt;Here are the Steps for creating silverlight web part.&lt;br /&gt;1) Open visual studio and create a new project by selecting web part template. As shown in the below figure.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp0.blogger.com/_MHBXgNa6mqE/SFS0RDfCxbI/AAAAAAAAAFE/nfiHdsYRJz4/s1600-h/webparttemplate.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_MHBXgNa6mqE/SFS0RDfCxbI/AAAAAAAAAFE/nfiHdsYRJz4/s320/webparttemplate.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211988873860793778" /&gt;&lt;/a&gt;&lt;br /&gt;2) Add the Silverlight files Scene.js, Scene.xaml, Silverlight.js to the project as shown below.&lt;br /&gt;&lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/SFS0oShzRAI/AAAAAAAAAFM/cCkU6UEpkPg/s1600-h/addsilverfiles.bmp"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_MHBXgNa6mqE/SFS0oShzRAI/AAAAAAAAAFM/cCkU6UEpkPg/s200/addsilverfiles.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211989273035883522" /&gt;&lt;/a&gt;&lt;br /&gt;After adding the silverlight files to the project set the “Build Action” property of each file to “Embedded Resource”.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3) We added silverlight files in to the assembly by making the property to “embedded resource”. To  expose the file to a web request we need to add the following code in .cs file .These entries expose the embedded resource  to the “ Client Script Manager” can get the file and know what kind of file it is.&lt;br /&gt;[assembly: WebResource("Otherswebpart.Silverlight.js", "text/javascript")]&lt;br /&gt;[assembly: WebResource("Otherswebpart.Scene.js", "text/javascript")]&lt;br /&gt;[assembly: WebResource("Otherswebpart.Scene.xaml", "text/xml")]&lt;br /&gt;The code in my .cs file. I took Otherswebpart as my name space. We have to add assembly level information just above the name space as shown in the figure.&lt;br /&gt;&lt;a href="http://bp0.blogger.com/_MHBXgNa6mqE/SFS1M8ILzKI/AAAAAAAAAFU/dMHzTdzgKnA/s1600-h/filesforassembly.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_MHBXgNa6mqE/SFS1M8ILzKI/AAAAAAAAAFU/dMHzTdzgKnA/s320/filesforassembly.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211989902678019234" /&gt;&lt;/a&gt;&lt;br /&gt;4) We said to the assembly by the above lines now we have to register the script files to the page before the files are used. So we need to add the following lines of code in the method called “OnPreRender”.&lt;br /&gt;My method in the .cs file has the following code.&lt;br /&gt;                        protected override void OnPreRender(EventArgs e)&lt;br /&gt;        {&lt;br /&gt;            base.OnPreRender(e);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            this.Page.ClientScript.RegisterClientScriptResource(GetType(), "Otherswebpart.Silverlight.js");&lt;br /&gt;            this.Page.ClientScript.RegisterClientScriptResource(GetType(), "Otherswebpart.Scene.js");&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;The above code explains registering of my script files to the page before rendering.&lt;br /&gt;&lt;br /&gt;5) Finally we have to render the Silverlight content. So I added the code which we found in the default.html.js file. The reason I wrote the every line of default.html.js file instead of calling “CreateSilverlight()” method is  we require the source of the ” page.xaml” which is embedded in the assembly.&lt;br /&gt;&lt;br /&gt;So my render method looks like the following.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/SFS5BDdMm4I/AAAAAAAAAFs/Yv3OoAGkhZo/s1600-h/code.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_MHBXgNa6mqE/SFS5BDdMm4I/AAAAAAAAAFs/Yv3OoAGkhZo/s320/code.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211994096533281666" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A) The text which is in yellow colour describes the source of our “Scene.xaml” file.&lt;br /&gt;B) The property &lt;strong&gt;isWindowless:’True’ &lt;/strong&gt;allows us to overlap our .net controls on to the silverlight content.  (Add this property it doesn’t come by default.)&lt;br /&gt;&lt;br /&gt;6) Finally we have to build and run the project.&lt;br /&gt;Before that we have to set one more property. Go to the project properties and select the debug tab and set the property “start browser with URL” to your SharePoint site as shown in the below figure.&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/SFS1rRW49BI/AAAAAAAAAFc/bQ3fp8N_CUw/s1600-h/Debug.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_MHBXgNa6mqE/SFS1rRW49BI/AAAAAAAAAFc/bQ3fp8N_CUw/s320/Debug.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211990423772918802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;By doing this we should be able to see the output of the web part in our SharePoint site.  &lt;br /&gt;Check the Output in my site which is having “Otherswebpart webpart” which is having silverlight content and with one silverlight button.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/SFS2EoejBNI/AAAAAAAAAFk/GXvp1jM3WUY/s1600-h/silveroutput.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_MHBXgNa6mqE/SFS2EoejBNI/AAAAAAAAAFk/GXvp1jM3WUY/s320/silveroutput.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5211990859475780818" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cheers Now Give a try with this. in my next post i'll explain how to integrate silverlight webpart with smartpart.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2642210816462073910?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2642210816462073910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2642210816462073910' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2642210816462073910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2642210816462073910'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/06/how-to-create-silverlight-webpart.html' title='How to Create a Silverlight Webpart.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_MHBXgNa6mqE/SFS0RDfCxbI/AAAAAAAAAFE/nfiHdsYRJz4/s72-c/webparttemplate.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-7478869801126787123</id><published>2008-06-12T02:27:00.001-07:00</published><updated>2008-06-12T02:50:49.387-07:00</updated><title type='text'>How to Generate a WSP (solution package)</title><content type='html'>Hi ,&lt;br /&gt;&lt;br /&gt;Today i m going to blog How to generate a WSP when we have individual Dll's to be deployed in to gac other than features,files to layout folder etc..,&lt;br /&gt;&lt;br /&gt;Creation of WSP.&lt;br /&gt;&lt;br /&gt;WSP is a SharePoint solution Package.&lt;br /&gt;The WSPBuilder is a console application that creates SharePoint Solutions files&lt;br /&gt;based on a folder structure. WSPBuilder will automatically traverse a "12" folder structure&lt;br /&gt;and creates a SharePoint solution manifest.xml and the WSP file based on the files it finds.&lt;br /&gt;Therefore you do not need the knowledge of how to create a solution manifest.xml &lt;br /&gt;and WSP file any more.&lt;br /&gt;Steps for Create WSP.&lt;br /&gt;Step1:  Create a Class Library Project.&lt;br /&gt;Step2:  Create a “12” folder Structure and paste the folder in to your project. The “12” folder Structure should contain all the required files to be deployed.&lt;br /&gt;For example the entire feature files to be deployed in to Features folder. Custom files to be deployed to Layouts folder.  Etc...&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/SFDtJwrSocI/AAAAAAAAAEM/n9zLwDd-9gw/s1600-h/mas1.bmp"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_MHBXgNa6mqE/SFDtJwrSocI/AAAAAAAAAEM/n9zLwDd-9gw/s200/mas1.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5210925520808747458" /&gt;&lt;/a&gt;&lt;br /&gt; &lt;a href="http://bp0.blogger.com/_MHBXgNa6mqE/SFDtSK5SvXI/AAAAAAAAAEU/fW48M9CNKMQ/s1600-h/mas2.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_MHBXgNa6mqE/SFDtSK5SvXI/AAAAAAAAAEU/fW48M9CNKMQ/s200/mas2.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5210925665285750130" /&gt;&lt;/a&gt;&lt;br /&gt;Step3: Make a strong name key. (Sign the Assembly)&lt;br /&gt;This can be done by clicking on the properties of the project and select the “Signing”.&lt;br /&gt;Check the check box “Sign the Assembly”.&lt;br /&gt;Select “New” in the Choose a Strong name Key file section and give the name for strong name key.&lt;br /&gt;Step4: Build the Project in Release Mode.&lt;br /&gt;Step5: &lt;br /&gt;Open the folder of your current project from file system. It looks like below.&lt;br /&gt;&lt;a href="http://bp1.blogger.com/_MHBXgNa6mqE/SFDw1LA7zrI/AAAAAAAAAE0/1A65_QhFY4M/s1600-h/SnkFolder.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_MHBXgNa6mqE/SFDw1LA7zrI/AAAAAAAAAE0/1A65_QhFY4M/s400/SnkFolder.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5210929565148106418" /&gt;&lt;/a&gt;&lt;br /&gt;Step6: Copy the files (WSPBuilder.exe, Cablib.dll, and makecab.exe) in to the folder. It should look like below&lt;br /&gt;WSPBuilder.exe: Download the WSP builder.exe from the below link.&lt;br /&gt; http://www.codeplex.com/wspbuilder/Release/ProjectReleases.aspx?ReleaseId=11603&lt;br /&gt;makecab.exe: Copy the file from C:\WINNT\System32&lt;br /&gt;Cablib.dll: you will found this in WSP tools folder which you downloaded&lt;br /&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/SFDxBo7r4mI/AAAAAAAAAE8/ZCvyv9kkIUk/s1600-h/Projectfolder.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_MHBXgNa6mqE/SFDxBo7r4mI/AAAAAAAAAE8/ZCvyv9kkIUk/s400/Projectfolder.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5210929779337585250" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We have two Scenarios from here &lt;br /&gt;1) No DLL’s&lt;br /&gt;2) Are we having any DLL’s to be dropped in GAC?&lt;br /&gt;&lt;br /&gt;If we are not Deploying any DLL’s into GAC just click on the WSPBuilder.exe.&lt;br /&gt;This Generates 2 files.&lt;br /&gt;1) solutionid.txt &lt;br /&gt;2) WSP file  (EX: ArtCoreFeatures.wsp)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If we are having DLL’s to be deployed in to GAC in part of WSP.&lt;br /&gt;a) Drop the Dll’s in to the Release folder of the Project.&lt;br /&gt;b) We have to write a manifest file.&lt;br /&gt;This says what are the dll’s to be deployed into the GAC.&lt;br /&gt;The manifest file contains SolutionID attribute which specifies the unique GUID assigned to the solution.&lt;br /&gt;The manifest file is an xml file. Looks like the below.(Remove the - in the tags)&lt;br /&gt;&lt;-Solution SolutionId="63DD8533-9BAF-4ca8-8EFE-0846F0CD3CC1" xmlns="http://schemas.microsoft.com/sharepoint/"&gt;&lt;br /&gt;  &lt;-FeatureManifests&gt;&lt;br /&gt;    &lt;-FeatureManifest Location="CreateProjectWorkSpace\feature.xml" /&gt;&lt;br /&gt;  &lt;-/FeatureManifests&gt;&lt;br /&gt;  &lt;-TemplateFiles&gt;   &lt;br /&gt;  &lt;-/TemplateFiles&gt;&lt;br /&gt;  &lt;-Assemblies&gt;&lt;br /&gt;    &lt;-Assembly DeploymentTarget="GlobalAssemblyCache"   Location="ArtCoreFeatures.dll" /&gt;&lt;br /&gt;&lt;-Assembly DeploymentTarget="GlobalAssemblyCache" Location="Microsoft.EDD.ArtCore.GenericWorkflowWF.dll" /&gt;&lt;br /&gt;&lt;-Assembly DeploymentTarget="GlobalAssemblyCache"  Location="CreateProjectWorkSpace.dll" /&gt;&lt;br /&gt;  &lt;-/Assemblies&gt;&lt;Assembly DeploymentTarget="GlobalAssemblyCache"            Location="Microsoft.EDD.Mail.dll" /&gt;&lt;br /&gt;  &lt;-/Assemblies&gt;&lt;br /&gt;&lt;-/Solution&gt;&lt;br /&gt;After making necessary modifications place this manifest file in the Step6 folder structure. And click on WSPBuilder.exe.&lt;br /&gt;This packs the Dll’s .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-7478869801126787123?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/7478869801126787123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=7478869801126787123' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7478869801126787123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7478869801126787123'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/06/how-to-generate-wsp-solution-package.html' title='How to Generate a WSP (solution package)'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_MHBXgNa6mqE/SFDtJwrSocI/AAAAAAAAAEM/n9zLwDd-9gw/s72-c/mas1.bmp' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3885892117540615605</id><published>2008-06-12T02:22:00.000-07:00</published><updated>2008-06-12T02:23:07.766-07:00</updated><title type='text'>Steps for Service Account Change in Moss</title><content type='html'>The steps to change the service account is as follows,&lt;br /&gt;1. Change the service account for all “Windows Service” and “Web application pool” through the Central Administrations-&gt;Operations Tab-&gt;Service Accounts link&lt;br /&gt;2. stsadm –o updatefarmcredentials –userlogin &lt;domain\name&gt; -password &lt;newpassword&gt;&lt;br /&gt;3. You must run IISReset /noforce to complete the action.&lt;br /&gt;4. Wait for the "Administration Application Pool Credential Deployment" job definition to go away on the Timer Job Definitions central admin page&lt;br /&gt;5. stsadm -o updateaccountpassword -userlogin &lt;domain\name&gt; -password &lt;newpassword&gt; –noadmin&lt;br /&gt;6. stsadm -o spsearch -farmserviceaccount &lt;DOMAIN\username&gt; -farmservicepassword &lt;newpassword&gt;&lt;br /&gt;7. stsadm -o editssp -title &lt;Shared Services Provide Name&gt; -ssplogin &lt;DOMAIN\username&gt; -ssppassword &lt;newpassword&gt;&lt;br /&gt;8. stsadm -o osearch -farmserviceaccount &lt;DOMAIN\username&gt; -farmservicepassword &lt;newpassword&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3885892117540615605?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3885892117540615605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3885892117540615605' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3885892117540615605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3885892117540615605'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/06/steps-for-service-account-change-in.html' title='Steps for Service Account Change in Moss'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-1060331007493996379</id><published>2008-05-18T23:26:00.000-07:00</published><updated>2008-05-18T23:57:01.706-07:00</updated><title type='text'>Publishing Excel webpages for Sharepoint.</title><content type='html'>Requirement: user should be able to see the data of excel sheet in SharePoint without grid lines and in a single page scrolling(Rather than scrolling in excel web part and SharePoint pageview webpart).&lt;br /&gt;&lt;br /&gt;Solution:&lt;br /&gt;&lt;br /&gt;1) Create  a SharePoint document library for excel.&lt;br /&gt;2) Open Excel from your desktop or using new from SharePoint excel document library menu.&lt;br /&gt;3) Paste the required data in to sheet or input some values which is required to display.&lt;br /&gt;4)  Format the excel sheet as per your requirement to Display. The formatting done in excel sheet gets effect in SharePoint page.(Ex: Numbers to show in left align or right align see in the below image I aligned numbers to left)&lt;br /&gt;5) And click on Saveas button and Save the excel sheet as webpage which is having .htm extension in the SharePoint library EX: http://sasikp-v:720/MyEXcelsheets (easy way is to open library  in windows explorer mode and copy the url and paste).&lt;br /&gt;6) Go to the library of excel and click on the excel u saved it opens in SharePoint as webpage.&lt;br /&gt;&lt;br /&gt;You can directly edit the excel sheet and save the changes. Here is the sample I done. &lt;br /&gt;We can give Title also by clicking on Change title button while saving the sheet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-1060331007493996379?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/1060331007493996379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=1060331007493996379' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1060331007493996379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1060331007493996379'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/05/publishing-excel-webpages-for.html' title='Publishing Excel webpages for Sharepoint.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2575407661342004090</id><published>2008-04-26T03:26:00.001-07:00</published><updated>2008-04-26T03:30:34.334-07:00</updated><title type='text'>Setting our Custom Page as Default Page.</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;I had a Landing Page which is a custom page designed by me for our portal i have to keep it as default page when customers type the address. so i did that in the following way try it if u had the same scenario.&lt;br /&gt;&lt;br /&gt;Go to SiteActions-&gt;SiteSettings-&gt;Modify All Site Settings.&lt;br /&gt;In Look and Feel section select Welcome page.&lt;br /&gt;Browse  the LandingPage(Required Custom Page). Click ok.&lt;br /&gt;Click ok.&lt;br /&gt;&lt;br /&gt;When you enter the address now you will find the new page as welcome page. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2575407661342004090?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2575407661342004090/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2575407661342004090' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2575407661342004090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2575407661342004090'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/04/setting-our-custom-page-as-default-page.html' title='Setting our Custom Page as Default Page.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-5416093527523431376</id><published>2008-04-19T04:43:00.000-07:00</published><updated>2008-04-19T04:47:19.769-07:00</updated><title type='text'>Microsoft Windows Server 2008.</title><content type='html'>Here are the links to find about Microsoft Windows Server 2008.&lt;br /&gt;&lt;br /&gt;http://download.microsoft.com/download/c/6/1/c61f02dc-30ac-4d65-9fe5-277de9d13787/CoreInfrastructureImprovementsWS2008.pptx&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-5416093527523431376?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/5416093527523431376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=5416093527523431376' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5416093527523431376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/5416093527523431376'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/04/microsoft-windows-server-2008.html' title='Microsoft Windows Server 2008.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-7012835430233879108</id><published>2008-04-03T02:24:00.000-07:00</published><updated>2008-04-03T02:51:43.329-07:00</updated><title type='text'>How to Use stsadm.exe from any where in the commandprompt.</title><content type='html'>Some cool stuff i'm going to say which helps to every developer who plays with Features.&lt;br /&gt;&lt;br /&gt;To install and activate a Feature we will use stsadm.exe where we found it in the bin folder of 12.&lt;br /&gt;&lt;br /&gt;we write some batch files to install the features.&lt;br /&gt;&lt;br /&gt;Other than that if i need to install a feature i used to  go to the Feature folder and paste the stsadm.exe in the respective feature folder and executing from there.&lt;br /&gt;&lt;br /&gt;Today ill say u one thing where we can execute stsadm.exe from any where that means we are going to make availiability of stsadm through out the folders.&lt;br /&gt;&lt;br /&gt;just we are making it as environment variable to do that follow the steps below:&lt;br /&gt;&lt;br /&gt;Goto Start-&gt;Settings-&gt; Controlpanel-&gt;System.&lt;br /&gt;&lt;br /&gt;Click on advanced tab.&lt;br /&gt;&lt;br /&gt;Click on Environment Variables button&lt;br /&gt;&lt;br /&gt;Select Path in the System variables section and click on edit and append the following in the variable path :&lt;br /&gt;&lt;br /&gt; ;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN &lt;br /&gt;&lt;br /&gt;and click ok and close all the windows.&lt;br /&gt;&lt;br /&gt;now you can use the stsadm.exe from any where.&lt;br /&gt;&lt;br /&gt;cheers. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-7012835430233879108?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/7012835430233879108/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=7012835430233879108' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7012835430233879108'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/7012835430233879108'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/04/how-to-use-stsadmexe-from-any-where-in.html' title='How to Use stsadm.exe from any where in the commandprompt.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-466934125412837114</id><published>2008-04-02T00:49:00.001-07:00</published><updated>2008-04-02T00:57:56.365-07:00</updated><title type='text'>How to Deploy MasterPages.</title><content type='html'>Today i'll Blog how to deploy Masterpages after development.&lt;br /&gt;&lt;br /&gt;I had this issue i developed Masterpage for my project and we need to deploy that to the different boxes like Sit(system integration testing),UAT(user acceptance testing)and Production.&lt;br /&gt;&lt;br /&gt;So i got a chance to look in to this , because i done the masterpage development which is very interesting part but the question is how to deploy the developed one.&lt;br /&gt;&lt;br /&gt;So here is the answers for this:&lt;br /&gt;&lt;br /&gt;1)To create the Master page using sharepoint designer in each individual box.This makes the masterpage to be stored in the contentdatabase.(not supported as work is repetetion)&lt;br /&gt;&lt;br /&gt;2)Creating the masterpage in 12 folder. and adding file tag in the module tag in the file provisionedFiles.xml&lt;br /&gt;&lt;br /&gt;Using this approach the masterpages gets visible when we create new site collection.&lt;br /&gt;&lt;br /&gt;3)Making a Feature.&lt;br /&gt;&lt;br /&gt;I am going with Feature as we have already production site where we have to activate the feature once in the site collection.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-466934125412837114?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/466934125412837114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=466934125412837114' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/466934125412837114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/466934125412837114'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/04/how-to-deploy-masterpages.html' title='How to Deploy MasterPages.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-8343111801395779286</id><published>2008-03-30T03:16:00.000-07:00</published><updated>2008-03-30T05:30:27.781-07:00</updated><title type='text'>Sharepoint &amp; Silverlight 1.0 Integration</title><content type='html'>Today i wana blog how we can integrate sharepoint and silverlight1.0.&lt;br /&gt;&lt;br /&gt;Microsoft® Silverlight is a cross-browser, cross-platform, and cross-device plug-in for delivering the next generation of media experiences and rich interactive applications for the Web.&lt;br /&gt;&lt;br /&gt;I learned silverlight offline in weekends and after office hours its cool and easy. I used the tool called Micrsoft Blend and visual studio 2008 for making silverlight project.&lt;br /&gt;&lt;br /&gt;If you want to give a try start from here :&lt;a href="http://www.silverlight.net/quickstarts/silverlight10/default.aspx"&gt;http://www.silverlight.net/quickstarts/silverlight10/default.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now i am going to say how to integrate silverlight 1.0 with our sharepoint.&lt;br /&gt;&lt;br /&gt;The experience sharing with you here is practically implemented in our project , got succeded and client Appreciations also so you can trust me before going through this :) . &lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/R-9x0D7VpwI/AAAAAAAAAC8/h8g5Bg7_vpQ/s1600-h/ArtCoreImage.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5183486835348055810" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://bp2.blogger.com/_MHBXgNa6mqE/R-9x0D7VpwI/AAAAAAAAAC8/h8g5Bg7_vpQ/s200/ArtCoreImage.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Little introduction of our Homepage in the Sharepoint portal where i implemented silverlight.&lt;br /&gt;we have Home page for our portal Where it contains Links to several portal pages these links are images and we have a background image for our Homepage.Our portal Home page displays links based on the roles of the enduser.&lt;br /&gt;Here is our home page. You can see the links in red circle. You can observe the background image also a girl with umbrella. And two more images microsoft logo and Project Title "ArtCore".&lt;br /&gt;&lt;br /&gt;Why i choose Silverlight?&lt;br /&gt;I choosed silverlight to give rich webinterface with some animations and media effects as well as to make Zero dependency on development and testing team.&lt;br /&gt;&lt;br /&gt;What I mean of Zero dependency is ?&lt;br /&gt;After implementing My silver light with sharepoint end user who is having admin rights can change any picture on the screen with out help of developer in few minutes.&lt;br /&gt;&lt;br /&gt;So lets give a try how i implemented ?&lt;br /&gt;&lt;br /&gt;Assuming we have silverlight 1.0 project the main files in the silverlight project is Default_html.js,Page.xaml,Page.xaml.js.&lt;br /&gt;&lt;br /&gt;if you observe the files here silverlight is got rendered by using the last two files 1)page.xaml contains the information how to render and wat to render and 2)Page.xaml.js file contains the events to be fired on the page.&lt;br /&gt;&lt;br /&gt;So to integrate the silverlight with our sharepoint first we need to check the place of deployment for our files.&lt;br /&gt;&lt;br /&gt;There are 2 ways of deployment one is in the pages directory(Library) of the sharepoint site and the other is Layouts folder of the sharepoint.&lt;br /&gt;&lt;br /&gt;I went with Layouts folder as we can easily deploy the files with our solution package,we can easily deploy our .aspx page in different portal and availiability of asset(silverlight images and media) files is also easy when we deploy to different sitecollection.&lt;br /&gt;&lt;br /&gt;Built a Custom master page using sharepoint designer and create a minimal master page.&lt;br /&gt;&lt;br /&gt;you can find this in msdn :&lt;a href="http://msdn2.microsoft.com/en-us/library/aa660698.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa660698.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Built a .aspx page in sharepoint designer and inherit the master page created in the above one.&lt;br /&gt;&lt;br /&gt;And add the following tags after the contentplace holder tag:&lt;br /&gt;script type="text/javascript" src="Silverlight.js" / script&lt;br /&gt;script type="text/javascript" src="Default_html.js"/script&lt;br /&gt;script type="text/javascript" src="Page.xaml.js" /script&lt;br /&gt;&lt;br /&gt;Give the source of the files to layout folder.&lt;br /&gt;&lt;br /&gt;ex: src="..\layouts\foldername\page.xaml.js"&lt;br /&gt;&lt;br /&gt;and modify the source according to all asset files in the page.xaml.&lt;br /&gt;After the script tags add one more script tag which calls the method createSilverlight()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;div id="silverlightControlHost"&gt; scrit type="text/javascript"&gt;div id="silverlightControlHost"&gt;  script type="text/javascript"&gt;   createSilverlight();  script /div&lt;br /&gt;&lt;br /&gt;This is the method written in the default_html.js where we set the source in the above script tags.&lt;br /&gt;And we have to call the script in a div tag where silverlight content is rendered in this div tag.&lt;br /&gt;And after this you can find the silverlight rendering in the sharepoint page.&lt;br /&gt;&lt;br /&gt;And the balance is how to change the background image,links.&lt;br /&gt;&lt;br /&gt;Here is the solution for that if we move main image from layouts folder to page directory in the site now we can upload our required image with the samename mentioned in the page.xaml so the enduser who is having admin rights can easily upload the required background image on the page.&lt;br /&gt;&lt;br /&gt;Here is the page after changing the homepage background image: &lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/R--BkD7VpyI/AAAAAAAAADM/LU3fGbhllGg/s1600-h/Artcoreafter.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5183504152656193314" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://bp2.blogger.com/_MHBXgNa6mqE/R--BkD7VpyI/AAAAAAAAADM/LU3fGbhllGg/s200/Artcoreafter.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The final thing which makes interesting part how to play with links which is having links based on roles right.&lt;br /&gt;&lt;br /&gt;Here is the solution for that sharepoint is having outofbox webpart called summary webpart.&lt;br /&gt;&lt;br /&gt;Overlay that webpart on the silverlight page by using div tag.&lt;br /&gt;&lt;br /&gt;For this you have to create a webpart zone in the .aspx page if you are starting with blank page like me.&lt;br /&gt;&lt;br /&gt;And the roles part can be handled by the webpart propertie called Target audience.&lt;br /&gt;&lt;br /&gt;where you have to create respective webpart for every type of audience.&lt;br /&gt;&lt;br /&gt;Note: you can make the links as image click by uploading the required images to image library of the site and browsing them in summary link webpart.&lt;br /&gt;&lt;br /&gt;The things are done from my side now you can give a try.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cheers best of luck :).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-8343111801395779286?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/8343111801395779286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=8343111801395779286' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8343111801395779286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/8343111801395779286'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/sharepoint-silverlight-10.html' title='Sharepoint &amp; Silverlight 1.0 Integration'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_MHBXgNa6mqE/R-9x0D7VpwI/AAAAAAAAAC8/h8g5Bg7_vpQ/s72-c/ArtCoreImage.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2955080931071540523</id><published>2008-03-30T02:50:00.000-07:00</published><updated>2008-03-30T03:09:09.954-07:00</updated><title type='text'>Fun-on-Friday by our HCL'ites in Microsoft Campus.</title><content type='html'>&lt;a href="http://bp2.blogger.com/_MHBXgNa6mqE/R-9mjD7VpvI/AAAAAAAAAC0/NTi9RoNBBDo/s1600-h/DSC05111.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5183474448662374130" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp2.blogger.com/_MHBXgNa6mqE/R-9mjD7VpvI/AAAAAAAAAC0/NTi9RoNBBDo/s200/DSC05111.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/R-9lBT7VptI/AAAAAAAAACk/TEdo8nL9xbw/s1600-h/DSC05115.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5183472769330161362" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://bp3.blogger.com/_MHBXgNa6mqE/R-9lBT7VptI/AAAAAAAAACk/TEdo8nL9xbw/s320/DSC05115.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/R-9kwT7VpsI/AAAAAAAAACc/oNhqwFZ_BxM/s1600-h/DSC05116.JPG"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;We really had fun &amp;amp; masti with Fun-on-Friday which has been launched from this week by our HCL'ites in MS-Campus its really cool.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2955080931071540523?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2955080931071540523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2955080931071540523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2955080931071540523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2955080931071540523'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/fun-on-friday-by-our-hclites-in.html' title='Fun-on-Friday by our HCL&apos;ites in Microsoft Campus.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_MHBXgNa6mqE/R-9mjD7VpvI/AAAAAAAAAC0/NTi9RoNBBDo/s72-c/DSC05111.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-1049455785063800617</id><published>2008-03-28T03:16:00.000-07:00</published><updated>2008-03-28T03:25:31.183-07:00</updated><title type='text'>How to Debug the Workflow.</title><content type='html'>Steps to Debug the workflow in visual studio.&lt;br /&gt;&lt;br /&gt;Step 1: Keep some breakpoints in the code.&lt;br /&gt;&lt;br /&gt;Step 2: Drop the Dll in to GAC.(check whether it is Strongly signed or not)&lt;br /&gt;&lt;br /&gt;Step 3: Reset IIS.&lt;br /&gt;&lt;br /&gt;Step 4: Open the site . If it is opened refresh the page. This enables the w3wp process.&lt;br /&gt;&lt;br /&gt;Step 5:Attach the W3Wp process.This can be found in Tools or Debug.&lt;br /&gt;&lt;br /&gt;Step 6:Run the workflow.&lt;br /&gt;&lt;br /&gt;Note : W3wp process is a Dll so it runs under parent process so be carefull with this because it ends the parent process. here parent process is nothing but ur visualstudio.&lt;br /&gt;&lt;br /&gt;Cheers now you can debug your workflow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-1049455785063800617?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/1049455785063800617/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=1049455785063800617' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1049455785063800617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/1049455785063800617'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/how-to-debug-workflow.html' title='How to Debug the Workflow.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-6385354630652556120</id><published>2008-03-25T01:44:00.000-07:00</published><updated>2008-03-25T02:30:03.980-07:00</updated><title type='text'>How to access the site created in the server from other systems.</title><content type='html'>&lt;a href="http://bp0.blogger.com/_MHBXgNa6mqE/R-jF5T7VprI/AAAAAAAAACU/ZIh7Xn3OWJE/s1600-h/firewall.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5181608959682127538" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://bp0.blogger.com/_MHBXgNa6mqE/R-jF5T7VprI/AAAAAAAAACU/ZIh7Xn3OWJE/s200/firewall.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/R-i93D7VpqI/AAAAAAAAACM/XoitQO0mj2w/s1600-h/firewall.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5181600124934399650" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://bp3.blogger.com/_MHBXgNa6mqE/R-i93D7VpqI/AAAAAAAAACM/XoitQO0mj2w/s200/firewall.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If we want to access the Sharepoint site created in the server from other systems we have to check for the following things:&lt;br /&gt;1)Whether the User is having permissions are not.&lt;br /&gt;This can be checked by looking into user permissions and groups of the site.&lt;br /&gt;2)Check the firewall settings this can be done in the following way:&lt;br /&gt;&lt;br /&gt;start-&gt;Controlpanel-&gt;Windowsfirewall-&gt;Select the tab Exceptions and click on addport give the servername and portnumber of the site you want to access.&lt;br /&gt;Cheers now u can access ur site from any other machine in the lan.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;3)if you want to access all the sites then you just turn off the firewall settings(Not recommended).&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-6385354630652556120?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/6385354630652556120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=6385354630652556120' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6385354630652556120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/6385354630652556120'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/how-to-access-site-created-in-server.html' title='How to access the site created in the server from other systems.'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_MHBXgNa6mqE/R-jF5T7VprI/AAAAAAAAACU/ZIh7Xn3OWJE/s72-c/firewall.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-3813884704042526710</id><published>2008-03-24T00:29:00.000-07:00</published><updated>2008-03-24T00:36:35.323-07:00</updated><title type='text'>Link to Certification Details</title><content type='html'>we have 4 Certifications in Sharepoint.The following Links are the sharepoint certifications Links.&lt;br /&gt;&lt;br /&gt;1)&lt;a href="http://www.microsoft.com/learning/mcp/mcts/spserver/appdev/"&gt;Technology Specialist: Microsoft Office SharePoint Server 2007, Application Development&lt;/a&gt;&lt;br /&gt;2)&lt;a href="http://www.microsoft.com/learning/mcp/mcts/spserver/config/"&gt;Technology Specialist: Microsoft Office SharePoint Server 2007, Configuration&lt;/a&gt;&lt;br /&gt;3)&lt;a href="http://www.microsoft.com/learning/mcp/mcts/spservices/appdev/"&gt;Technology Specialist: Windows SharePoint Services 3.0, Application Development&lt;/a&gt;&lt;br /&gt;4)&lt;a href="http://www.microsoft.com/learning/mcp/mcts/spservices/config"&gt;Technology Specialist: Windows SharePoint Services 3.0, Configuration&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The other Certifications can be found in the following link.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/learning/mcp/mcts/default.mspx"&gt;http://www.microsoft.com/learning/mcp/mcts/default.mspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-3813884704042526710?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/3813884704042526710/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=3813884704042526710' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3813884704042526710'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/3813884704042526710'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/link-to-certification-details.html' title='Link to Certification Details'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3517493193240205135.post-2691060635366851074</id><published>2008-03-22T01:41:00.000-07:00</published><updated>2008-03-22T04:11:31.741-07:00</updated><title type='text'>Holy Day</title><content type='html'>&lt;a href="http://bp0.blogger.com/_MHBXgNa6mqE/R-TpVT7VpnI/AAAAAAAAAB0/9oUOyRdCS7A/s1600-h/Colours.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5180522023718594162" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://bp0.blogger.com/_MHBXgNa6mqE/R-TpVT7VpnI/AAAAAAAAAB0/9oUOyRdCS7A/s200/Colours.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://bp3.blogger.com/_MHBXgNa6mqE/R-TKCD7VpeI/AAAAAAAAAAY/MzEvl8LMomo/s1600-h/GlobalART.jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;Hi today is Holiday and also Holy Day so enjoy with colours my favorite colour is lite blue and pink.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3517493193240205135-2691060635366851074?l=paritala-sasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://paritala-sasi.blogspot.com/feeds/2691060635366851074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3517493193240205135&amp;postID=2691060635366851074' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2691060635366851074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3517493193240205135/posts/default/2691060635366851074'/><link rel='alternate' type='text/html' href='http://paritala-sasi.blogspot.com/2008/03/holy-day.html' title='Holy Day'/><author><name>Sasi Kanth</name><uri>http://www.blogger.com/profile/06629706189993323412</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://bp2.blogger.com/_MHBXgNa6mqE/SDq4LX8lb_I/AAAAAAAAAD0/-98g01PpOLM/S220/DSC00313.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_MHBXgNa6mqE/R-TpVT7VpnI/AAAAAAAAAB0/9oUOyRdCS7A/s72-c/Colours.jpg' height='72' width='72'/><thr:total>2</thr:total></entry></feed>
