Workflow failed to start

cancel
Showing results for 
Search instead for 
Did you mean: 
yuva
Active Member

Workflow failed to start

Hi

I am new to activiti, I have created a workflow followed by the references. I created seperate workflow model, workflow properties file and added the props in workflow-content.xml and added a config evaluator in share-config-custom.xml.

Now,I try to start the workflow, It shows an error in screen (Please refer the attachment). Can anyone tell me why its not working?
Can see my codes below :

scWorkflowModel.xml :

<?xml version="1.0" encoding="UTF-8"?>
<!-- Definition of new Model -->
<model name="scwf:workflowmodel"
xmlns="http://www.alfresco.org/model/dictionary/1.0">
<!-- Optional meta-data about the model -->
    <description>Workflow Model</description>
    <author></author>
    <version>1.0</version>
    <!-- Imports are required to allow references to
    definitions in other models -->
    <imports>
        <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d" />
        <import uri="http://www.alfresco.org/model/bpm/1.0" prefix="bpm" />
        <import uri="http://www.alfresco.org/model/workflow/1.0" prefix="wf" />
    </imports>
    <!-- Introduction of new namespaces defined by this model -->
    <namespaces>
        <namespace uri="http://www.someco.com/model/workflow/1.0" prefix="scwf" />
    </namespaces>

    <types>
        <type name="scwf:submitHelloWorldTask">
        <parent>bpm:startTask</parent>
        <properties>
            <property name="scwf:helloName">
                <type>d:text</type>
                <mandatory>true</mandatory>
                <multiple>false</multiple>
            </property>
        </properties>
        </type>
        
        <type name="scwf:submitTask">
            <parent>bpm:startTask</parent>
            <properties>
                <property name="scwf:namee">
                    <type>d:text</type>
                    <mandatory>true</mandatory>
                    <multiple>false</multiple>
                </property>
            </properties>
            </type>
            
        <type name="scwfSmiley TongueanelForm">
            <parent>wf:activitiReviewTask</parent>
            <overrides>
                <property name="bpmSmiley TongueackageItemActionGroup">
                    <default>read_package_item_actions</default>
                </property>
            </overrides>
        </type>
            
        <type name="scwf:reviewTask">
            <parent>wf:activitiReviewTask</parent>        
            <overrides>
                <property name="bpmSmiley TongueackageItemActionGroup">
                    <default>read_package_item_actions</default>
                </property>
            </overrides>
        </type>
    </types>

</model>

workflow-content.xml :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN'
'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
    <bean id="someco.workflowBootstrap" parent="workflowDeployer">
        <property name="workflowDefinitions">
            <list>
                <props>
                    <prop key="engineId">activiti</prop>
                    <prop key="location">alfresco/module/${project.artifactId}/workflow/HelloWorldUIProcess.bpmn20.xml</prop>
                    <prop key="mimetype">text/xml</prop>
                    <prop key="redeploy">true</prop>
                </props>
                <props>
                    <prop key="engineId">activiti</prop>
                    <prop key="location">alfresco/module/${project.artifactId}/workflow/HelloWorld2Process.bpmn20.xml</prop>
                    <prop key="mimetype">text/xml</prop>
                    <prop key="redeploy">true</prop>
                </props>
                <props>
                    <prop key="engineId">activiti</prop>
                    <prop key="location">alfresco/module/${project.artifactId}/workflow/HelloWorldProcess.bpmn20.xml</prop>
                    <prop key="mimetype">text/xml</prop>
                    <prop key="redeploy">true</prop>
                </props>
                <props>
                   <prop key="engineId">activiti</prop>
                    <prop key="location">alfresco/module/${project.artifactId}/workflow/ActivitiDemoArgs.bpmn20.xml</prop>
                    <prop key="mimetype">text/xml</prop>
                    <prop key="redeploy">true</prop>
                </props>
                <props>
                      <prop key="engineId">activiti</prop>
                      <prop key="location">alfresco/module/${project.artifactId}/workflow/PublishLaw.bpmn20.xml</prop>
                      <prop key="mimetype">text/xml</prop>
                      <prop key="redeploy">true</prop>
                </props>  
                <props>
                    <prop key="engineId">activiti</prop>
                    <prop key="location">alfresco/module/${project.artifactId}/workflow/PublishPapers.bpmn20.xml</prop>
                    <prop key="mimetype">text/xml</prop>
                    <prop key="redeploy">true</prop>
                </props>
            </list>
        </property>
        
        <property name="models">
            <list>
                <value>alfresco/module/${project.artifactId}/model/scWorkflowModel.xml</value>
            </list>
        </property>

        <property name="labels">
            <list>
                <value>alfresco/module/${project.artifactId}/messages/scWorkflow</value>
            </list>
        </property>

    </bean>
