Re: [Axis2] Dont get example POJOGUIDESPRING to run

robertlazarski <[email protected]> Wed, 28 Oct 2020 17:53:15 -1000
Newsgroups gmane.text.xml.axis.user
Message-ID <CABpPLBWSY+8uL8GnLWR6t1XP_R-wcZqZ=UYYNw40psWiVPnZKg@mail.gmail.com>
In your log4j.properties file, try adding an absolute path which I expect
will give you an axis2.log at that location with some clues on why
WeatherSpringService.aar is having problems.

log4j.appender.LOGFILE.File=/var/lib/tomcat9/logs/axis2.log

Also, please paste the contents of the WeatherSpringService.aar file, you
can decompress it like so:

jar xf WeatherSpringService.aar



On Wed, Oct 28, 2020 at 1:19 PM Daniel Otto <[email protected]>
wrote:

> *1)* I have an axis2.war/WEB-INF/classes/log4j.properties file:
>
> #
> # Licensed to the Apache Software Foundation (ASF) under one
> # or more contributor license agreements. See the NOTICE file
> # distributed with this work for additional information
> # regarding copyright ownership. The ASF licenses this file
> # to you under the Apache License, Version 2.0 (the
> # "License"); you may not use this file except in compliance
> # with the License. You may obtain a copy of the License at
> #
> # http://www.apache.org/licenses/LICENSE-2.0
> #
> # Unless required by applicable law or agreed to in writing,
> # software distributed under the License is distributed on an
> # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
> # KIND, either express or implied. See the License for the
> # specific language governing permissions and limitations
> # under the License.
> #
>
> # Set root category priority to INFO and its only appender to CONSOLE.
> log4j.rootCategory=INFO, CONSOLE
> #log4j.rootCategory=INFO, CONSOLE, LOGFILE
>
> # Set the enterprise logger priority to FATAL
> log4j.logger.org.apache.axis2.enterprise=FATAL
> log4j.logger.de.hunsicker.jalopy.io=FATAL
> log4j.logger.httpclient.wire.header=FATAL
> log4j.logger.org.apache.commons.httpclient=FATAL
>
> # CONSOLE is set to be a ConsoleAppender using a PatternLayout.
> log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
> log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
> log4j.appender.CONSOLE.layout.ConversionPattern=[%p] %m%n
>
> # LOGFILE is set to be a File appender using a PatternLayout.
> log4j.appender.LOGFILE=org.apache.log4j.FileAppender
> log4j.appender.LOGFILE.File=axis2.log
> log4j.appender.LOGFILE.Append=true
> log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
> log4j.appender.LOGFILE.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n
>
>
> *2)* When I click on the link, the following message shown up:
>
> [image: linkInServiceList.png]
>
>
>
> *3)* You should have an axis2.log.
> Like this?
>
> When I type ant rpc.client in the directory
> $AXIS2_HOME/samples/pojoguidespring/ to run the client, the following error
> appears:
>
> Buildfile: /home/daniel/axis2-1.7.9/samples/pojoguidespring/build.xml
>
> rpc.client:
>
> clean:
>    [delete] Deleting directory
> /home/daniel/axis2-1.7.9/samples/pojoguidespring/target
>
> prepare:
>     [mkdir] Created dir:
> /home/daniel/axis2-1.7.9/samples/pojoguidespring/target
>     [mkdir] Created dir:
> /home/daniel/axis2-1.7.9/samples/pojoguidespring/target/classes
>     [mkdir] Created dir:
> /home/daniel/axis2-1.7.9/samples/pojoguidespring/target/classes/META-INF
>
> checkSpringJarAvailability:
>
> download.jars:
>
> rpc.client.compile:
>     [javac] /home/daniel/axis2-1.7.9/samples/pojoguidespring/build.xml:95:
> warning: 'includeantruntime' was not set, defaulting to
> build.sysclasspath=last; set to false for repeatable builds
>     [javac] Compiling 1 source file to
> /home/daniel/axis2-1.7.9/samples/pojoguidespring/target/classes
>
> rpc.client.run:
>      [echo] /home/daniel/axis2-1.7.9/samples/pojoguidespring/build.xml
>      [java] log4j:WARN No appenders could be found for logger
> (org.apache.axis2.context.AbstractContext).
>      [java] log4j:WARN Please initialize the log4j system properly.
>      [java] Exception in thread "main" org.apache.axis2.AxisFault: The
> service cannot be found for the endpoint reference (EPR)
> http://localhost:8080/axis2/services/WeatherSpringService
>      [java] at
> org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:508)
>      [java] at
> org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:368)
>      [java] at
> org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:414)
>      [java] at
> org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:225)
>      [java] at
> org.apache.axis2.client.OperationClient.execute(OperationClient.java:150)
>      [java] at
> org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:533)
>      [java] at
> org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:509)
>      [java] at
> org.apache.axis2.rpc.client.RPCServiceClient.invokeBlocking(RPCServiceClient.java:101)
>      [java] at
> client.WeatherSpringRPCClient.main(WeatherSpringRPCClient.java:51)
>      [java] Java Result: 1
>
> BUILD SUCCESSFUL
> Total time: 3 seconds
>
> Am Do., 29. Okt. 2020 um 00:04 Uhr schrieb robertlazarski <
> [email protected]>:
>
>> No obvious errors there. You should have an axis2.log. You should have an
>> axis2.war/WEB-INF/classes/log4j.properties file.
>>
>> You are looking for problems with the WeatherSpringService.aar.
>>
>> When you go to http://localhost:8080/axis2/services/listServices , do
>> you get an error when clicking the url on the faulty service?
>>
>> On Wed, Oct 28, 2020 at 10:59 AM Daniel Otto <[email protected]>
>> wrote:
>>
>>> There it is:
>>>
>>> catalina.2020-10-28.log:28-Oct-2020 10:45:41.906 INFO
>>> [Catalina-utility-1] org.apache.catalina.startup.HostConfig.deployWAR
>>> Deploying web application archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 10:45:44.598 INFO
>>> [Catalina-utility-1] org.apache.catalina.startup.HostConfig.deployWAR
>>> Deployment of web application archive [/var/lib/tomcat9/webapps/axis2.war]
>>> has finished in [2,691] ms
>>> catalina.2020-10-28.log:28-Oct-2020 19:57:46.135 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 19:57:51.581 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>> [5,446] ms
>>> catalina.2020-10-28.log:28-Oct-2020 20:13:52.954 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 20:13:57.109 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>> [4,155] ms
>>> catalina.2020-10-28.log:28-Oct-2020 20:20:34.339 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 20:20:36.190 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>> [1,851] ms
>>> catalina.2020-10-28.log:28-Oct-2020 20:55:50.054 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 20:55:51.911 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>> [1,857] ms
>>> catalina.2020-10-28.log:28-Oct-2020 21:55:03.591 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>> catalina.2020-10-28.log:28-Oct-2020 21:55:05.396 INFO [main]
>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>> [1,804] ms
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:10:45:52
>>> +0100] "GET /axis2 HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:10:45:53
>>> +0100] "GET /axis2/ HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:10:45:53
>>> +0100] "GET /axis2/axis2-web/css/axis-style.css HTTP/1.1" 200 1580
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:10:45:53
>>> +0100] "GET /axis2/axis2-web/images/asf-logo.gif HTTP/1.1" 200 5866
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:10:45:53
>>> +0100] "GET /axis2/axis2-web/images/axis_l.jpg HTTP/1.1" 200 12340
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:02:15
>>> +0100] "GET /axis2/ HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:02:23
>>> +0100] "GET /axis2/axis2-admin/ HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:02:23
>>> +0100] "GET /axis2/axis2-admin/welcome HTTP/1.1" 200 5598
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:03:01
>>> +0100] "POST /axis2/axis2-admin/login HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:03:01
>>> +0100] "GET
>>> /axis2/axis2-admin/index;jsessionid=89A655FD5072682467E310422156C369
>>> HTTP/1.1" 200 8282
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:03:09
>>> +0100] "GET /axis2/axis2-admin/upload HTTP/1.1" 200 9168
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:03:59
>>> +0100] "POST
>>> /axis2/axis2-admin/doUpload?token=8919EB75F64F16D2106D137748E1654E
>>> HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:03:59
>>> +0100] "GET
>>> /axis2/axis2-admin/upload?status=279effca-9d0c-4060-bde4-1b5e4ca70cb1
>>> HTTP/1.1" 200 9245
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:04:06
>>> +0100] "GET /axis2/axis2-admin/listServices HTTP/1.1" 200 13513
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:04:47
>>> +0100] "POST /axis2/services/WeatherService HTTP/1.1" 202 5
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:04:47
>>> +0100] "POST /axis2/services/WeatherService HTTP/1.1" 200 576
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:23:01
>>> +0100] "POST /axis2/services/WeatherService HTTP/1.1" 202 5
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:11:23:01
>>> +0100] "POST /axis2/services/WeatherService HTTP/1.1" 200 576
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:11:42:18 +0100] "GET /axis2 HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:11:42:18 +0100] "GET /axis2/ HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:11:42:18 +0100] "GET /axis2/axis2-web/css/axis-style.css
>>> HTTP/1.1" 200 1580
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:11:42:18 +0100] "GET /axis2/axis2-web/images/asf-logo.gif
>>> HTTP/1.1" 200 5866
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:11:42:18 +0100] "GET /axis2/axis2-web/images/axis_l.jpg
>>> HTTP/1.1" 200 12340
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:12:26:17 +0100] "GET /axis2 HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:0:0:0:0:0:0:0:1 - -
>>> [28/Oct/2020:12:26:17 +0100] "GET /axis2/ HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:13
>>> +0100] "GET /axis2/services/listService HTTP/1.1" 500 126
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:25
>>> +0100] "GET /axis2/services/listServices HTTP/1.1" 200 4132
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:30
>>> +0100] "GET /axis2/axis2-web/index.jsp HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:32
>>> +0100] "GET /axis2/axis2-admin/ HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:32
>>> +0100] "GET /axis2/axis2-admin/welcome HTTP/1.1" 200 5598
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:36
>>> +0100] "POST /axis2/axis2-admin/login HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:36
>>> +0100] "GET
>>> /axis2/axis2-admin/index;jsessionid=CEB8FE96DE4DA07E257BD6F968F94726
>>> HTTP/1.1" 200 8282
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:14:38
>>> +0100] "GET /axis2/axis2-admin/upload HTTP/1.1" 200 9168
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:40
>>> +0100] "POST
>>> /axis2/axis2-admin/doUpload?token=1F312D4BAFE14E718EF68E17878BB909
>>> HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:40
>>> +0100] "GET
>>> /axis2/axis2-admin/upload?status=b58a8b1e-fba9-41e2-8584-c6d5bc738636
>>> HTTP/1.1" 200 9251
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:45
>>> +0100] "GET /axis2/axis2-admin/logout HTTP/1.1" 302 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:45
>>> +0100] "GET /axis2/axis2-admin/welcome HTTP/1.1" 200 5598
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:47
>>> +0100] "GET /axis2/axis2-web/index.jsp HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:17:48
>>> +0100] "GET /axis2/services/listServices HTTP/1.1" 200 4424
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:18:06
>>> +0100] "POST /axis2/services/Version HTTP/1.1" 200 329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:18:06
>>> +0100] "GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1" 200 16818
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:18:44
>>> +0100] "GET /axis2/axis2-web/index.jsp HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:18:47
>>> +0100] "POST /axis2/services/Version HTTP/1.1" 200 329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:18:47
>>> +0100] "GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1" 200 16818
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:21:26
>>> +0100] "GET /axis2/axis2-web/index.jsp HTTP/1.1" 200 3734
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:21:28
>>> +0100] "GET /axis2/services/listServices HTTP/1.1" 200 4424
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:21:33
>>> +0100] "GET
>>> /axis2/services/ListFaultyServices?serviceName=/var/lib/tomcat9/webapps/axis2/WEB-INF/services/WeatherSpringService.aar
>>> HTTP/1.1" 200 3329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:21:55
>>> +0100] "GET
>>> /axis2/services/ListFaultyServices?serviceName=/var/lib/tomcat9/webapps/axis2/WEB-INF/services/WeatherSpringService.aar
>>> HTTP/1.1" 200 3329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:25:44
>>> +0100] "GET
>>> /axis2/services/ListFaultyServices?serviceName=/var/lib/tomcat9/webapps/axis2/WEB-INF/services/WeatherSpringService.aar
>>> HTTP/1.1" 200 3329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:28:02
>>> +0100] "GET
>>> /axis2/services/ListFaultyServices?serviceName=/var/lib/tomcat9/webapps/axis2/WEB-INF/services/WeatherSpringService.aar
>>> HTTP/1.1" 200 3329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:28:08
>>> +0100] "POST /axis2/services/Version HTTP/1.1" 200 329
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:28:08
>>> +0100] "GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1" 200 16818
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:20:54:52
>>> +0100] "GET /axis2/services/listServices HTTP/1.1" 200 4424
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:21:18:06
>>> +0100] "GET /axis2/services/listServices HTTP/1.1" 200 4424
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:21:18:06
>>> +0100] "GET /axis2/axis2-web/images/axis_l.jpg HTTP/1.1" 304 -
>>> localhost_access_log.2020-10-28.txt:127.0.0.1 - - [28/Oct/2020:21:18:06
>>> +0100] "GET /axis2/axis2-web/images/asf-logo.gif HTTP/1.1" 304 -
>>>
>>> Am Mi., 28. Okt. 2020 um 21:28 Uhr schrieb robertlazarski <
>>> [email protected]>:
>>>
>>>> In your /var/lib/tomcat9/logs dir, try to find the axis2 specific logs.
>>>> You should see an error on startup.
>>>>
>>>> grep -i axis2 *
>>>>
>>>> On Wed, Oct 28, 2020 at 10:00 AM Daniel Otto <[email protected]>
>>>> wrote:
>>>>
>>>>> This link:
>>>>> http://localhost:8080/axis2/services/listServices
>>>>>
>>>>> Shows me the faulty service.
>>>>>
>>>>> [image: serviceList.png]
>>>>>
>>>>> The state of Axis2 shows no obvious errors.
>>>>>
>>>>> I also tried the newer versions of the .jar files and built the
>>>>> service again. Same problem.
>>>>>
>>>>> I also started the internal Axis2 server. The service is also faulty
>>>>> there.
>>>>>
>>>>> The previous example (pojoguide) just runs fine, so I think the
>>>>> servers should be okay?
>>>>>
>>>>> Tomcat9 Logs:
>>>>>
>>>>> 28-Oct-2020 20:55:06.694 INFO [Thread-6]
>>>>> org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler
>>>>> ["http-nio-8080"]
>>>>> 28-Oct-2020 20:55:06.699 INFO [Thread-6]
>>>>> org.apache.catalina.core.StandardService.stopInternal Stopping service
>>>>> [Catalina]
>>>>> 28-Oct-2020 20:55:06.806 INFO [Thread-6]
>>>>> org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler
>>>>> ["http-nio-8080"]
>>>>> 28-Oct-2020 20:55:06.813 INFO [Thread-6]
>>>>> org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler
>>>>> ["http-nio-8080"]
>>>>> 28-Oct-2020 20:55:46.668 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Server version name:
>>>>>   Apache Tomcat/9.0.31 (Ubuntu)
>>>>> 28-Oct-2020 20:55:46.672 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Server built:
>>>>>  Oct 20 2020 12:27:39 UTC
>>>>> 28-Oct-2020 20:55:46.680 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Server version
>>>>> number: 9.0.31.0
>>>>> 28-Oct-2020 20:55:46.680 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log OS Name:
>>>>>   Linux
>>>>> 28-Oct-2020 20:55:46.681 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log OS Version:
>>>>>  5.4.0-52-generic
>>>>> 28-Oct-2020 20:55:46.681 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Architecture:
>>>>>  amd64
>>>>> 28-Oct-2020 20:55:46.681 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Java Home:
>>>>>   /usr/lib/jvm/java-11-openjdk-amd64
>>>>> 28-Oct-2020 20:55:46.681 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log JVM Version:
>>>>>   11.0.8+10-post-Ubuntu-0ubuntu120.04
>>>>> 28-Oct-2020 20:55:46.681 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor:
>>>>>  Ubuntu
>>>>> 28-Oct-2020 20:55:46.682 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE:
>>>>>   /var/lib/tomcat9
>>>>> 28-Oct-2020 20:55:46.682 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME:
>>>>>   /usr/share/tomcat9
>>>>> 28-Oct-2020 20:55:46.691 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: --add-opens=java.base/java.lang=ALL-UNNAMED
>>>>> 28-Oct-2020 20:55:46.691 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: --add-opens=java.base/java.io=ALL-UNNAMED
>>>>> 28-Oct-2020 20:55:46.692 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED
>>>>> 28-Oct-2020 20:55:46.692 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument:
>>>>> -Djava.util.logging.config.file=/var/lib/tomcat9/conf/logging.properties
>>>>> 28-Oct-2020 20:55:46.693 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
>>>>> 28-Oct-2020 20:55:46.693 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Djava.awt.headless=true
>>>>> 28-Oct-2020 20:55:46.693 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Djdk.tls.ephemeralDHKeySize=2048
>>>>> 28-Oct-2020 20:55:46.694 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources
>>>>> 28-Oct-2020 20:55:46.694 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Dorg.apache.catalina.security.SecurityListener.UMASK=0027
>>>>> 28-Oct-2020 20:55:46.695 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Dignore.endorsed.dirs=
>>>>> 28-Oct-2020 20:55:46.695 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Dcatalina.base=/var/lib/tomcat9
>>>>> 28-Oct-2020 20:55:46.695 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Dcatalina.home=/usr/share/tomcat9
>>>>> 28-Oct-2020 20:55:46.695 INFO [main]
>>>>> org.apache.catalina.startup.VersionLoggerListener.log Command line
>>>>> argument: -Djava.io.tmpdir=/tmp
>>>>> 28-Oct-2020 20:55:46.696 INFO [main]
>>>>> org.apache.catalina.core.AprLifecycleListener.lifecycleEvent Loaded APR
>>>>> based Apache Tomcat Native library [1.2.23] using APR version [1.6.5].
>>>>> 28-Oct-2020 20:55:46.696 INFO [main]
>>>>> org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR
>>>>> capabilities: IPv6 [true], sendfile [true], accept filters [false], random
>>>>> [true].
>>>>> 28-Oct-2020 20:55:46.696 INFO [main]
>>>>> org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR/OpenSSL
>>>>> configuration: useAprConnector [false], useOpenSSL [true]
>>>>> 28-Oct-2020 20:55:46.699 INFO [main]
>>>>> org.apache.catalina.core.AprLifecycleListener.initializeSSL OpenSSL
>>>>> successfully initialized [OpenSSL 1.1.1f  31 Mar 2020]
>>>>> 28-Oct-2020 20:55:47.104 INFO [main]
>>>>> org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler
>>>>> ["http-nio-8080"]
>>>>> 28-Oct-2020 20:55:47.147 INFO [main]
>>>>> org.apache.catalina.startup.Catalina.load Server initialization in [722]
>>>>> milliseconds
>>>>> 28-Oct-2020 20:55:47.263 INFO [main]
>>>>> org.apache.catalina.core.StandardService.startInternal Starting service
>>>>> [Catalina]
>>>>> 28-Oct-2020 20:55:47.264 INFO [main]
>>>>> org.apache.catalina.core.StandardEngine.startInternal Starting Servlet
>>>>> engine: [Apache Tomcat/9.0.31 (Ubuntu)]
>>>>> 28-Oct-2020 20:55:47.277 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deploying
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/host-manager.xml]
>>>>> 28-Oct-2020 20:55:47.299 WARNING [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor The path attribute
>>>>> with value [/host-manager] in deployment descriptor
>>>>> [/etc/tomcat9/Catalina/localhost/host-manager.xml] has been ignored
>>>>> 28-Oct-2020 20:55:48.445 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:48.502 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deployment of
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/host-manager.xml]
>>>>> has finished in [1,225] ms
>>>>> 28-Oct-2020 20:55:48.503 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deploying
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/docs.xml]
>>>>> 28-Oct-2020 20:55:48.506 WARNING [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor The path attribute
>>>>> with value [/docs] in deployment descriptor
>>>>> [/etc/tomcat9/Catalina/localhost/docs.xml] has been ignored
>>>>> 28-Oct-2020 20:55:48.953 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:48.956 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deployment of
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/docs.xml] has
>>>>> finished in [453] ms
>>>>> 28-Oct-2020 20:55:48.957 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deploying
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/manager.xml]
>>>>> 28-Oct-2020 20:55:48.959 WARNING [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor The path attribute
>>>>> with value [/manager] in deployment descriptor
>>>>> [/etc/tomcat9/Catalina/localhost/manager.xml] has been ignored
>>>>> 28-Oct-2020 20:55:49.453 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:49.457 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deployment of
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/manager.xml] has
>>>>> finished in [500] ms
>>>>> 28-Oct-2020 20:55:49.458 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deploying
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/examples.xml]
>>>>> 28-Oct-2020 20:55:49.459 WARNING [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor The path attribute
>>>>> with value [/examples] in deployment descriptor
>>>>> [/etc/tomcat9/Catalina/localhost/examples.xml] has been ignored
>>>>> 28-Oct-2020 20:55:50.018 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:50.053 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDescriptor Deployment of
>>>>> deployment descriptor [/etc/tomcat9/Catalina/localhost/examples.xml] has
>>>>> finished in [595] ms
>>>>> 28-Oct-2020 20:55:50.054 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployWAR Deploying web application
>>>>> archive [/var/lib/tomcat9/webapps/axis2.war]
>>>>> 28-Oct-2020 20:55:51.166 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:51.911 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployWAR Deployment of web
>>>>> application archive [/var/lib/tomcat9/webapps/axis2.war] has finished in
>>>>> [1,857] ms
>>>>> 28-Oct-2020 20:55:51.912 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDirectory Deploying web
>>>>> application directory [/var/lib/tomcat9/webapps/ROOT]
>>>>> 28-Oct-2020 20:55:52.353 INFO [main]
>>>>> org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned
>>>>> for TLDs yet contained no TLDs. Enable debug logging for this logger for a
>>>>> complete list of JARs that were scanned but no TLDs were found in them.
>>>>> Skipping unneeded JARs during scanning can improve startup time and JSP
>>>>> compilation time.
>>>>> 28-Oct-2020 20:55:52.357 INFO [main]
>>>>> org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web
>>>>> application directory [/var/lib/tomcat9/webapps/ROOT] has finished in [445]
>>>>> ms
>>>>> 28-Oct-2020 20:55:52.362 INFO [main]
>>>>> org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler
>>>>> ["http-nio-8080"]
>>>>> 28-Oct-2020 20:55:52.381 INFO [main]
>>>>> org.apache.catalina.startup.Catalina.start Server startup in [5,232]
>>>>> milliseconds
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>
>>> --
>>>
>>>
>>> Windmühlenstraße 35//615
>>> 04107 Leipzig
>>>
>>> Mobilfunk:  0176 57723225
>>>
>>> [email protected]
>>>
>>>
>>> Der Inhalt dieser E-Mail, einschließlich seiner Anhänge, ist vertraulich
>>> und ausschließlich für den bezeichneten Empfänger bestimmt. Wenn Sie nicht
>>> der vorgesehene Empfänger dieser E-Mail oder dessen berechtigter Vertreter
>>> sind, so beachten Sie bitte, dass jede Form der Kenntnisnahme, der Nutzung,
>>> der Veröffentlichung, der Vervielfältigung oder Weitergabe unzulässig ist.
>>> Ich bitte Sie in diesem Fall, sich mit dem Absender dieser E-Mail in
>>> Verbindung zu setzen. Vielen Dank für Ihre Unterstützung.
>>>
>>
>
> --
>
>
> Windmühlenstraße 35//615
> 04107 Leipzig
>
> Mobilfunk:  0176 57723225
>
> [email protected]
>
>
> Der Inhalt dieser E-Mail, einschließlich seiner Anhänge, ist vertraulich
> und ausschließlich für den bezeichneten Empfänger bestimmt. Wenn Sie nicht
> der vorgesehene Empfänger dieser E-Mail oder dessen berechtigter Vertreter
> sind, so beachten Sie bitte, dass jede Form der Kenntnisnahme, der Nutzung,
> der Veröffentlichung, der Vervielfältigung oder Weitergabe unzulässig ist.
> Ich bitte Sie in diesem Fall, sich mit dem Absender dieser E-Mail in
> Verbindung zu setzen. Vielen Dank für Ihre Unterstützung.
>
serviceList.png (image/png, 104.1 KB) - not displayed
linkInServiceList.png (image/png, 177.7 KB) - not displayed