cancel
Showing results for 
Search instead for 
Did you mean: 

vti/sharepoint https issue

nadaoneal
Champ in-the-making
Champ in-the-making
Hi, I'm having a weird problem with the "Edit online" option. My site is https. The link for "edit online" goes to https://mysite:7070/path/to/doc , which returns "Internet Explorer cannot display the webpage." Strangely, though, if I change the URL manually to http, everything works file. The behavior is the same with both of the following settings blocks in alfresco-global.properties (using Alfresco Community 3.2 on RHEL):

vti.server.port=7070
vti.alfresco.deployment.context=/alfresco
vti.alfresco.alfresoHostWithPort=https://mysite:8443
vti.share.shareHostWithPort=https://mysite:8443

and

vti.server.port=7070
vti.alfresco.deployment.context=/alfresco
vti.alfresco.alfresoHostWithPort=http://mysite:8080
vti.share.shareHostWithPort=http://mysite:8080

… I'd rather that vti was working over https, if I had a choice, since authentication information is being sent. Can SharePoint use https over 7070? Do I just need to use a different port number? I've seen this solution, but it doesn't quite address the problem of the https://:7070 mismatch - there, it looks like the connection is defaulting to http://. (unless I'm misunderstanding)

Also: does anyone know the best way to hide the "Edit Online" option until I have this fixed?

Thanks everyone!
2 REPLIES 2

unknown-user
Champ on-the-rise
Champ on-the-rise
I also have this problem, would be very nice if someone with the knowledge could help us  Smiley Sad

Until there is a fix to the problem I will disable/delete the 'Edit Online' button. Here is how I did it:

Folder location: ../tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/documentlibrary/
File to edit: documentlist.get.config.xml

Remove the line highlighted with red from the following area:

<actionSet id="document">
    <action id="onActionDownload" type="simple-link" href="{downloadUrl}" label="actions.document.download" />
    <action id="onActionDetails" type="action-link" permission="edit" label="actions.document.edit-metadata" />
    <action id="onActionUploadNewVersion" type="action-link" label="actions.document.upload-new-version" />
    <action id="onActionEditOnline" type="action-link" permission="edit,online-edit" label="actions.document.edit-online" />
    <action id="onActionEditOffline" type="action-link" permission="edit" label="actions.document.edit-offline" />
    <action id="onActionCopyTo" type="action-link" label="actions.document.copy-to" />
    <action id="onActionMoveTo" type="action-link" permission="delete" label="actions.document.move-to" />
    <action id="onActionDelete" type="action-link" permission="delete" label="actions.document.delete" />
    <action id="onActionAssignWorkflow" type="action-link" label="actions.document.assign-workflow" />
    <action id="onActionManagePermissions" type="action-link" permission="permissions" label="actions.document.manage-permissions" />
    <action id="onActionManageAspects" type="action-link" permission="edit" label="actions.document.manage-aspects" />
</actionSet>

petebeaz
Champ in-the-making
Champ in-the-making
I've also encountered the problem of having to use http:// instead of https:// to get sharepoint support to work.
Have you had any luck finding a resolution since your last post?