</beans>

share-config-custom.xml :

       <config evaluator="string-compare" condition="activiti$PublishPapers">
            <forms>
                <form>
                    <field-visibility>
                        <show id="bpm:workflowDescriptions"/>
                        <show id="packageItems"/>
                        <show id="transitions"/>
                    </field-visibility>
                    <appearance>
                        <set id="" appearance="title" label-id="workflow.set.general" />
                        <set id="items" appearance="title" label-id="workflow.set.items" />
                        <set id="progress" appearance="title" label-id="workflow.set.task.progress" />
                        <field id="bpm:workflowDescription" label-id="workflow.field.message">
                            <control template="/org/alfresco/components/form/controls/textarea.ftl">
                                <control-param name="style">width: 95%</control-param>
                            </control>
                        </field>
                        <field id="packageItems" set="items" />
                    </appearance>
                </form>
            </forms>
        </config>
        
        
        <config evaluator="task-type" condition="scwf:reviewTask">
            <forms>
                <form>
                    <field-visibility>
                        <show id="message" />
                        <show id="packageItems" />
                        <show id="bpm:comment" />
                        <show id="wf:reviewOutcome" />
                    </field-visibility>
                <appearance>
                    <set id="" appearance="title" label-id="workflow.set.task.info" />
                    <set id="info" appearance="" template="/org/alfresco/components/form/3-column-set.ftl" />
                    <set id="progress" appearance="title" label-id="workflow.set.task.progress" />
                    <set id="items" appearance="title" label-id="workflow.set.items" />
                    <set id="response" appearance="title" label-id="workflow.set.response" />
                    <field id="message">
                        <control template="/org/alfresco/components/form/controls/info.ftl" />
                    </field>
                    <field id="packageItems" set="items" />
                    <field id="bpm:comment"    label-id="workflow.field.comment" set="response">
                        <control template="/org/alfresco/components/form/controls/textarea.ftl">
                            <control-param name="saveLineBreaks">true</control-param>
                        </control>
                    </field>
                    <field id="wf:reviewOutcome" label-id="workflow.field.outcome" set="response">
                        <control template="/org/alfresco/components/form/controls/workflow/activiti-transitions.ftl" />
                    </field>
                </appearance>
                </form>
            </forms>
            </config>

