cancel
Showing results for 
Search instead for 
Did you mean: 

Cifs desktop action installation problem

miggy4340
Champ in-the-making
Champ in-the-making
Hello,

I have configured the cifs server to have desktop actions.

The actions appear correcly when I'm browsing but when I try to execute one, I receive the following message.

"This application has failed to start because the application configuration is incorrect.
Reinstalling the applciation may fix the problem."

I have done a search in the forums and on JIRA and found nothing.

Can you help me with what I'm doing wrong.

Regards

BMI (miggy)



This application has failed to start because the application configuration is incorrect.
Reinstalling the applciation may fix the problem.


<alfresco-config area="file-servers">

    <config evaluator="string-compare" condition="CIFS Server">
      <host name="${localname}_A"/>
      <comment>Alfresco CIFS Server</comment>

      <!– Set to the broadcast mask for the subnet –>
      <broadcast>255.255.255.255</broadcast>

      <!– Use Java socket based NetBIOS over TCP/IP and native SMB on linux –>
      <tcpipSMB platforms="linux,solaris,macosx"/>
      <netBIOSSMB platforms="linux,solaris,macosx"/>
      <hostAnnounce interval="5"/>

      <!– Use Win32 NetBIOS interface on Windows –>
      <Win32NetBIOS/>
      <Win32Announce interval="5"/>

<!–
      <WINS>
         <primary>1.2.3.4</primary>
         <secondary>5.6.7.8</secondary>
      </WINS>
–>
      <sessionDebug flags="Negotiate,Socket"/>
   </config>

  
   <!– To override the default Alfresco filesystem use replace="true", to –>
   <!– add additional filesystems remove the replace="true" attribute     –>
  


<config evaluator="string-compare" condition="Filesystems" replace="true" >
   <filesystems>
     <filesystem name="Alfresco">
       <store>workspace://SpacesStore</store>
       <rootPath>/app:company_home</rootPath>
       <urlFile>
         <filename>__AlfrescoClient.url</filename>
         <webpath>http://localhost:8080/alfresco/</webpath>
       </urlFile>
       <offlineFiles/>
       <desktopActions>
         <global>
           <path>alfresco/desktop/Alfresco.exe</path>
         </global>
         <action>
           <class>org.alfresco.filesys.smb.server.repo.desk.EchoDesktopAction</class>
           <name>Echo</name>
           <filename>__AlfrescoEcho.exe</filename>
         </action>
         <action>
           <class>org.alfresco.filesys.smb.server.repo.desk.URLDesktopAction</class>
           <name>URL</name>
           <filename>__AlfrescoURL.exe</filename>
         </action>
         <action>
           <class>org.alfresco.filesys.smb.server.repo.desk.CmdLineDesktopAction</class>
           <name>CmdLine</name>
           <filename>__AlfrescoCmd.exe</filename>
         </action>
         <action>
           <class>org.alfresco.filesys.smb.server.repo.desk.CheckInOutDesktopAction</class>
           <name>CheckInOut</name>
           <filename>__AlfrescoCheckInOut.exe</filename>
         </action>
       </desktopActions>
     </filesystem>
   </filesystems>
</config>



   <!– Allow guest access to file systems –>
   <config evaluator="string-compare" condition="Filesystem Security">

      <authenticator type="alfresco">
       <!–  <allowGuest/> –>
         <!– Map any unknown user to guest –>
         <!–
         <mapUnknownUserToGuest/>
         –>
      </authenticator>

   </config>

</alfresco-config>
1 REPLY 1

avigano
Champ in-the-making
Champ in-the-making