How to send Real Meeting Request from Sharepoint 2010 – Part 3 Deployment
17/02/2012 Leave a comment
How to send Real Meeting Request from Sharepoint 2010 Series:
https://blog.bugrapostaci.com/2012/02/17/how-to-send-real-meeting-request-from-sharepoint-2010-part-1/
https://blog.bugrapostaci.com/2012/02/17/how-to-send-real-meeting-request-from-sharepoint-2010-part-2/
https://blog.bugrapostaci.com/2012/02/17/how-to-send-real-meeting-request-from-sharepoint-2010-part-3-deployment/
https://blog.bugrapostaci.com/2012/02/17/how-to-send-real-meeting-requests-from-sharepoint-2010-part4-usage/
How to Deploy our sample project to sharepoint.
1) Download Meeting Request project WSP file from
http://spssampleprojects.codeplex.com/releases/view/82359
And copy SendMeetingRequestProg.wsp file to your c: drive
2) Open a Sharepoint Management Shell
3) Type and rın fallowing command
Add-SPSolution -LiteralPath c:\SendMeetingRequestProj.wsp
4) Type and rın fallowing command
Install-SPSolution -identity SendMeetingRequestProj.wsp -WebApplication <your web site url> -GACDeployment
Example:
Install-SPSolution -identity SendMeetingRequestProj.wsp -WebApplication http://blog.bugrapostaci.com -GACDeployment
5) Type and rın fallowing command
Enable-SPFeature -Identity f746829e-ca13-4bcd-86cc-90fd1cd0729c -url<your web site url>
Example:
Enable-SPFeature -Identity f746829e-ca13-4bcd-86cc-90fd1cd0729c -url http://blog.bugrapostaci.com
Our feature Id : is f746829e-ca13-4bcd-86cc-90fd1cd0729c but if dont know a features id you can find it with fallowing powershell command
Get-SPFeature
Our wsp files contains fallowing files.
PS : WSP Files contains Microsoft.Exchange.WebServices.dll file so you dont need to install EWS setup to your sharepoint servers .
When you deploy wsp file Microsoft.Exchange.WebServices.dll will be copied to your web applications folder .
Don’t forget to add web.config keys in <appSettings>
<add key=”ExchangeServiceURL” value=”https://exchange.blogbugrapostaci.com/EWS/Exchange.asmx” />
<add key=”ExchangeServiceUserName” value=”MeetingService” />
<add key=”ExchangeServicePassword” value=”the password is here” />
<add key=”ExchangeServiceDomain” value=”BLOG” />
And Be sure your Trust level is Full
<trust level=”Full” originUrl=”” />