PublishPapers.bpmn20.xml :

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlnsSmiley Surprisedmgdc="http://www.omg.org/spec/DD/20100524/DC" xmlnsSmiley Surprisedmgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.activiti.org/test">
  <process id="PublishPapers" name="Publish Papers" isExecutable="true">
    <startEvent id="startevent1" name="Start" activiti:formKey="bpm:startTask"></startEvent>
    <endEvent id="endevent1" name="End"></endEvent>
    <scriptTask id="scripttask1" name="submit" scriptFormat="javascript" activiti:autoStoreVariables="false">
      <script>logger.log("submit papers");</script>
    </scriptTask>
    <parallelGateway id="parallelgateway1" name="Parallel Gateway"></parallelGateway>
    <userTask id="usertask1" name="marketing review" activiti:candidateGroups="GROUP_Marketing" activiti:formKey="scwf:reviewTask"></userTask>
    <parallelGateway id="parallelgateway2" name="Parallel Gateway"></parallelGateway>
    <exclusiveGateway id="exclusivegateway1" name="Exclusive Gateway"></exclusiveGateway>
    <userTask id="usertask3" name="revise"></userTask>
    <sequenceFlow id="flow1" sourceRef="startevent1" targetRef="scripttask1"></sequenceFlow>
    <sequenceFlow id="flow2" sourceRef="scripttask1" targetRef="parallelgateway1"></sequenceFlow>
    <sequenceFlow id="flow3" sourceRef="parallelgateway1" targetRef="usertask1"></sequenceFlow>
    <sequenceFlow id="flow6" sourceRef="usertask1" targetRef="parallelgateway2"></sequenceFlow>
    <userTask id="usertask4" name="approved" activiti:assignee="${initiator.properties.username}"></userTask>
    <sequenceFlow id="flow7" sourceRef="parallelgateway2" targetRef="exclusivegateway1"></sequenceFlow>
    <sequenceFlow id="flow8" sourceRef="exclusivegateway1" targetRef="usertask4"></sequenceFlow>
    <sequenceFlow id="flow9" sourceRef="exclusivegateway1" targetRef="usertask3"></sequenceFlow>
    <sequenceFlow id="flow10" sourceRef="usertask3" targetRef="scripttask1"></sequenceFlow>
    <sequenceFlow id="flow11" sourceRef="usertask4" targetRef="endevent1"></sequenceFlow>
    <userTask id="usertask5" name="Operation review" activiti:assignee="${initiator.properties.username}" activiti:formKey="wf:adhocTask"></userTask>
    <sequenceFlow id="flow12" sourceRef="parallelgateway1" targetRef="usertask5"></sequenceFlow>
    <sequenceFlow id="flow13" sourceRef="usertask5" targetRef="parallelgateway2"></sequenceFlow>
  </process>
  <bpmndi:BPMNDiagram id="BPMNDiagram_PublishPapers">
    <bpmndi:BPMNPlane bpmnElement="PublishPapers" id="BPMNPlane_PublishPapers">
      <bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
        <omgdc:Bounds height="35.0" width="35.0" x="40.0" y="310.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
        <omgdc:Bounds height="35.0" width="35.0" x="1080.0" y="310.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="scripttask1" id="BPMNShape_scripttask1">
        <omgdc:Bounds height="55.0" width="105.0" x="160.0" y="300.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="parallelgateway1" id="BPMNShape_parallelgateway1">
        <omgdc:Bounds height="40.0" width="40.0" x="340.0" y="307.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="usertask1" id="BPMNShape_usertask1">
        <omgdc:Bounds height="55.0" width="105.0" x="450.0" y="300.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="parallelgateway2" id="BPMNShape_parallelgateway2">
        <omgdc:Bounds height="40.0" width="40.0" x="710.0" y="307.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="exclusivegateway1" id="BPMNShape_exclusivegateway1">
        <omgdc:Bounds height="40.0" width="40.0" x="810.0" y="307.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="usertask3" id="BPMNShape_usertask3">
        <omgdc:Bounds height="55.0" width="105.0" x="778.0" y="500.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="usertask4" id="BPMNShape_usertask4">
        <omgdc:Bounds height="55.0" width="105.0" x="910.0" y="300.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape bpmnElement="usertask5" id="BPMNShape_usertask5">
        <omgdc:Bounds height="55.0" width="105.0" x="450.0" y="390.0"></omgdc:Bounds>
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
        <omgdi:waypoint x="75.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="160.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
        <omgdi:waypoint x="265.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="340.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
        <omgdi:waypoint x="380.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="450.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
        <omgdi:waypoint x="555.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="710.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow7" id="BPMNEdge_flow7">
        <omgdi:waypoint x="750.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="810.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow8" id="BPMNEdge_flow8">
        <omgdi:waypoint x="850.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="910.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow9" id="BPMNEdge_flow9">
        <omgdi:waypoint x="830.0" y="347.0"></omgdi:waypoint>
        <omgdi:waypoint x="830.0" y="500.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow10" id="BPMNEdge_flow10">
        <omgdi:waypoint x="778.0" y="527.0"></omgdi:waypoint>
        <omgdi:waypoint x="212.0" y="527.0"></omgdi:waypoint>
        <omgdi:waypoint x="212.0" y="355.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow11" id="BPMNEdge_flow11">
        <omgdi:waypoint x="1015.0" y="327.0"></omgdi:waypoint>
        <omgdi:waypoint x="1080.0" y="327.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow12" id="BPMNEdge_flow12">
        <omgdi:waypoint x="360.0" y="347.0"></omgdi:waypoint>
        <omgdi:waypoint x="360.0" y="417.0"></omgdi:waypoint>
        <omgdi:waypoint x="450.0" y="417.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge bpmnElement="flow13" id="BPMNEdge_flow13">
        <omgdi:waypoint x="555.0" y="417.0"></omgdi:waypoint>
        <omgdi:waypoint x="730.0" y="417.0"></omgdi:waypoint>
        <omgdi:waypoint x="730.0" y="347.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</definitions>

8 Replies
fegor
Senior Member

Re: Workflow failed to start

What say your log?

yuva
Active Member

Re: Workflow failed to start

when click the start workflow button, this is what i am getting in localhost_access_log2017-11-27 file in tomcat/logs folder.

127.0.0.1 - - [27/Nov/2017:16:11:31 +0530] "POST /alfresco/s/api/workflow/activiti$PublishPapers/formprocessor?alf_ticket=TICKET_8e809fefaacccf99b47d52bf68ff5c9f54c59843 HTTP/1.1" 500 483

fegor
Senior Member

Re: Workflow failed to start

workflow-content.xml? This file is -context.xml, true?

yuva
Active Member

Re: Workflow failed to start

its wrongly typed here, file name is workflow-context.xml only.

kalpesh_c2
Senior Member

Re: Workflow failed to start

Hi ‌ ,

Can you please share your log details of alfresco from alfresco.log while you are going to start workflow ?

Thanks,
Kalpesh

yuva
Active Member

Re: Workflow failed to start

This is what i am getting in localhost_access_log2017-11-28

