2
1
0

Hi all,

for executing ./demo.sh init in robot vm .

I edited /opt/eteshare/config/integration_robot_properties.py for keystone endpoint as "https://public.fuel.local:5000"  added in /etc/hosts in container

set  verify=False in var/opt/OpenECOMP_ETE/robot/resources/openstack/keystone_interface.robot

After executing ./demo.sh init, its failing with ssl error 


Initialize Customer And Models | FAIL |
SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)

attached is the log file


Is there any workaround to bypass the certificate or pass the certificate.



Thanks,

Vikram

|

<msg timestamp="20170425 23:02:12.628" level="TRACE">Arguments: [ 'keystone' | b'https://public.fuel.local:5000' | verify='False' ]</msg>
<msg timestamp="20170425 23:02:12.628" level="INFO">Creating Session using : alias=keystone, url=https://public.fuel.local:5000, headers={},                     cookies=None, auth=None, timeout=None, proxies=None, verify=False,                     debug=0 </msg>
<msg timestamp="20170425 23:02:12.628" level="DEBUG">Creating session: keystone</msg>






<msg timestamp="20170425 23:02:12.639" level="TRACE">Arguments: [ 'keystone' | '/v2.0/tokens' | data={'auth': {'passwordCredentials': {'password': 'admin', 'username': 'admin'}, 'tenantName': 'ONAP-demo'}} | headers={'Accept': 'application/json', 'Content-Type': 'application/json', 'X-FromAppId': 'robot-ete', 'X-TransactionId': 'robot-ete-b5dd8a41-7fae-4038-baee-5a3c6b87036f'} ]</msg>
<msg timestamp="20170425 23:02:12.661" level="FAIL">SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)</msg>
<msg timestamp="20170425 23:02:12.661" level="DEBUG">Traceback (most recent call last):
  File "/var/opt/OpenECOMP_ETE/robot/library/RequestsLibrary/RequestsKeywords.py", line 421, in post_request
    timeout)
  File "/var/opt/OpenECOMP_ETE/robot/library/RequestsLibrary/RequestsKeywords.py", line 871, in _body_request
    cookies=self.cookies)
  File "/var/opt/OpenECOMP_ETE/robot/library/requests/sessions.py", line 535, in post
    return self.request('POST', url, data=data, json=json, **kwargs)
  File "/var/opt/OpenECOMP_ETE/robot/library/requests/sessions.py", line 488, in request
    resp = self.send(prep, **send_kwargs)
  File "/var/opt/OpenECOMP_ETE/robot/library/requests/sessions.py", line 609, in send
    r = adapter.send(request, **kwargs)
  File "/var/opt/OpenECOMP_ETE/robot/library/requests/adapters.py", line 497, in send
    raise SSLError(e, request=request)</msg>
    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      It is very hard to check ssl issues nonlocally. I think you should revert your changes back on the etc/hosts in the container as no one else has had to do that.

      1. vikram mukundamgari

        Hello Daniel,

        Thanks for the reply ,

        as i don't want to stuck with ssl issue , I disabled it in the OpenStack environment and edited the Keystone endpoint in integration_robot_properties.py.

        after i run ./demo.sh init i am getting the below error .

        Initialize Customer And Models | FAIL |
        '500' does not match '^(201|200)$'


        attached is the log file log.html


        Thanks,

        Vikram.

      2. Daniel Rose

        Manisha Aggarwal can you check this AAI error?

      3. Venkata Harish Kajur

        Hi Vikram,


        Chef part seems to be ok that chef zero object not found is not an error.

        It seems like the problem seems to be aai docker container unable to reach the hbase container.

        Can you check if the hostname of the server that is running the hbase docker container is configured to be this:

        aai.hbase.simpledemo.openecomp.org

        Trying ping aai.hbase.simpledemo.openecomp.org from insider the aai docker container into it by running

        Also the hostname of the aai docker container should be aai.api.simpledemo.openecomp.org

        Can you also post the logs of the hbase docker container?

      4. vikram mukundamgari

        Hello Venkata Harish Kajur ,

        Thank you for the reply,

        below are the logs for hbase,



        root@vm1-aai:~# docker logs hbase-1.2.3
        Starting namenodes on [vm1-aai]
        vm1-aai: chown: missing operand after '/opt/hadoop-2.7.2/logs'
        vm1-aai: Try 'chown --help' for more information.
        vm1-aai: starting namenode, logging to /opt/hadoop-2.7.2/logs/hadoop--namenode-vm1-aai.out
        localhost: starting datanode, logging to /opt/hadoop-2.7.2/logs/hadoop--datanode-vm1-aai.out
        Starting secondary namenodes [0.0.0.0]
        0.0.0.0: starting secondarynamenode, logging to /opt/hadoop-2.7.2/logs/hadoop--secondarynamenode-vm1-aai.out
        starting zookeeper, logging to /opt/hbase-1.2.3/bin/../logs/hbase--zookeeper-vm1-aai.out
        java.io.IOException: Could not find my address: localhost in list of ZooKeeper quorum servers
        at org.apache.hadoop.hbase.zookeeper.HQuorumPeer.writeMyID(HQuorumPeer.java:149)
        at org.apache.hadoop.hbase.zookeeper.HQuorumPeer.main(HQuorumPeer.java:70)
        starting master, logging to /opt/hbase-1.2.3/bin/../logs/hbase--master-vm1-aai.out
        starting regionserver, logging to /opt/hbase-1.2.3/bin/../logs/hbase--1-regionserver-vm1-aai.out



        Also i am able to ping aai.api.simpledemo.openecomp.org  and aai.habse.simpledemo.openecomp.org . from docker containers and and from hostvm .


        Thanks,

        VIkram

      5. Venkata Harish Kajur

        Hi Vikram.


        It looks like there is some issue going on with your hbase container at startup.

        Lets verify if your hbase is started up properly.

        Can you try running from the host machine and inside aai docker container:

        nc -z -v aai.habse.simpledemo.openecomp.org 2181

        You should see something like this:

        Connection to aai.habse.simpledemo.openecomp.org 2181 port [tcp/*] succeeded!

        If that's not what you see, can you check to see if in your /etc/hosts has an entry like this: 

        127.0.0.1 localhost some other hostnames

        If you don't see the localhost in that entry, can you stop and remove your hbase docker container and restart it.

        Thanks,

        Venkata Harish K Kajur

      6. vikram mukundamgari

        Hello Venkata Harish Kajur,


         connection to aai.hbase.simpledemo.openecomp.org failed.

        root@vm1-aai:~# nc -z -v aai.hbase.simpledemo.openecomp.org 2181
        nc: connect to aai.hbase.simpledemo.openecomp.org port 2181 (tcp) failed: Connection refused

        root@vm1-aai:~# cat /etc/hosts
        127.0.0.1 localhost

        # The following lines are desirable for IPv6 capable hosts
        ::1 ip6-localhost ip6-loopback
        fe00::0 ip6-localnet
        ff00::0 ip6-mcastprefix
        ff02::1 ip6-allnodes
        ff02::2 ip6-allrouters
        ff02::3 ip6-allhosts
        127.0.0.1 vm1-aai


        Thanks,

        Vikram

      7. Venkata Harish Kajur

        Hi Vikram,


        Can you try stop your hbase container and restarting like this:

        docker run -itd --net=host --hostname localhost --name=hbase wc9368/aai-hbase-1.2.3


        This will force the docker container to use the hostname localhost.

        Can you let me know if this fixes that issue?


        Thanks,

        Venkata Harish K Kajur 

      8. vikram mukundamgari

        Hi Venkata Harish,

        after following the above steps you mentioned 


        root@vm1-aai:~# docker run -itd --net=host --hostname localhost --name=hbase wc9368/aai-hbase-1.2.3
        Unable to find image 'wc9368/aai-hbase-1.2.3:latest' locally
        latest: Pulling from wc9368/aai-hbase-1.2.3
        Digest: sha256:83b7a8f74f977dfbecb0ae679a08cfb0498d0d7c927176644ab6ef16915e5f8f
        Status: Downloaded newer image for wc9368/aai-hbase-1.2.3:latest
        91696daedc1fcb54e8fbfde995be98504d8225f0bcf85e23f776f5971ceeba49


        root@vm1-aai:~# docker ps -a
        CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
        91696daedc1f wc9368/aai-hbase-1.2.3 "/bin/bash /opt/en..." 43 minutes ago Up 43 minutes hbase
        b9bda8023f53 nexus3.onap.org:10001/openecomp/model-loader:1.0-STAGING-latest "/bin/sh -c /opt/j..." 5 hours ago Up 5 hours model-loader-service
        0c373415337c nexus3.onap.org:10001/openecomp/ajsc-aai:1.0-STAGING-latest "/bin/sh -c ./star..." 5 hours ago Up 5 hours aai-service
        6c270fbcd5a8 aaidocker/aai-hbase-1.2.3 "/bin/bash /opt/en..." 5 hours ago Exited (137) About an hour ago hbase-1.2.3


        Connection to aai.habse.simpledemo.openecomp.org 2181 port is succeeded.


         but still ./demo.sh init in robot vm fails with same error .

        '500' does not match '^(201|200)$'


        do i need to make any changes for aai-service contianer or the host machine


        Thanks,

        Vikram

      9. Venkata Harish Kajur

        Hi Vikram,


        Did you stop and remove the aai docker container and then start the aai docker container again.

        I noticed that the aai docker container wasn't stopped and restarted like the hbase container.

        docker stop aai-service && docker rm aai-service
        docker run -itd --name=aai-service --net=host -e AAI_REPO_PATH=r/aai -e AAI_CHEF_ENV=simpledemo -e AAI_CHEF_LOC=/var/chef/aai-data/environments -e docker_gitbranch=master nexus3.onap.org:10001/openecomp/ajsc-aai:1.0-STAGING-latest   

        After you restarted the aai docker container, check if you are still seeing the aai connecting to hbase docker?


        Thanks,

        Venkata Harish K Kajur

      10. vikram mukundamgari

        Hello Venkata Harish Kajur,

        seems like there are some arguments missing in the docker run command for creating new aai service container.

        if you don't mind could you please resend the complete command. 

        Is it the same as in aai_vm_init.sh for aai-service.


        Thanks,

        Vikram

      11. Venkata Harish Kajur

        Oh sorry about that:

        I think these are the only ones you need if you are using the latest version of the docker image 1.0-STAGING-latest

        docker run -itd \
          --name=aai-service \
          --net=host \
          -e AAI_REPO_PATH=r/aai \
          -e AAI_CHEF_ENV=simpledemo \
          -e AAI_CHEF_LOC=/var/chef/aai-data/environments \
          -e docker_gitbranch=master \
           nexus3.onap.org:10001/openecomp/ajsc-aai:1.0-STAGING-latest

        But if you were using an older version of the snapshot, then you need to provide credentials to the gerrit because it wasn't public back then.

        docker run -itd \
          --name=aai-service \
          --net=host \
          -e GITLAB_CERTNAME=gerrit.onap.org \
          -e GITLAB_USERNAME=${GITLAB_USERNAME} \
          -e GITLAB_PASSWORD=${GITLAB_PASSWORD} \
          -e AAI_REPO_PATH=r/aai \
          -e AAI_CHEF_ENV=simpledemo \
          -e AAI_CHEF_LOC=/var/chef/aai-data/environments \
          -e docker_gitbranch=master \
           nexus3.onap.org:10001/openecomp/ajsc-aai:1.0-STAGING-latest

        Make sure to ${GITLAB_USERNAME} and ${GITLAB_PASSWORD} with valid values


        Thanks,

        Venkata Harish K Kajur


      12. Kiran Kamineni

        Thank you for your help.

        At this point, I am seeing the following messages for putTool.sh in the updateQueryData.sh.log files:

        Begin putTool for named-query getVserver-1.0.json
        
        Thu May 4 10:44:47 UTC 2017    Starting /opt/app/aai/scripts/putTool.sh
        ---> Loading v8 in aaiResourceContainer
        ---> Loading v8 in dbMapsContainer
        apiVersion=v8
        class=org.openecomp.aai.domain.yang.NamedQuery
        path=service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066
        url=https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066
        Getting the resource...: https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066
        GET service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066 returned AAI_7116
        
        details Get with status=404, url=https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066
        
         PUT succeeded
        
        
        Done!!
        Thu May 4 10:44:51 UTC 2017    Done /opt/app/aai/scripts/putTool.sh
        End putTool for named-query getVserver-1.0.json
        
        
        


        When I run demo.sh init from the robot-vm, I get the following error:


        ===================================================

        Initialize Customer And Models                                        | FAIL |

        '404' does not match '^(201|412)$'

        ------------------------------------------------------------------------------


      13. vikram mukundamgari

        Hi Venkata Harish,

        I created a new onap demo stack and made changes to the containers in the aai vm as described above and also connection to aai.habse.simpledemo.openecomp.org succeeded. Then followed the tutorial for Onboarding and Distributing VSP.

        for creating a service instance executed ./demo.sh init  in robot vm 

        ./demo.sh init is failed with 404.

        Initialize Customer And Models | FAIL |
        '404' does not match '^(201|412)$'

        attached is the log.html


        Thanks,

        Vikram


      14. Venkata Harish Kajur

        Hi Vikram,


        Can you send me more information inside? I will not be able to determine what went wrong with that information.  Can you send me the logs inside the docker container, there should be a folder /opt/app/aai/logs/rest/ and in that folder, there should be multiple log files there. If you can send me the content inside there. That could be really helpful..

        Thanks,

        Venkata Harish K Kajur

      15. vikram mukundamgari

        Hello Venkata Harish,

        Below are the logs from  opt/app/aai/logs/rest

        Thanks for your time,

        Vikram

        aaiadmin@vm1-aai:/opt/app/aai/logs/rest$ cat error.log
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        Overriding type converter from: StaticMethodTypeConverter: public static java.io.InputStream org.apache.camel.component.http.HttpConverter.toInputStream(javax.servlet.http.HttpServletRequest,org.apache.camel.Exchange) throws java.io.IOException to: StaticMethodTypeConverter: public static java.io.InputStream org.apache.camel.component.http4.HttpConverter.toInputStream(javax.servlet.http.HttpServletRequest,org.apache.camel.Exchange) throws java.io.IOException
        Overriding type converter from: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletRequest org.apache.camel.component.http.HttpConverter.toServletRequest(org.apache.camel.Message) to: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletRequest org.apache.camel.component.http4.HttpConverter.toServletRequest(org.apache.camel.Message)
        Overriding type converter from: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletResponse org.apache.camel.component.http.HttpConverter.toServletResponse(org.apache.camel.Message) to: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletResponse org.apache.camel.component.http4.HttpConverter.toServletResponse(org.apache.camel.Message)
        Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
        Memory Usage for the Broker (1024 mb) is more than the maximum available for the JVM: 489 mb - resetting to 70% of maximum available: 342 mb
        aaiadmin@vm1-aai:/opt/app/aai/logs/rest$ cat audit.log
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        NMBS-VANDELAYSVC-0565: For user [ajsc-aai service], [{}] failed to import due to non-existent Context name
        Overriding type converter from: StaticMethodTypeConverter: public static java.io.InputStream org.apache.camel.component.http.HttpConverter.toInputStream(javax.servlet.http.HttpServletRequest,org.apache.camel.Exchange) throws java.io.IOException to: StaticMethodTypeConverter: public static java.io.InputStream org.apache.camel.component.http4.HttpConverter.toInputStream(javax.servlet.http.HttpServletRequest,org.apache.camel.Exchange) throws java.io.IOException
        Overriding type converter from: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletRequest org.apache.camel.component.http.HttpConverter.toServletRequest(org.apache.camel.Message) to: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletRequest org.apache.camel.component.http4.HttpConverter.toServletRequest(org.apache.camel.Message)
        Overriding type converter from: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletResponse org.apache.camel.component.http.HttpConverter.toServletResponse(org.apache.camel.Message) to: StaticMethodTypeConverter: public static javax.servlet.http.HttpServletResponse org.apache.camel.component.http4.HttpConverter.toServletResponse(org.apache.camel.Message)
        Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
        Memory Usage for the Broker (1024 mb) is more than the maximum available for the JVM: 489 mb - resetting to 70% of maximum available: 342 mb
        2017-05-04T00:36:37.222+0000|2017-05-04T00:36:37.594+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/6c092fb1-21b2-456b-9e01-67fb4de1896e|AAI-TOOLS|ERROR||||INFO||127.0.0.1|372|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:37.682+0000|2017-05-04T00:36:37.704+0000|daeb6a7e-3665-4a4f-8a9a-755c2eee4e2a||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/6c092fb1-21b2-456b-9e01-67fb4de1896e|AAI-TOOLS|ERROR||||INFO||127.0.0.1|22|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:38.054+0000|2017-05-04T00:36:38.998+0000|daeb6a7e-3665-4a4f-8a9a-755c2eee4e2a||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/6c092fb1-21b2-456b-9e01-67fb4de1896e|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|944|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:41.480+0000|2017-05-04T00:36:41.492+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/2a160989-b202-47dd-874b-4a0f275998f7|AAI-TOOLS|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:41.571+0000|2017-05-04T00:36:41.583+0000|7147c5a5-689d-4fc9-bd4b-b1e78e4122c2||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/2a160989-b202-47dd-874b-4a0f275998f7|AAI-TOOLS|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:41.933+0000|2017-05-04T00:36:42.647+0000|7147c5a5-689d-4fc9-bd4b-b1e78e4122c2||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/2a160989-b202-47dd-874b-4a0f275998f7|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|714|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:45.148+0000|2017-05-04T00:36:45.159+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/44e5cb1f-0938-41aa-b766-d4595109fe89|AAI-TOOLS|ERROR||||INFO||127.0.0.1|11|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:45.235+0000|2017-05-04T00:36:45.248+0000|705cc3a9-0f5a-4729-9b88-005b955f07ac||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/44e5cb1f-0938-41aa-b766-d4595109fe89|AAI-TOOLS|ERROR||||INFO||127.0.0.1|13|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:45.596+0000|2017-05-04T00:36:46.309+0000|705cc3a9-0f5a-4729-9b88-005b955f07ac||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/44e5cb1f-0938-41aa-b766-d4595109fe89|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|713|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:48.793+0000|2017-05-04T00:36:48.803+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d4df5c27-98a1-4812-a8aa-c17f055b7a3f|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:48.873+0000|2017-05-04T00:36:48.891+0000|f9938fdd-e6a9-4c55-a1f6-45c3bd2d48ec||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d4df5c27-98a1-4812-a8aa-c17f055b7a3f|AAI-TOOLS|ERROR||||INFO||127.0.0.1|18|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:49.233+0000|2017-05-04T00:36:49.937+0000|f9938fdd-e6a9-4c55-a1f6-45c3bd2d48ec||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d4df5c27-98a1-4812-a8aa-c17f055b7a3f|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|704|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:52.426+0000|2017-05-04T00:36:52.436+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/36200fb5-f251-4f5d-a520-7c5ad5c2cd4b|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:52.509+0000|2017-05-04T00:36:52.518+0000|c11fdb75-45cf-42ae-b03a-9ebd05a040bf||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/36200fb5-f251-4f5d-a520-7c5ad5c2cd4b|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:52.859+0000|2017-05-04T00:36:52.889+0000|c11fdb75-45cf-42ae-b03a-9ebd05a040bf||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/36200fb5-f251-4f5d-a520-7c5ad5c2cd4b|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|30|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:55.380+0000|2017-05-04T00:36:55.392+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/93a6166f-b3d5-4f06-b4ba-aed48d009ad9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:55.463+0000|2017-05-04T00:36:55.473+0000|c8defca6-603a-491f-8536-087e854de788||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/93a6166f-b3d5-4f06-b4ba-aed48d009ad9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:55.812+0000|2017-05-04T00:36:55.840+0000|c8defca6-603a-491f-8536-087e854de788||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/93a6166f-b3d5-4f06-b4ba-aed48d009ad9|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|28|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:36:58.295+0000|2017-05-04T00:36:58.304+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/fe578080-ce19-4604-8760-fc264fbb2565|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:58.375+0000|2017-05-04T00:36:58.384+0000|48b711ed-a3c3-4d4e-8c6e-1eeb7271a20f||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/fe578080-ce19-4604-8760-fc264fbb2565|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:36:58.730+0000|2017-05-04T00:36:58.757+0000|48b711ed-a3c3-4d4e-8c6e-1eeb7271a20f||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/fe578080-ce19-4604-8760-fc264fbb2565|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|27|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:01.248+0000|2017-05-04T00:37:01.265+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f6a038c2-820c-42ba-8c2b-375e24e8f932|AAI-TOOLS|ERROR||||INFO||127.0.0.1|17|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:01.334+0000|2017-05-04T00:37:01.343+0000|7f327aab-28e2-440d-ae69-4fa57b44f665||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f6a038c2-820c-42ba-8c2b-375e24e8f932|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:01.677+0000|2017-05-04T00:37:01.703+0000|7f327aab-28e2-440d-ae69-4fa57b44f665||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f6a038c2-820c-42ba-8c2b-375e24e8f932|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|26|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:04.194+0000|2017-05-04T00:37:04.203+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a32613fd-18b9-459e-aab8-fffb3912966a|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:04.276+0000|2017-05-04T00:37:04.295+0000|fe410b95-d020-4dc3-9176-f4d37843a509||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a32613fd-18b9-459e-aab8-fffb3912966a|AAI-TOOLS|ERROR||||INFO||127.0.0.1|19|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:04.634+0000|2017-05-04T00:37:05.342+0000|fe410b95-d020-4dc3-9176-f4d37843a509||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a32613fd-18b9-459e-aab8-fffb3912966a|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|708|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:07.805+0000|2017-05-04T00:37:07.814+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/41e76b6f-1e06-4fd4-82cd-81c50fc4574b|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:07.884+0000|2017-05-04T00:37:07.893+0000|72f05bf8-5499-4833-bf39-54386332ab44||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/41e76b6f-1e06-4fd4-82cd-81c50fc4574b|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:08.235+0000|2017-05-04T00:37:08.264+0000|72f05bf8-5499-4833-bf39-54386332ab44||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/41e76b6f-1e06-4fd4-82cd-81c50fc4574b|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|29|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:10.800+0000|2017-05-04T00:37:10.809+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d040621d-541a-477b-bb1b-a2b61b14e295|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:10.879+0000|2017-05-04T00:37:10.888+0000|f34e529a-8e96-477b-a993-7b97fbf7ba98||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d040621d-541a-477b-bb1b-a2b61b14e295|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:11.232+0000|2017-05-04T00:37:11.264+0000|f34e529a-8e96-477b-a993-7b97fbf7ba98||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d040621d-541a-477b-bb1b-a2b61b14e295|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|32|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:13.775+0000|2017-05-04T00:37:13.784+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9111f20f-e680-4001-b83f-19a2fc23bfc1|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:13.861+0000|2017-05-04T00:37:13.869+0000|4fea8d16-eff5-451c-a960-83bd74c1f59b||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9111f20f-e680-4001-b83f-19a2fc23bfc1|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:14.213+0000|2017-05-04T00:37:14.908+0000|4fea8d16-eff5-451c-a960-83bd74c1f59b||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9111f20f-e680-4001-b83f-19a2fc23bfc1|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|695|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:17.365+0000|2017-05-04T00:37:17.373+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/ce95f7c3-b61b-4758-ae9e-7e943b1c103d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:17.445+0000|2017-05-04T00:37:17.453+0000|97abc72e-f175-4a4a-bbc5-b36fc4a73642||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/ce95f7c3-b61b-4758-ae9e-7e943b1c103d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:17.799+0000|2017-05-04T00:37:18.514+0000|97abc72e-f175-4a4a-bbc5-b36fc4a73642||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/ce95f7c3-b61b-4758-ae9e-7e943b1c103d|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|715|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:20.971+0000|2017-05-04T00:37:20.983+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a1481a38-f8ba-4ae4-bdf1-06c2c6af4c54|AAI-TOOLS|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:21.064+0000|2017-05-04T00:37:21.072+0000|dc51048f-4944-4b9e-a0d2-1ed0b899a884||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a1481a38-f8ba-4ae4-bdf1-06c2c6af4c54|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:21.419+0000|2017-05-04T00:37:21.446+0000|dc51048f-4944-4b9e-a0d2-1ed0b899a884||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a1481a38-f8ba-4ae4-bdf1-06c2c6af4c54|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|27|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:23.943+0000|2017-05-04T00:37:23.952+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d2cdb2d0-fc1f-4a57-a89e-591b1c4e3754|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:24.027+0000|2017-05-04T00:37:24.036+0000|ff90c8ac-0b7f-4fd5-a4e6-48239f7a7b46||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d2cdb2d0-fc1f-4a57-a89e-591b1c4e3754|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:24.392+0000|2017-05-04T00:37:24.423+0000|ff90c8ac-0b7f-4fd5-a4e6-48239f7a7b46||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/d2cdb2d0-fc1f-4a57-a89e-591b1c4e3754|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|31|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:26.897+0000|2017-05-04T00:37:26.906+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9c523936-95b4-4d7f-9f53-6bdfe0cf2c05|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:26.985+0000|2017-05-04T00:37:26.994+0000|2c6aaa0b-8ede-4ca0-80a8-a3f0aa74543a||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9c523936-95b4-4d7f-9f53-6bdfe0cf2c05|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:27.368+0000|2017-05-04T00:37:28.072+0000|2c6aaa0b-8ede-4ca0-80a8-a3f0aa74543a||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/9c523936-95b4-4d7f-9f53-6bdfe0cf2c05|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|704|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:30.549+0000|2017-05-04T00:37:30.558+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/e9f1fa7d-c839-418a-9601-03dc0d2ad687|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:30.642+0000|2017-05-04T00:37:30.650+0000|4e7d0878-350b-4dd7-abdc-441d227d8adb||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/e9f1fa7d-c839-418a-9601-03dc0d2ad687|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:30.978+0000|2017-05-04T00:37:31.011+0000|4e7d0878-350b-4dd7-abdc-441d227d8adb||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/e9f1fa7d-c839-418a-9601-03dc0d2ad687|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|33|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:33.493+0000|2017-05-04T00:37:33.502+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/72f0d495-bc27-4653-9e1a-eef76bd34bc9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:33.575+0000|2017-05-04T00:37:33.583+0000|a07a1086-1b9f-4639-8bb1-2ec6ad071160||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/72f0d495-bc27-4653-9e1a-eef76bd34bc9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:33.927+0000|2017-05-04T00:37:33.956+0000|a07a1086-1b9f-4639-8bb1-2ec6ad071160||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/72f0d495-bc27-4653-9e1a-eef76bd34bc9|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|29|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:36.513+0000|2017-05-04T00:37:36.523+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c5171ae0-44fb-4c04-b482-d56702241a44|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:36.591+0000|2017-05-04T00:37:36.599+0000|f2e475d2-ed7f-41b4-84da-6a6e5e1371e6||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c5171ae0-44fb-4c04-b482-d56702241a44|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:36.935+0000|2017-05-04T00:37:36.959+0000|f2e475d2-ed7f-41b4-84da-6a6e5e1371e6||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c5171ae0-44fb-4c04-b482-d56702241a44|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|24|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:39.428+0000|2017-05-04T00:37:39.437+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/46b92144-923a-4d20-b85a-3cbd847668a9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:39.512+0000|2017-05-04T00:37:39.521+0000|3ba478fd-df0d-4a56-8435-eb8509336b1b||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/46b92144-923a-4d20-b85a-3cbd847668a9|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:39.854+0000|2017-05-04T00:37:39.880+0000|3ba478fd-df0d-4a56-8435-eb8509336b1b||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/46b92144-923a-4d20-b85a-3cbd847668a9|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|26|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:42.410+0000|2017-05-04T00:37:42.420+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5e68299a-79f2-4bfb-8fbc-2bae877a2459|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:42.490+0000|2017-05-04T00:37:42.498+0000|f6daf28b-fdba-4511-883a-a49bf79cf587||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5e68299a-79f2-4bfb-8fbc-2bae877a2459|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:42.839+0000|2017-05-04T00:37:42.862+0000|f6daf28b-fdba-4511-883a-a49bf79cf587||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5e68299a-79f2-4bfb-8fbc-2bae877a2459|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|23|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:45.440+0000|2017-05-04T00:37:45.449+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/962a7c8b-687f-4d32-a775-fe098e214bcd|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:45.531+0000|2017-05-04T00:37:45.540+0000|66a654d5-a428-4707-9a6d-2f718c67e07a||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/962a7c8b-687f-4d32-a775-fe098e214bcd|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:45.898+0000|2017-05-04T00:37:46.595+0000|66a654d5-a428-4707-9a6d-2f718c67e07a||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/962a7c8b-687f-4d32-a775-fe098e214bcd|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|697|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:49.062+0000|2017-05-04T00:37:49.071+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f902a6bc-6be4-4fe5-8458-a6ec0056b374|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:49.152+0000|2017-05-04T00:37:49.161+0000|6e2c5eea-a595-414c-a39f-e42296bec485||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f902a6bc-6be4-4fe5-8458-a6ec0056b374|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:49.514+0000|2017-05-04T00:37:49.538+0000|6e2c5eea-a595-414c-a39f-e42296bec485||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/f902a6bc-6be4-4fe5-8458-a6ec0056b374|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|24|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:52.061+0000|2017-05-04T00:37:52.070+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/abcc54bc-bb74-49dc-9043-7f7171707545|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:52.147+0000|2017-05-04T00:37:52.156+0000|42030466-a8f9-444b-91fc-548fc24ecd86||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/abcc54bc-bb74-49dc-9043-7f7171707545|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:52.511+0000|2017-05-04T00:37:52.534+0000|42030466-a8f9-444b-91fc-548fc24ecd86||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/abcc54bc-bb74-49dc-9043-7f7171707545|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|23|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:54.997+0000|2017-05-04T00:37:55.008+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c00563ae-812b-4e62-8330-7c4d0f47088a|AAI-TOOLS|ERROR||||INFO||127.0.0.1|11|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:55.090+0000|2017-05-04T00:37:55.099+0000|a743f499-a798-48b9-995a-f62b15dc0fd0||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c00563ae-812b-4e62-8330-7c4d0f47088a|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:55.441+0000|2017-05-04T00:37:55.464+0000|a743f499-a798-48b9-995a-f62b15dc0fd0||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/c00563ae-812b-4e62-8330-7c4d0f47088a|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|23|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:37:57.925+0000|2017-05-04T00:37:57.933+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/257d88a5-a269-4c35-944f-aca04fbdb791|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:58.006+0000|2017-05-04T00:37:58.016+0000|ada54b14-7c4c-45aa-a5e6-e17cfac82309||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/257d88a5-a269-4c35-944f-aca04fbdb791|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:37:58.350+0000|2017-05-04T00:37:58.376+0000|ada54b14-7c4c-45aa-a5e6-e17cfac82309||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/257d88a5-a269-4c35-944f-aca04fbdb791|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|26|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:00.905+0000|2017-05-04T00:38:00.913+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5761e0a7-c6df-4d8a-9ebd-b8f445054dec|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:00.993+0000|2017-05-04T00:38:01.003+0000|3c8955a9-a799-445c-8e27-d25a5e9854a8||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5761e0a7-c6df-4d8a-9ebd-b8f445054dec|AAI-TOOLS|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:01.348+0000|2017-05-04T00:38:01.375+0000|3c8955a9-a799-445c-8e27-d25a5e9854a8||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5761e0a7-c6df-4d8a-9ebd-b8f445054dec|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|27|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:03.855+0000|2017-05-04T00:38:03.864+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/0fbe2e8f-4d91-4415-a772-88387049b38d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:03.935+0000|2017-05-04T00:38:03.946+0000|988a7edf-9849-4c38-82f2-04d6db3b5e20||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/0fbe2e8f-4d91-4415-a772-88387049b38d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|11|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:04.273+0000|2017-05-04T00:38:04.297+0000|988a7edf-9849-4c38-82f2-04d6db3b5e20||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/0fbe2e8f-4d91-4415-a772-88387049b38d|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|24|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:06.753+0000|2017-05-04T00:38:06.760+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/99d44c90-1f61-4418-b9a6-56586bf38c79|AAI-TOOLS|ERROR||||INFO||127.0.0.1|7|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:06.838+0000|2017-05-04T00:38:06.847+0000|6816d629-0ac5-4547-b568-191fc9a76810||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/99d44c90-1f61-4418-b9a6-56586bf38c79|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:07.185+0000|2017-05-04T00:38:07.209+0000|6816d629-0ac5-4547-b568-191fc9a76810||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/99d44c90-1f61-4418-b9a6-56586bf38c79|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|24|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:09.727+0000|2017-05-04T00:38:09.735+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/8ecb2c5d-7176-4317-a255-26274edfdd53|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:09.812+0000|2017-05-04T00:38:09.819+0000|43d5b7a6-75fb-453d-b6b7-a14dfecb4822||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/8ecb2c5d-7176-4317-a255-26274edfdd53|AAI-TOOLS|ERROR||||INFO||127.0.0.1|7|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:10.159+0000|2017-05-04T00:38:10.184+0000|43d5b7a6-75fb-453d-b6b7-a14dfecb4822||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/8ecb2c5d-7176-4317-a255-26274edfdd53|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|25|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:12.699+0000|2017-05-04T00:38:12.720+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/4ff56a54-9e3f-46b7-a337-07a1d3c6b469|AAI-TOOLS|ERROR||||INFO||127.0.0.1|21|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:12.809+0000|2017-05-04T00:38:12.817+0000|6e23e5dd-f149-4e50-9eea-41acc7cb7b9a||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/4ff56a54-9e3f-46b7-a337-07a1d3c6b469|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:13.161+0000|2017-05-04T00:38:14.147+0000|6e23e5dd-f149-4e50-9eea-41acc7cb7b9a||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/4ff56a54-9e3f-46b7-a337-07a1d3c6b469|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|986|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:16.584+0000|2017-05-04T00:38:16.592+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/ed0a0f5b-cf79-4784-88b2-911cd726cd3d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:16.661+0000|2017-05-04T00:38:16.668+0000|13492fc2-0b0f-4484-a5e7-340afc195d1b||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/ed0a0f5b-cf79-4784-88b2-911cd726cd3d|AAI-TOOLS|ERROR||||INFO||127.0.0.1|7|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:16.990+0000|2017-05-04T00:38:17.187+0000|13492fc2-0b0f-4484-a5e7-340afc195d1b||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/ed0a0f5b-cf79-4784-88b2-911cd726cd3d|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|197|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:19.692+0000|2017-05-04T00:38:19.701+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/3fb4d3d3-36c1-4162-9fe9-3e2c68a9da81|AAI-TOOLS|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:19.776+0000|2017-05-04T00:38:19.784+0000|eb077c28-1f03-4fe2-b2f7-da1a6dc7dc2b||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/3fb4d3d3-36c1-4162-9fe9-3e2c68a9da81|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:20.103+0000|2017-05-04T00:38:20.244+0000|eb077c28-1f03-4fe2-b2f7-da1a6dc7dc2b||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/3fb4d3d3-36c1-4162-9fe9-3e2c68a9da81|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|141|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:22.814+0000|2017-05-04T00:38:22.822+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/5aaae840-ca96-4e5f-9308-58883564a80f|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:22.894+0000|2017-05-04T00:38:22.902+0000|87d624b5-e189-4605-8ea1-7f97979c9682||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/5aaae840-ca96-4e5f-9308-58883564a80f|AAI-TOOLS|ERROR||||INFO||127.0.0.1|8|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:23.251+0000|2017-05-04T00:38:23.444+0000|87d624b5-e189-4605-8ea1-7f97979c9682||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/5aaae840-ca96-4e5f-9308-58883564a80f|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|193|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T00:38:25.962+0000|2017-05-04T00:38:25.975+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066|AAI-TOOLS|ERROR||||INFO||127.0.0.1|13|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:26.066+0000|2017-05-04T00:38:26.073+0000|6b960403-625b-41d2-a6a7-248b5326f213||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066|AAI-TOOLS|ERROR||||INFO||127.0.0.1|7|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T00:38:26.400+0000|2017-05-04T00:38:26.569+0000|6b960403-625b-41d2-a6a7-248b5326f213||||REST PUT https://aai.api.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/named-queries/named-query/f199cb88-5e69-4b1f-93e0-6f257877d066|AAI-TOOLS|COMPLETE||||INFO||127.0.0.1|169|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:50.696+0000|2017-05-04T17:13:50.738+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/6959ec9b-aaba-3961-bd5d-b289fd20e2a5|ModelLoader|ERROR||||INFO||127.0.0.1|42|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:50.835+0000|2017-05-04T17:13:50.879+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/6959ec9b-aaba-3961-bd5d-b289fd20e2a5|ModelLoader|COMPLETE||||INFO||127.0.0.1|44|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:50.950+0000|2017-05-04T17:13:50.963+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/64d55e8c-9b36-3b6f-87af-8c728fd49f4e|ModelLoader|ERROR||||INFO||127.0.0.1|13|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.029+0000|2017-05-04T17:13:51.054+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/64d55e8c-9b36-3b6f-87af-8c728fd49f4e|ModelLoader|COMPLETE||||INFO||127.0.0.1|25|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.117+0000|2017-05-04T17:13:51.129+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a6ec4447-7fd0-3d97-91c1-d56d10b502b5|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.197+0000|2017-05-04T17:13:51.218+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/a6ec4447-7fd0-3d97-91c1-d56d10b502b5|ModelLoader|COMPLETE||||INFO||127.0.0.1|21|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.280+0000|2017-05-04T17:13:51.293+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5b09edef-52ad-3112-858e-e1367e7ad23a|ModelLoader|ERROR||||INFO||127.0.0.1|13|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.352+0000|2017-05-04T17:13:51.371+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5b09edef-52ad-3112-858e-e1367e7ad23a|ModelLoader|COMPLETE||||INFO||127.0.0.1|19|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.428+0000|2017-05-04T17:13:51.440+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/8c344b20-c80d-3077-9fcd-02fd9628ca40|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.499+0000|2017-05-04T17:13:51.519+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/8c344b20-c80d-3077-9fcd-02fd9628ca40|ModelLoader|COMPLETE||||INFO||127.0.0.1|20|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.585+0000|2017-05-04T17:13:51.595+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/29935d6e-dacc-37a3-a83c-6ac2bdca31dc|ModelLoader|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.658+0000|2017-05-04T17:13:51.678+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/29935d6e-dacc-37a3-a83c-6ac2bdca31dc|ModelLoader|COMPLETE||||INFO||127.0.0.1|20|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.742+0000|2017-05-04T17:13:51.756+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5301d6c9-0203-373e-bbbe-c56e6464487b|ModelLoader|ERROR||||INFO||127.0.0.1|14|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.816+0000|2017-05-04T17:13:51.846+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/5301d6c9-0203-373e-bbbe-c56e6464487b|ModelLoader|COMPLETE||||INFO||127.0.0.1|30|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:51.916+0000|2017-05-04T17:13:51.928+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/0058699e-6a49-3dfd-9a02-0f651ace1fd4|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:51.991+0000|2017-05-04T17:13:52.016+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/0058699e-6a49-3dfd-9a02-0f651ace1fd4|ModelLoader|COMPLETE||||INFO||127.0.0.1|25|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:52.074+0000|2017-05-04T17:13:52.086+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/755d6dce-0da9-3046-a957-dd27b68e4c21|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:52.153+0000|2017-05-04T17:13:52.174+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/755d6dce-0da9-3046-a957-dd27b68e4c21|ModelLoader|COMPLETE||||INFO||127.0.0.1|21|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:52.232+0000|2017-05-04T17:13:52.248+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/b45e47a6-4807-3c09-9c04-4ab88808f5d6|ModelLoader|ERROR||||INFO||127.0.0.1|16|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:52.310+0000|2017-05-04T17:13:52.332+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/b45e47a6-4807-3c09-9c04-4ab88808f5d6|ModelLoader|COMPLETE||||INFO||127.0.0.1|22|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:52.397+0000|2017-05-04T17:13:52.409+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/510c4244-75c0-424c-bdf5-8b0cfac5fdc7|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:52.468+0000|2017-05-04T17:13:52.629+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/510c4244-75c0-424c-bdf5-8b0cfac5fdc7|ModelLoader|COMPLETE||||INFO||127.0.0.1|161|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:52.691+0000|2017-05-04T17:13:52.703+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/72caa9e1-7d95-45bf-bc3a-b791cccc1066|ModelLoader|ERROR||||INFO||127.0.0.1|12|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:52.762+0000|2017-05-04T17:13:52.822+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/72caa9e1-7d95-45bf-bc3a-b791cccc1066|ModelLoader|COMPLETE||||INFO||127.0.0.1|60|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T17:13:52.881+0000|2017-05-04T17:13:52.892+0000|||||REST GET https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/53a06957-1175-4762-90ea-861299bc6221|ModelLoader|ERROR||||INFO||127.0.0.1|11|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T17:13:52.947+0000|2017-05-04T17:13:53.002+0000|||||REST PUT https://c1.vm1.aai.simpledemo.openecomp.org:8443/aai/v8/service-design-and-creation/models/model/53a06957-1175-4762-90ea-861299bc6221|ModelLoader|COMPLETE||||INFO||127.0.0.1|55|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T18:33:04.157+0000|2017-05-04T18:33:04.195+0000|5d75dc2e-d1ef-4292-a560-1344c2de575a||||REST GET https://10.0.1.1:8443/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/Rackspace/RegionOne/tenants|robot-ete|ERROR||||INFO||127.0.0.1|38|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T18:33:04.237+0000|2017-05-04T18:33:04.247+0000|1601fc13-c03c-457e-9071-d5e87d2efbf9||||REST GET https://10.0.1.1:8443/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/Rackspace/RegionOne|robot-ete|ERROR||||INFO||127.0.0.1|10|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T18:33:04.287+0000|2017-05-04T18:33:04.353+0000|f85ab9cc-9015-4d32-9bbb-9ee540930e2f||||REST PUT https://10.0.1.1:8443/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/Rackspace/RegionOne|robot-ete|COMPLETE||||INFO||127.0.0.1|66|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=201|
        2017-05-04T18:33:04.409+0000|2017-05-04T18:33:04.458+0000|46ce349f-6188-420e-b89f-2f9d2426d873||||REST PUT https://10.0.1.1:8443/aai/v8/business/customers/customer/Demonstration|robot-ete|ERROR||||INFO||127.0.0.1|49|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T18:52:33.384+0000|2017-05-04T18:52:33.393+0000|||||REST GET https://aai.api.simpledemo.openecomp.org:8443/aai/v8/business/customers?subscriber-type=INFRA&depth=0|VidAaiController|ERROR||||INFO||127.0.0.1|9|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
        2017-05-04T20:16:35.462+0000|2017-05-04T20:16:35.495+0000|ba3e5f68-3408-494a-9e3c-d61ba34f700c||||REST GET https://10.0.1.1:8443/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/Rackspace/RegionOne/tenants|robot-ete|COMPLETE||||INFO||127.0.0.1|33|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=200|
        2017-05-04T20:16:35.564+0000|2017-05-04T20:16:35.584+0000|c120ed93-87dc-4737-8360-5dcae06628db||||REST PUT https://10.0.1.1:8443/aai/v8/business/customers/customer/Demonstration|robot-ete|ERROR||||INFO||127.0.0.1|20|localhost||AAILogJAXRSOutInterceptor$LoggingCallback|||||||co=aairest::HTTP Response Code=404|
      16. vikram mukundamgari

        Venkata Harish Kajur , Kiran Kamineni

        Any suggestions or help is appreciated regarding this issue.


        Thanks,

        Vikram

      17. Venkata Harish Kajur

        Hi Vikram,


        Can you get the logs of /opt/aaihome/aaiadmin/log.out in the aai docker container?

        I am sorry for the late reply. I want to see if the application started up properly. From the rest logs, I am unable to determine what the problem could be. Having the /opt/aaihome/aaiadmin/log.out file will give a better picture of whats going on?

        Thanks,

        Venkata Harish K Kajur

      18. vikram mukundamgari

        Hello, Venkata Harish Kajur

        below are the logs that re repeatedly logged in the log.out file


        Thanks,

        Vikram



        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.
        Started fixed rate job dmaapAAIWorkloadProcessor
        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.
        Started fixed rate job dmaapAAIWorkloadProcessor
        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.
        Started fixed rate job dmaapAAIWorkloadProcessor
        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.
        Started fixed rate job dmaapAAIWorkloadProcessor
        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.
        Started fixed rate job dmaapAAIWorkloadProcessor
        aai.dmaap.workload.enableEventProcessing set to false no start on AAIWorkloadConsumer.

      19. Venkata Harish Kajur

        Hi Vikram,


        Can you post the whole log file? I want to see what happened at startup.


      20. vikram mukundamgari

        Hi Venkata Harish Kajur

        below attachment is the log.out file

        hope it helps in debugging the issue

         log.out


        Thanks,

        Vikram


      21. Venkata Harish Kajur

        Hi Vikram, 

        I checked and it was a data issue and this has been fixed. Can you try again and see if you still have this issue?

        Thanks,

        Harish

      22. vikram mukundamgari

        Hello Harish,

        finally was able to run ./demo.sh init successfully in  OpenStack environment (without SSL/TLS).

        Thank you for your time and support

        Thanks,

        Vikram


      CommentAdd your comment...