Tuesday, December 14, 2010

Share Point People Search Not working

People search results returns sps3:// instead of http://

Centrail Administration-->My SSP-->Search Settings(under Search Area)-->Content sources and crawl schedules-->Local Office SharePoint Server sites.

In Local Office SharePoint Server sites, I tried following address.

1) sps3://mysharepoint.companyname.com/

2)sps3s://mysharepoint.companyname.com/

3)https://mysharepoint.companyname.com:

More Information about Protocols:
SSP3 protocol  :


The SSP3 protocol commonly shows up when you define the content sources for the SSP
Some examples:


        sps3://mysite.yourdomain.com/           
        sps3://www.yourdomain.com/mysite/

        sps3://my.yourdomain.com/


Note, that if you are using SSL on your My Site host headers, the SPS3 protocol should not be used, and you should change your content source to use the SPS3S protocol instead.


The protocol handlers (that ship out-of-the-box with MOSS 2007) translate the content source url from sps3:// into a web service call
        sps3://mysite.yourdomain.com      
     
        is actually crawled on the web front end by the indexer using a SOAP call to the web service


                http://mysite.yourdomain.com/_vti_bin/spscrawl.asmx
( the SPS3 SOAP call is made using HTTP protocol on TCP Port 56737 )


The SPS3S Protocol
The SPS3S protocol is used when you have enabled SSL for the My Sites, and is used for crawling people profiles (e.g., those defined in the SSP) to support the "People Search" functionality in the MOSS Enterprise Search.


This protocol is used to index WSS 3.0 server farms using SSL (which MOSS 2007 is layered on top of )


Some examples:


        sps3s://www.yourdomain.com/ 


        sps3s://www.yourdomain.com/mysite/


        sps3s://my.yourdomain.com/




The protocol handlers (that ship out-of-the-box with MOSS 2007) translate the content source url from sps3s:// into a web service call


        sps3s://mysite.yourdomain.com     
      
        is actually crawled on the web front end by the indexer using a SOAP call to the web service


                https://mysite.yourdomain.com/_vti_bin/spscrawl.asmx
( the SPS3S SOAP call is made using HTTP protocol on TCP Port 56738 with SSL encryption )


More Information:
http://social.technet.microsoft.com/Forums/en-US/sharepointsearch/thread/2b760f44-3eed-4ab0-96fb-fdccffe0cfdd/


http://blogs.technet.com/b/josebda/archive/2007/03/19/crawling-sharepoint-sites-using-the-sps3-protocol-handler.aspx


http://blogs.technet.com/b/victorbutuza/archive/2010/08/18/people-search-results-returns-sps3-instead-of-http.aspx

Wednesday, December 8, 2010

JQuery





Monday, December 6, 2010

How to change the location of the Windows SharePoint Services database file

How To Move Sharepoint Server 2007 Database To Another Drive?

  procedure of moving sharepoint sql content data os drive to other drive

step1: identify source data location

sp_helpdb WSS_Content_5656

   

note: source data located into  Operating system drive(C:/) 

step2: take back up

backup database [WSS_Content_5656] to disk ='F:\WSS_Content_5656_11082010.bak' with stats=5
note: backup will stored into F:\ drive

 step3:
   alter database [WSS_Content_5656] set offline with rollback immediate 

step4:
   exec sp_detach_db 'WSS_Content_5656','true'

note: after detach cut the .mdf and .ldf file in os drive  and copy into desire drive(d:\)
    and attach to content db

step5:
   exec sp_attach_db @dbname=N'WSS_Content_5656',@filename1=N'D:\WSS_Content_5656.mdf'
,@filename2=N'D:\WSS_Content_5656_log.ldf'

step6: check you are desired location 

sp_helpdb WSS_Content_5656

note:  Move Sharepoint content  data " os drive(c:\)"  into d:\ drive

 More Information:

http://njbblog.blogspot.com/2009/03/sharepoint-30-how-to-move-sql-database.html

http://technet.microsoft.com/en-us/library/dd277864(office.12).aspx

http://blogs.techrepublic.com.com/window-on-windows/?p=454


http://www.sharepointdev.net/sharepoint--setup-upgrade-administration-operation/how-to-move-sharepoint-services-30-sp1-database-to-another-drive-2019.shtml

Microsoft Links:

http://support.microsoft.com/kb/843580
 

Sunday, December 5, 2010

SharePoint 2010 for Architects and Developers

     You  must know about these things in SharePoint 2010

 An Introduction
  1. Introduction to SharePoint 2010
  2. A SharePoint  project, your development environment
  3. SharePoint basics
SharePoint Basics
  1. The Ribbon, Dialog, and Navigation
  2. SharePoint branding
  3. Writing Features and Solutions,
  4. Feature Upgrade scenarios
  5. Sandbox Solutions
Writing WebParts and SharePoint Pages

Usage of Javascript and Silverlight in SharePoint

  1. The Client Object Model
  2. WCF Data Services
  3. Custom WCF Services
Content Organization and Data Management in SharePoint
  1. Introduction to Content Types
  2. Custom Fields
  3. Custom Content Types
  4. Custom List Definitions
  5. Event Receivers
  6. RBS Storage
  7. CAML and LINQ queries
Other Topics
  1. Authoring and debugging Timer Jobs
  2. Storing Configuration Data
Enterprise Content Management in SharePoint
  1. Document ID and Document Sets
  2. Managed Metadata, Keywords, and Tagging
  3. Content Organizer
  4. Records Management
  5. Enterprise Content Types
Business Connectivity Services
  1. Introduction
  2. Using SharePoint Designer
  3. Using Visual Studio 2010
  4. BCS Object Model
  5. BCS Security
Workflows
  1. Introduction and out of the box workflows
  2. Workflows authoring using Visio and SharePoint Designer
  3. Writing Workflows using Visual Studio 2010
  4. Business Intelligence
  5. Visio Services
  6. Excel Services
  7. Reporting Services
  8. PerformancePoint Services
SharePoint Security
  1. Claims based authentication
  2. Elevation and Impersonation
  3. The SharePoint security object model