127.0.0.1 - - [28/Nov/2017:11:55:08 +0530] "GET /solr4/admin/cores?qt=%2Fadmin%2Fcores&action=STATUS&wt=xml&version=2.2 HTTP/1.1" 200 2714
127.0.0.1 - - [28/Nov/2017:11:55:21 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:55:30 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:55:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:55:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:55:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:55:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:55:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:55:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:55:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:55:45 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:55:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:55:52 +0530] "GET / HTTP/1.1" 200 1168
127.0.0.1 - - [28/Nov/2017:11:55:52 +0530] "GET /favicon.ico HTTP/1.1" 304 -
127.0.0.1 - - [28/Nov/2017:11:55:53 +0530] "GET /alfresco HTTP/1.1" 302 -
127.0.0.1 - - [28/Nov/2017:11:55:54 +0530] "GET /alfresco/ HTTP/1.1" 200 2255
127.0.0.1 - - [28/Nov/2017:11:55:55 +0530] "GET /alfresco/css/opensans.woff HTTP/1.1" 304 -
127.0.0.1 - - [28/Nov/2017:11:55:55 +0530] "GET /alfresco/css/opensanscondensed.woff HTTP/1.1" 304 -
127.0.0.1 - - [28/Nov/2017:11:55:55 +0530] "GET /alfresco/css/opensansbold.woff HTTP/1.1" 304 -
127.0.0.1 - - [28/Nov/2017:11:55:56 +0530] "GET /share HTTP/1.1" 302 -
127.0.0.1 - - [28/Nov/2017:11:55:56 +0530] "GET /share/ HTTP/1.1" 302 -
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/api/admin/restrictions?guest=true HTTP/1.1" 200 263
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/configurations/slingshot.site.configuration.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/site-index.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/themes/lightTheme.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/slingshot-login.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/simple-guest.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/org/alfresco/simple-guest.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:55:57 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/webtemplate.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/extensions/default-persisted-extension.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/extensions/default-persisted-extension.xml?s=sitestore HTTP/1.1" 401 1771
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/Angular2%20Support%20(version%3a%201.0.101.10).xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/Debug%20Enabler%20Extension.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/fme-alfresco-extdl-master-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/DigiGov-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/Adds%20new%20links%20to%20header.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/alfmodule-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/alfproject-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/Debug%20Disabler%20Extension.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/module-deployments/Aikau%201.0.101.10%20Config%20Module.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/Aikau%201.0.101.10%20Config%20Module.xml?s=sitestore HTTP/1.1" 401 1799
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/fme-alfresco-extdl-master-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 401 1859
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/DigiGov-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 401 1823
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/Adds%20new%20links%20to%20header.xml?s=sitestore HTTP/1.1" 401 1789
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/alfmodule-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 401 1827
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "POST /alfresco/s/remoteadm/create/alfresco/site-data/module-deployments/alfproject-share-amp%20-%20Example%20Aikau%20Widgets.xml?s=sitestore HTTP/1.1" 401 1829
127.0.0.1 - - [28/Nov/2017:11:56:00 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/global.head-title.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/global.bootstrap.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/global.head-resources.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.components.slingshot-login.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/chrome/slingshot-region-chrome.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/component-types/webscript.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/chrome/.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:01 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/chrome/default-sub-component-chrome.xml?s=sitestore HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:05 +0530] "GET /share/page/ HTTP/1.1" 200 39170
127.0.0.1 - - [28/Nov/2017:11:56:05 +0530] "GET /share/noauth/messages_53efc8b204417adb8538c5bd360b6fb4.js?locale=en_US HTTP/1.1" 200 84275
127.0.0.1 - - [28/Nov/2017:11:56:06 +0530] "GET /share/res/favicon.ico HTTP/1.1" 200 1406
127.0.0.1 - - [28/Nov/2017:11:56:06 +0530] "GET /share/res/css/fonts/opensans.woff HTTP/1.1" 200 109052
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "POST /alfresco/s/api/login HTTP/1.1" 200 79
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/api/people/admin?groups=true&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1439
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "POST /share/page/dologin HTTP/1.1" 302 -
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/webframework/content/metadata?user=admin&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 2725
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/site-index.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/site-index.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /share/page/ HTTP/1.1" 302 -
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/user/admin/dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/user/admin/dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/get/alfresco/site-data/pages/user/admin/dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 395
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/dashboard-2-columns-wide-right.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/org/alfresco/dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/global.share-header.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.full-width-dashlet.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-1-1.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/get/alfresco/site-data/components/page.component-1-1.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 297
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-1-2.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/get/alfresco/site-data/components/page.component-1-2.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 297
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-1-3.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-1-4.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-1-5.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-2-1.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/get/alfresco/site-data/components/page.component-2-1.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 302
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-2-2.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/get/alfresco/site-data/components/page.component-2-2.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 372
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-2-3.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-2-4.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/page.component-2-5.user~admin~dashboard.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/global.footer.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/api/people/admin/preferences?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 196
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/s/api/admin/usage?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 263
127.0.0.1 - - [28/Nov/2017:11:56:13 +0530] "GET /alfresco/api/-default-/private/alfresco/versions/1/modulepackages/alfresco-share-services?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 297
127.0.0.1 - - [28/Nov/2017:11:56:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:15 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:56:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:30 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:56:34 +0530] "GET /alfresco/s/imap/servstatus?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 18
127.0.0.1 - - [28/Nov/2017:11:56:42 +0530] "GET /share/page/user/admin/dashboard HTTP/1.1" 200 45841
127.0.0.1 - - [28/Nov/2017:11:56:43 +0530] "GET /share/service/modules/authenticated?noCache=1511850403580&a=user HTTP/1.1" 200 23
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /alfresco/s/api/people/admin/sites?roles=user&size=100&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 967
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /share/proxy/alfresco/api/people/admin/sites?roles=user&size=100 HTTP/1.1" 200 955
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /alfresco/s/api/activities/feed/user?format=json&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 554
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /alfresco/s/api/task-instances?authority=admin&properties=bpm_priority,bpm_status,bpm_dueDate,bpm_description&exclude=wcmwf:*&skipCount=0&maxItems=50&priority=1&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 213
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /share/proxy/alfresco/api/task-instances?authority=admin&properties=bpm_priority,bpm_status,bpm_dueDate,bpm_description&exclude=wcmwf:*&skipCount=0&maxItems=50&priority=1 HTTP/1.1" 200 202
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "POST /alfresco/s/api/sites/query?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 481
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /share/noauth/1_0_101_10/defaults.js HTTP/1.1" 200 980
127.0.0.1 - - [28/Nov/2017:11:56:44 +0530] "GET /share/service/components/dashlets/activities/list?site=&mode=user&dateFilter=7&userFilter=all&activityFilter= HTTP/1.1" 200 843
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/s/slingshot/profile/avatar/admin/thumbnail/avatar?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 848
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /share/proxy/alfresco/slingshot/profile/avatar/admin/thumbnail/avatar HTTP/1.1" 200 848
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "POST /solr4/alfresco/alfresco?wt=json&fl=DBID%2Cscore&rows=50&df=TEXT&start=0&locale=en_US&alternativeDic=DEFAULT_DICTIONARY&sort=%40cm%3Amodified+desc&fq=%7B%21afts%7DAUTHORITY_FILTER_FROM_JSON&fq=%7B%21afts%7DTENANT_FILTER_FROM_JSON HTTP/1.1" 200 639
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /alfresco/s/slingshot/doclib/doclist/documents/node/alfresco/company/home?max=50&filter=recentlyModifiedByMe&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 397
127.0.0.1 - - [28/Nov/2017:11:56:45 +0530] "GET /share/proxy/alfresco/slingshot/doclib/doclist/documents/node/alfresco/company/home?max=50&filter=recentlyModifiedByMe HTTP/1.1" 200 385
127.0.0.1 - - [28/Nov/2017:11:57:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:00 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:57:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:15 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:57:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:30 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:57:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:57:45 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:57:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:57:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:00 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:58:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:15 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:58:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/org/alfresco/sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.actions-common.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.actions.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.documentlist_v2.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.filter.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.tree.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.categories.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.tags.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.html-upload.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.flash-upload.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.file-upload.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.dnd-upload.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.archive-and-download.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.doclib-custom.sharedfiles.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:30 +0530] "GET /alfresco/s/api/people/admin/preferences?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 196
127.0.0.1 - - [28/Nov/2017:11:58:32 +0530] "GET /share/page/context/shared/sharedfiles HTTP/1.1" 200 116042
127.0.0.1 - - [28/Nov/2017:11:58:33 +0530] "GET /share/res/components/preview/StrobeMediaPlayback.js HTTP/1.1" 404 1063
127.0.0.1 - - [28/Nov/2017:11:58:34 +0530] "GET /share/res/components/preview/StrobeMediaPlayback.js HTTP/1.1" 404 1063
127.0.0.1 - - [28/Nov/2017:11:58:35 +0530] "GET /share/service/modules/authenticated?noCache=1511850515148&a=user HTTP/1.1" 200 23
127.0.0.1 - - [28/Nov/2017:11:58:35 +0530] "POST /solr4/alfresco/alfresco?wt=json&fl=DBID%2Cscore&rows=1&df=TEXT&start=0&locale=en_US&alternativeDic=DEFAULT_DICTIONARY&fq=%7B%21afts%7DAUTHORITY_FILTER_FROM_JSON&fq=%7B%21afts%7DTENANT_FILTER_FROM_JSON&facet=true&facet.field=TAG&f.TAG.facet.limit=100 HTTP/1.1" 200 781
127.0.0.1 - - [28/Nov/2017:11:58:35 +0530] "GET /alfresco/s/collaboration/tagQuery?d=1511850514880&m=100&s=count&n=alfresco%3A%2F%2Fcompany%2Fshared&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 69
127.0.0.1 - - [28/Nov/2017:11:58:35 +0530] "GET /share/proxy/alfresco/collaboration/tagQuery?d=1511850514880&m=100&s=count&n=alfresco%3A%2F%2Fcompany%2Fshared HTTP/1.1" 200 58
127.0.0.1 - - [28/Nov/2017:11:58:35 +0530] "GET /share/noauth/1_0_101_10/defaults.js HTTP/1.1" 200 980
127.0.0.1 - - [28/Nov/2017:11:58:36 +0530] "GET /alfresco/s/slingshot/doclib2/doclist/all/node/alfresco/company/shared/?filter=path&sortField=cm%3aname&sortAsc=true&view=browse&size=50&noCache=1511850514878&pos=1&libraryRoot=alfresco%3a%2f%2fcompany%2fshared&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 6268
127.0.0.1 - - [28/Nov/2017:11:58:37 +0530] "GET /alfresco/s/api/dictionary?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1047547
127.0.0.1 - - [28/Nov/2017:11:58:37 +0530] "GET /share/service/components/documentlibrary/data/doclist/all/node/alfresco/company/shared/?filter=path&size=50&pos=1&sortAsc=true&sortField=cm%3Aname&libraryRoot=alfresco%3A%2F%2Fcompany%2Fshared&view=browse&noCache=1511850514878 HTTP/1.1" 200 14913
127.0.0.1 - - [28/Nov/2017:11:58:37 +0530] "GET /alfresco/s/slingshot/doclib/treenode/node/alfresco/company/home?perms=false&children=false&max=500&libraryRoot=alfresco://company/shared&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 301
127.0.0.1 - - [28/Nov/2017:11:58:37 +0530] "GET /share/proxy/alfresco/slingshot/doclib/treenode/node/alfresco/company/home?perms=false&children=false&max=500&libraryRoot=alfresco://company/shared HTTP/1.1" 200 289
127.0.0.1 - - [28/Nov/2017:11:58:37 +0530] "GET /share/res/js/aikau/1.0.101.10/alfresco/core/css/opensansbold.woff HTTP/1.1" 200 111460
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/org/alfresco/document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.mobile-app.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.actions-common.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.actions.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.node-header.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.web-preview.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.comments.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-actions.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-tags.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-links.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-metadata.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-sync.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-workflows.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.document-versions.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.html-upload.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.flash-upload.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.file-upload.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.dnd-upload.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.doclib-custom.document-details.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/api/people/admin/preferences?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 196
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/slingshot/doclib2/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca?libraryRoot=alfresco%3A%2F%2Fcompany%2Fshared&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4175
127.0.0.1 - - [28/Nov/2017:11:58:40 +0530] "GET /alfresco/s/quickshare/enabled?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 34
127.0.0.1 - - [28/Nov/2017:11:58:41 +0530] "GET /alfresco/s/api/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/metadata?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 614
127.0.0.1 - - [28/Nov/2017:11:58:41 +0530] "GET /alfresco/s/slingshot/doclib2/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca?libraryRoot=alfresco%3A%2F%2Fcompany%2Fhome&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 4181
127.0.0.1 - - [28/Nov/2017:11:58:41 +0530] "GET /alfresco/s/api/metadata?nodeRef=workspace://SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1982
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /alfresco/s/api/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/workflow-instances?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 40
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/page/context/shared/document-details?nodeRef=workspace://SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca HTTP/1.1" 200 93157
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/res/components/document-details/document-actions_4ab2f63a03722f9777fccca1a5d38c88.js HTTP/1.1" 200 7970
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/res/components/document-details/document-sync_cee37675360840c03f43edf594dccf41.js HTTP/1.1" 200 3412
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/res/components/images/filetypes/txt-file-48.png HTTP/1.1" 200 1368
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/res/components/document-details/document-sync_6d8a04f8993bd6b6b37ae1487895a8b4.css HTTP/1.1" 200 1169
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /share/res/components/document-details/document-versions_81427c15a39e5d4f25f0cc0b2c434e03.css HTTP/1.1" 200 1695
127.0.0.1 - - [28/Nov/2017:11:58:42 +0530] "GET /alfresco/s/api/metadata?nodeRef=workspace://SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca&shortQNames=true&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 954
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /alfresco/s/api/version?nodeRef=workspace://SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 451
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/proxy/alfresco/api/version?nodeRef=workspace://SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca HTTP/1.1" 200 439
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /alfresco/s/slingshot/profile/avatar/admin?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 848
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/proxy/alfresco/slingshot/profile/avatar/admin HTTP/1.1" 200 848
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "POST /alfresco/s/api/formdefinitions?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 7189
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /alfresco/s/api/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/comments?reverse=true&pageSize=10&startIndex=0&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 219
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/service/components/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/comments?reverse=true&startIndex=0&pageSize=10 HTTP/1.1" 200 141
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/service/modules/authenticated?noCache=1511850523330&a=user HTTP/1.1" 200 23
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/components/document-details/images/document-upload-new-version-16.png HTTP/1.1" 200 308
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/components/documentlibrary/actions/document-manage-aspects-16.png HTTP/1.1" 200 220
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/components/documentlibrary/actions/document-change-type-16.png HTTP/1.1" 200 266
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/noauth/components/preview/pdfjs?htmlid=template_x002e_web-preview_x002e_document-details_x0023_default HTTP/1.1" 200 8549
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/advlist/plugin.min.js HTTP/1.1" 200 1263
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/themes/modern/theme.min.js HTTP/1.1" 200 6419
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /alfresco/s/api/mimetypes/descriptions?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 37616
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/autolink/plugin.min.js HTTP/1.1" 200 1753
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/link/plugin.min.js HTTP/1.1" 200 4389
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/service/components/form?htmlid=template_x002e_document-metadata_x002e_document-details_x0023_default-formContainer&itemKind=node&itemId=workspace%3A%2F%2FSpacesStore%2Ffa4f81f6-30a0-4b73-a2d6-6e41c53685ca&formId=null&mode=view HTTP/1.1" 200 9662
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/lists/plugin.min.js HTTP/1.1" 200 7707
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/print/plugin.min.js HTTP/1.1" 200 293
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/image/plugin.min.js HTTP/1.1" 200 5035
127.0.0.1 - - [28/Nov/2017:11:58:43 +0530] "GET /share/res/modules/editors/tinymce/plugins/charmap/plugin.min.js HTTP/1.1" 200 7017
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/hr/plugin.min.js HTTP/1.1" 200 322
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/anchor/plugin.min.js HTTP/1.1" 200 508
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/preview/plugin.min.js HTTP/1.1" 200 1389
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/pagebreak/plugin.min.js HTTP/1.1" 200 1192
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/code/plugin.min.js HTTP/1.1" 200 721
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/searchreplace/plugin.min.js HTTP/1.1" 200 6301
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/fullscreen/plugin.min.js HTTP/1.1" 200 1540
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/insertdatetime/plugin.min.js HTTP/1.1" 200 1978
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/nonbreaking/plugin.min.js HTTP/1.1" 200 662
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/contextmenu/plugin.min.js HTTP/1.1" 200 893
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/table/plugin.min.js HTTP/1.1" 200 28172
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/paste/plugin.min.js HTTP/1.1" 200 14079
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/visualblocks/plugin.min.js HTTP/1.1" 200 1153
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/plugins/textcolor/plugin.min.js HTTP/1.1" 200 3768
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /alfresco/s/slingshot/profile/avatar/admin/thumbnail/avatar32?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1467
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/proxy/alfresco/slingshot/profile/avatar/admin/thumbnail/avatar32 HTTP/1.1" 200 1467
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/images/back-arrow.png HTTP/1.1" 200 360
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/sidebar-show-flat-16.png HTTP/1.1" 200 224
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/images/forward-arrow-16.png HTTP/1.1" 200 358
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/zoom-out-16.png HTTP/1.1" 200 156
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/zoom-in-16.png HTTP/1.1" 200 164
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/skins/lightgray/skin.min.css HTTP/1.1" 200 35114
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/present-16.png HTTP/1.1" 200 267
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/images/link-16.png HTTP/1.1" 200 448
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/modules/editors/tinymce/skins/lightgray/content.min.css HTTP/1.1" 200 1505
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/thumbnail-view-16.png HTTP/1.1" 200 427
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/highlight-all-off-16.png HTTP/1.1" 200 396
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/outline-view-16.png HTTP/1.1" 200 443
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/components/preview/images/case-sensitive-off-16.png HTTP/1.1" 200 375
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/noauth/1_0_101_10/defaults.js HTTP/1.1" 200 980
127.0.0.1 - - [28/Nov/2017:11:58:44 +0530] "GET /share/res/yui/tabview/tabview-min.js?v=2.9.0 HTTP/1.1" 200 10022
127.0.0.1 - - [28/Nov/2017:11:58:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:45 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:58:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:45 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:58:45 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:58:47 +0530] "GET /alfresco/s/api/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/content/thumbnails/pdf?c=force&noCache=1511850523783&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 17776
127.0.0.1 - - [28/Nov/2017:11:58:47 +0530] "GET /share/proxy/alfresco/api/node/workspace/SpacesStore/fa4f81f6-30a0-4b73-a2d6-6e41c53685ca/content/thumbnails/pdf?c=force&noCache=1511850523783 HTTP/1.1" 200 17776
127.0.0.1 - - [28/Nov/2017:11:58:48 +0530] "GET /share/res/components/preview/images/loading-icon.gif HTTP/1.1" 200 2545
127.0.0.1 - - [28/Nov/2017:11:59:00 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:59:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:59:00 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:59:00 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/pages/start-workflow.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:59:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-instances/start-workflow.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:59:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/template-types/org/alfresco/start-workflow.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:59:12 +0530] "GET /alfresco/s/remoteadm/has/alfresco/site-data/components/template.start-workflow.start-workflow.xml?s=sitestore&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 5
127.0.0.1 - - [28/Nov/2017:11:59:12 +0530] "GET /alfresco/s/api/people/admin/preferences?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 196
127.0.0.1 - - [28/Nov/2017:11:59:13 +0530] "GET /alfresco/s/api/workflow-definitions?exclude=jbpm$wcmwf:*,jbpm$wf:articleapproval,activiti$publishWebContent,jbpm$publishWebContent,jbpm$inwf:invitation-nominated,jbpm$imwf:invitation-moderated,activiti$activitiInvitationModerated,activiti$activitiInvitationNominated,activiti$activitiInvitationNominatedAddDirect,activiti$resetPassword&alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 3870
127.0.0.1 - - [28/Nov/2017:11:59:13 +0530] "POST /share/page/context/shared/start-workflow HTTP/1.1" 200 33032
127.0.0.1 - - [28/Nov/2017:11:59:13 +0530] "GET /share/service/modules/authenticated?noCache=1511850553820&a=user HTTP/1.1" 200 23
127.0.0.1 - - [28/Nov/2017:11:59:14 +0530] "GET /share/noauth/1_0_101_10/defaults.js HTTP/1.1" 200 980
127.0.0.1 - - [28/Nov/2017:11:59:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:59:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:15 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:59:15 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:59:15 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:20 +0530] "POST /alfresco/s/api/formdefinitions?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1851
127.0.0.1 - - [28/Nov/2017:11:59:20 +0530] "GET /share/service/components/form?htmlid=template_x002e_start-workflow_x002e_start-workflow_x0023_default-startWorkflowForm-alf-id1&itemKind=workflow&itemId=activiti%24PublishPapers&mode=create&submitType=json&showCaption=true&formUI=true&showCancelButton=true&destination=workspace%3A%2F%2FSpacesStore%2Fe684c959-f9b4-422e-a963-a71010eb98e4 HTTP/1.1" 200 21080
127.0.0.1 - - [28/Nov/2017:11:59:20 +0530] "POST /alfresco/s/api/forms/picker/items?alf_ticket=TICKET_2949f4cafcb20ef78ae05a2c1c8e6487dfd718fa HTTP/1.1" 200 1115
127.0.0.1 - - [28/Nov/2017:11:59:20 +0530] "POST /share/proxy/alfresco/api/forms/picker/items HTTP/1.1" 200 1103
127.0.0.1 - - [28/Nov/2017:11:59:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245
127.0.0.1 - - [28/Nov/2017:11:59:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:30 +0530] "GET /alfresco/service/api/solr/aclchangesets?fromId=0&toId=2000&maxResults=1 HTTP/1.1" 200 236
127.0.0.1 - - [28/Nov/2017:11:59:30 +0530] "POST /alfresco/service/api/solr/modelsdiff HTTP/1.1" 200 37
127.0.0.1 - - [28/Nov/2017:11:59:30 +0530] "GET /alfresco/service/api/solr/transactions?minTxnId=0&maxTxnId=2000&maxResults=1 HTTP/1.1" 200 245

kalpesh_c2
Senior Member

Re: Workflow failed to start

Hi Yuvaraj D
We need to check the problem why your workflow is not starting so that get the logs from location of log file : <alfresco-home>/alfresco.log file

yuva
Active Member

Re: Workflow failed to start

I am facing problem with this alfresco.log, in the alfresco-home folder I can see 4 files with a name alfresco.log but all of these files type is 2017-10-05 File, 2017-10-07 File,2017-10-09 File,2017-10-11 File. I can't get the today's log file.

Kalpesh Patel can you please tell me how can i solve this problem to get the current logs in alfresco.log file.