| Troubleshooting Jive For SharePoint | |
Using the SharePoint Log Viewer, you can monitor the status of the Jive plugin in SharePoint.
Use the SharePoint Log Viewer when you want to view the logs for a particular connection without going into your SharePoint file system. You can see logs for a different connection by choosing it from the menu. Click Refresh to see the newest information.
With the assistance of a Jive Professional Services engineer, you can capture all SharePoint events in a log by installing and running the SharePoint Diagnostic tool. This tool adds logs for any file event fired by SharePoint. This application adds only log entries. It does not do any further processing.
To install and use the diagnostic tool:
C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\STSADM.EXE" -o addsolution -filename "filename.of.the.wsp"
C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\STSADM.EXE" -o deploysolution -name "filename.of.the.wsp" -force -immediate -AllowGacDeployment -allcontenturls
PS > Enable-SPFeature -identity "Jive.Plugin.Diagnostic_JiveDiagnosticsFeature" -URL "http://URL-TO-SITE-CONNECTED-TO-JIVE-TO-DIAGNOSE"
PS > Get-SPLogEvent -StartTime (Get-Date).addhours(-1) | Where-Object { $_.area -eq "Jive Integration" } | out-string -width 10000 > log.txt
To uninstall the diagnostic tool:
PS > Disable-SPFeature -identity "Jive.Plugin.Diagnostic_JiveDiagnosticsFeature" -URL "http://URL-TO-SITE-CONNECTED-TO-JIVE-TO-DIAGNOSE"
"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\STSADM.EXE" -o retractsolution -name "filename.of.the.wsp" -immediate -allcontenturls
"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\STSADM.EXE" -o deletesolution -name "Jive.Plugin.Diagnostic.1.0.0.0.wsp"