├── .gitignore ├── README.md ├── container-apache-tomcat-web-server-sample ├── .DS_Store ├── ApacheTomcat │ ├── .DS_Store │ ├── LICENSE │ ├── NOTICE │ ├── RELEASE-NOTES │ ├── RUNNING.txt │ ├── bin │ │ ├── bootstrap.jar │ │ ├── catalina-tasks.xml │ │ ├── catalina.bat │ │ ├── catalina.sh │ │ ├── ciphers.bat │ │ ├── ciphers.sh │ │ ├── commons-daemon-native.tar.gz │ │ ├── commons-daemon.jar │ │ ├── configtest.bat │ │ ├── configtest.sh │ │ ├── daemon.sh │ │ ├── digest.bat │ │ ├── digest.sh │ │ ├── setclasspath.bat │ │ ├── setclasspath.sh │ │ ├── shutdown.bat │ │ ├── shutdown.sh │ │ ├── startup.bat │ │ ├── startup.sh │ │ ├── tomcat-juli.jar │ │ ├── tomcat-native.tar.gz │ │ ├── tool-wrapper.bat │ │ ├── tool-wrapper.sh │ │ ├── version.bat │ │ └── version.sh │ ├── conf │ │ ├── catalina.policy │ │ ├── catalina.properties │ │ ├── context.xml │ │ ├── jaspic-providers.xml │ │ ├── jaspic-providers.xsd │ │ ├── logging.properties │ │ ├── server.xml │ │ ├── tomcat-users.xml │ │ ├── tomcat-users.xsd │ │ └── web.xml │ ├── lib │ │ ├── annotations-api.jar │ │ ├── catalina-ant.jar │ │ ├── catalina-ha.jar │ │ ├── catalina-storeconfig.jar │ │ ├── catalina-tribes.jar │ │ ├── catalina.jar │ │ ├── ecj-4.6.3.jar │ │ ├── el-api.jar │ │ ├── jasper-el.jar │ │ ├── jasper.jar │ │ ├── jaspic-api.jar │ │ ├── jsp-api.jar │ │ ├── servlet-api.jar │ │ ├── tomcat-api.jar │ │ ├── tomcat-coyote.jar │ │ ├── tomcat-dbcp.jar │ │ ├── tomcat-i18n-es.jar │ │ ├── tomcat-i18n-fr.jar │ │ ├── tomcat-i18n-ja.jar │ │ ├── tomcat-jdbc.jar │ │ ├── tomcat-jni.jar │ │ ├── tomcat-util-scan.jar │ │ ├── tomcat-util.jar │ │ ├── tomcat-websocket.jar │ │ └── websocket-api.jar │ ├── logs │ │ ├── catalina.2018-03-02.log │ │ ├── catalina.2018-03-05.log │ │ ├── catalina.2018-03-09.log │ │ ├── catalina.2018-03-12.log │ │ ├── catalina.2018-05-21.log │ │ ├── catalina.out │ │ ├── host-manager.2018-03-02.log │ │ ├── host-manager.2018-03-09.log │ │ ├── host-manager.2018-03-12.log │ │ ├── host-manager.2018-05-21.log │ │ ├── localhost.2018-03-02.log │ │ ├── localhost.2018-03-05.log │ │ ├── localhost.2018-03-09.log │ │ ├── localhost.2018-03-12.log │ │ ├── localhost.2018-05-21.log │ │ ├── localhost_access_log.2018-03-02.txt │ │ ├── localhost_access_log.2018-03-09.txt │ │ ├── localhost_access_log.2018-03-12.txt │ │ ├── localhost_access_log.2018-05-21.txt │ │ ├── manager.2018-03-02.log │ │ ├── manager.2018-03-09.log │ │ ├── manager.2018-03-12.log │ │ └── manager.2018-05-21.log │ ├── temp │ │ └── safeToDelete.tmp │ ├── webapps │ │ ├── ROOT │ │ │ ├── RELEASE-NOTES.txt │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ ├── asf-logo-wide.svg │ │ │ ├── bg-button.png │ │ │ ├── bg-middle.png │ │ │ ├── bg-nav.png │ │ │ ├── bg-upper.png │ │ │ ├── favicon.ico │ │ │ ├── index.jsp │ │ │ ├── tomcat-power.gif │ │ │ ├── tomcat.css │ │ │ ├── tomcat.gif │ │ │ ├── tomcat.png │ │ │ └── tomcat.svg │ │ ├── docs │ │ │ ├── BUILDING.txt │ │ │ ├── RELEASE-NOTES.txt │ │ │ ├── RUNNING.txt │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ ├── aio.html │ │ │ ├── api │ │ │ │ └── index.html │ │ │ ├── appdev │ │ │ │ ├── build.xml.txt │ │ │ │ ├── deployment.html │ │ │ │ ├── index.html │ │ │ │ ├── installation.html │ │ │ │ ├── introduction.html │ │ │ │ ├── processes.html │ │ │ │ ├── sample │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── docs │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sample.war │ │ │ │ │ ├── src │ │ │ │ │ │ └── mypackage │ │ │ │ │ │ │ └── Hello.java │ │ │ │ │ └── web │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ ├── hello.jsp │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── tomcat.gif │ │ │ │ │ │ └── index.html │ │ │ │ ├── source.html │ │ │ │ └── web.xml.txt │ │ │ ├── apr.html │ │ │ ├── architecture │ │ │ │ ├── index.html │ │ │ │ ├── overview.html │ │ │ │ ├── requestProcess.html │ │ │ │ ├── requestProcess │ │ │ │ │ ├── authentication-process.png │ │ │ │ │ └── request-process.png │ │ │ │ ├── startup.html │ │ │ │ └── startup │ │ │ │ │ ├── serverStartup.pdf │ │ │ │ │ └── serverStartup.txt │ │ │ ├── balancer-howto.html │ │ │ ├── building.html │ │ │ ├── cgi-howto.html │ │ │ ├── changelog.html │ │ │ ├── class-loader-howto.html │ │ │ ├── cluster-howto.html │ │ │ ├── comments.html │ │ │ ├── config │ │ │ │ ├── ajp.html │ │ │ │ ├── automatic-deployment.html │ │ │ │ ├── cluster-channel.html │ │ │ │ ├── cluster-deployer.html │ │ │ │ ├── cluster-interceptor.html │ │ │ │ ├── cluster-listener.html │ │ │ │ ├── cluster-manager.html │ │ │ │ ├── cluster-membership.html │ │ │ │ ├── cluster-receiver.html │ │ │ │ ├── cluster-sender.html │ │ │ │ ├── cluster-valve.html │ │ │ │ ├── cluster.html │ │ │ │ ├── context.html │ │ │ │ ├── cookie-processor.html │ │ │ │ ├── credentialhandler.html │ │ │ │ ├── engine.html │ │ │ │ ├── executor.html │ │ │ │ ├── filter.html │ │ │ │ ├── globalresources.html │ │ │ │ ├── host.html │ │ │ │ ├── http.html │ │ │ │ ├── http2.html │ │ │ │ ├── index.html │ │ │ │ ├── jar-scan-filter.html │ │ │ │ ├── jar-scanner.html │ │ │ │ ├── jaspic.html │ │ │ │ ├── listeners.html │ │ │ │ ├── loader.html │ │ │ │ ├── manager.html │ │ │ │ ├── realm.html │ │ │ │ ├── resources.html │ │ │ │ ├── server.html │ │ │ │ ├── service.html │ │ │ │ ├── sessionidgenerator.html │ │ │ │ ├── systemprops.html │ │ │ │ └── valve.html │ │ │ ├── connectors.html │ │ │ ├── default-servlet.html │ │ │ ├── deployer-howto.html │ │ │ ├── developers.html │ │ │ ├── elapi │ │ │ │ └── index.html │ │ │ ├── extras.html │ │ │ ├── funcspecs │ │ │ │ ├── fs-admin-apps.html │ │ │ │ ├── fs-admin-objects.html │ │ │ │ ├── fs-admin-opers.html │ │ │ │ ├── fs-default.html │ │ │ │ ├── fs-jdbc-realm.html │ │ │ │ ├── fs-jndi-realm.html │ │ │ │ ├── fs-memory-realm.html │ │ │ │ ├── index.html │ │ │ │ └── mbean-names.html │ │ │ ├── html-manager-howto.html │ │ │ ├── images │ │ │ │ ├── add.gif │ │ │ │ ├── asf-logo.svg │ │ │ │ ├── code.gif │ │ │ │ ├── cors-flowchart.png │ │ │ │ ├── design.gif │ │ │ │ ├── docs-stylesheet.css │ │ │ │ ├── docs.gif │ │ │ │ ├── fix.gif │ │ │ │ ├── fonts │ │ │ │ │ ├── OpenSans400.woff │ │ │ │ │ ├── OpenSans400italic.woff │ │ │ │ │ ├── OpenSans600.woff │ │ │ │ │ ├── OpenSans600italic.woff │ │ │ │ │ ├── OpenSans700.woff │ │ │ │ │ ├── OpenSans700italic.woff │ │ │ │ │ └── fonts.css │ │ │ │ ├── tomcat.gif │ │ │ │ ├── tomcat.png │ │ │ │ ├── update.gif │ │ │ │ └── void.gif │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ ├── jasper-howto.html │ │ │ ├── jdbc-pool.html │ │ │ ├── jndi-datasource-examples-howto.html │ │ │ ├── jndi-resources-howto.html │ │ │ ├── jspapi │ │ │ │ └── index.html │ │ │ ├── logging.html │ │ │ ├── manager-howto.html │ │ │ ├── maven-jars.html │ │ │ ├── mbeans-descriptors-howto.html │ │ │ ├── mbeans-descriptors.dtd │ │ │ ├── monitoring.html │ │ │ ├── proxy-howto.html │ │ │ ├── realm-howto.html │ │ │ ├── rewrite.html │ │ │ ├── security-howto.html │ │ │ ├── security-manager-howto.html │ │ │ ├── servletapi │ │ │ │ └── index.html │ │ │ ├── setup.html │ │ │ ├── ssi-howto.html │ │ │ ├── ssl-howto.html │ │ │ ├── tribes │ │ │ │ ├── developers.html │ │ │ │ ├── faq.html │ │ │ │ ├── interceptors.html │ │ │ │ ├── introduction.html │ │ │ │ ├── membership.html │ │ │ │ ├── setup.html │ │ │ │ ├── status.html │ │ │ │ └── transport.html │ │ │ ├── virtual-hosting-howto.html │ │ │ ├── web-socket-howto.html │ │ │ ├── websocketapi │ │ │ │ └── index.html │ │ │ ├── windows-auth-howto.html │ │ │ └── windows-service-howto.html │ │ ├── examples │ │ │ ├── WEB-INF │ │ │ │ ├── classes │ │ │ │ │ ├── CookieExample.class │ │ │ │ │ ├── CookieExample.java │ │ │ │ │ ├── HelloWorldExample.class │ │ │ │ │ ├── HelloWorldExample.java │ │ │ │ │ ├── LocalStrings.properties │ │ │ │ │ ├── LocalStrings_en.properties │ │ │ │ │ ├── LocalStrings_es.properties │ │ │ │ │ ├── LocalStrings_fr.properties │ │ │ │ │ ├── LocalStrings_pt.properties │ │ │ │ │ ├── RequestHeaderExample.class │ │ │ │ │ ├── RequestHeaderExample.java │ │ │ │ │ ├── RequestInfoExample.class │ │ │ │ │ ├── RequestInfoExample.java │ │ │ │ │ ├── RequestParamExample.class │ │ │ │ │ ├── RequestParamExample.java │ │ │ │ │ ├── ServletToJsp.class │ │ │ │ │ ├── ServletToJsp.java │ │ │ │ │ ├── SessionExample.class │ │ │ │ │ ├── SessionExample.java │ │ │ │ │ ├── async │ │ │ │ │ │ ├── Async0$1.class │ │ │ │ │ │ ├── Async0.class │ │ │ │ │ │ ├── Async0.java │ │ │ │ │ │ ├── Async1$1.class │ │ │ │ │ │ ├── Async1.class │ │ │ │ │ │ ├── Async1.java │ │ │ │ │ │ ├── Async2$1.class │ │ │ │ │ │ ├── Async2.class │ │ │ │ │ │ ├── Async2.java │ │ │ │ │ │ ├── Async3.class │ │ │ │ │ │ ├── Async3.java │ │ │ │ │ │ ├── AsyncStockContextListener.class │ │ │ │ │ │ ├── AsyncStockContextListener.java │ │ │ │ │ │ ├── AsyncStockServlet.class │ │ │ │ │ │ ├── AsyncStockServlet.java │ │ │ │ │ │ ├── Stockticker$Stock.class │ │ │ │ │ │ ├── Stockticker$TickListener.class │ │ │ │ │ │ ├── Stockticker.class │ │ │ │ │ │ └── Stockticker.java │ │ │ │ │ ├── cal │ │ │ │ │ │ ├── Entries.class │ │ │ │ │ │ ├── Entries.java │ │ │ │ │ │ ├── Entry.class │ │ │ │ │ │ ├── Entry.java │ │ │ │ │ │ ├── JspCalendar.class │ │ │ │ │ │ ├── JspCalendar.java │ │ │ │ │ │ ├── TableBean.class │ │ │ │ │ │ └── TableBean.java │ │ │ │ │ ├── checkbox │ │ │ │ │ │ ├── CheckTest.class │ │ │ │ │ │ └── CheckTest.java │ │ │ │ │ ├── colors │ │ │ │ │ │ ├── ColorGameBean.class │ │ │ │ │ │ └── ColorGameBean.java │ │ │ │ │ ├── compressionFilters │ │ │ │ │ │ ├── CompressionFilter.class │ │ │ │ │ │ ├── CompressionFilter.java │ │ │ │ │ │ ├── CompressionFilterTestServlet.class │ │ │ │ │ │ ├── CompressionFilterTestServlet.java │ │ │ │ │ │ ├── CompressionResponseStream.class │ │ │ │ │ │ ├── CompressionResponseStream.java │ │ │ │ │ │ ├── CompressionServletResponseWrapper.class │ │ │ │ │ │ └── CompressionServletResponseWrapper.java │ │ │ │ │ ├── dates │ │ │ │ │ │ ├── JspCalendar.class │ │ │ │ │ │ └── JspCalendar.java │ │ │ │ │ ├── error │ │ │ │ │ │ ├── Smart.class │ │ │ │ │ │ └── Smart.java │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── ExampleTagBase.class │ │ │ │ │ │ ├── ExampleTagBase.java │ │ │ │ │ │ ├── FooTag.class │ │ │ │ │ │ ├── FooTag.java │ │ │ │ │ │ ├── FooTagExtraInfo.class │ │ │ │ │ │ ├── FooTagExtraInfo.java │ │ │ │ │ │ ├── LogTag.class │ │ │ │ │ │ ├── LogTag.java │ │ │ │ │ │ ├── ShowSource.class │ │ │ │ │ │ ├── ShowSource.java │ │ │ │ │ │ ├── ValuesTag.class │ │ │ │ │ │ └── ValuesTag.java │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── ExampleFilter.class │ │ │ │ │ │ └── ExampleFilter.java │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── SimpleImagePush.class │ │ │ │ │ │ └── SimpleImagePush.java │ │ │ │ │ ├── jsp2 │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ ├── BookBean.class │ │ │ │ │ │ │ ├── BookBean.java │ │ │ │ │ │ │ ├── FooBean.class │ │ │ │ │ │ │ ├── FooBean.java │ │ │ │ │ │ │ ├── ValuesBean.class │ │ │ │ │ │ │ ├── ValuesBean.java │ │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ ├── Functions.class │ │ │ │ │ │ │ └── Functions.java │ │ │ │ │ │ │ └── simpletag │ │ │ │ │ │ │ ├── EchoAttributesTag.class │ │ │ │ │ │ │ ├── EchoAttributesTag.java │ │ │ │ │ │ │ ├── FindBookSimpleTag.class │ │ │ │ │ │ │ ├── FindBookSimpleTag.java │ │ │ │ │ │ │ ├── HelloWorldSimpleTag.class │ │ │ │ │ │ │ ├── HelloWorldSimpleTag.java │ │ │ │ │ │ │ ├── RepeatSimpleTag.class │ │ │ │ │ │ │ ├── RepeatSimpleTag.java │ │ │ │ │ │ │ ├── ShuffleSimpleTag.class │ │ │ │ │ │ │ ├── ShuffleSimpleTag.java │ │ │ │ │ │ │ ├── TileSimpleTag.class │ │ │ │ │ │ │ └── TileSimpleTag.java │ │ │ │ │ ├── listeners │ │ │ │ │ │ ├── ContextListener.class │ │ │ │ │ │ ├── ContextListener.java │ │ │ │ │ │ ├── SessionListener.class │ │ │ │ │ │ └── SessionListener.java │ │ │ │ │ ├── nonblocking │ │ │ │ │ │ ├── ByteCounter$1.class │ │ │ │ │ │ ├── ByteCounter$CounterListener.class │ │ │ │ │ │ ├── ByteCounter.class │ │ │ │ │ │ ├── ByteCounter.java │ │ │ │ │ │ ├── NumberWriter$1.class │ │ │ │ │ │ ├── NumberWriter$NumberWriterListener.class │ │ │ │ │ │ ├── NumberWriter.class │ │ │ │ │ │ └── NumberWriter.java │ │ │ │ │ ├── num │ │ │ │ │ │ ├── NumberGuessBean.class │ │ │ │ │ │ └── NumberGuessBean.java │ │ │ │ │ ├── sessions │ │ │ │ │ │ ├── DummyCart.class │ │ │ │ │ │ └── DummyCart.java │ │ │ │ │ ├── trailers │ │ │ │ │ │ ├── ResponseTrailers$1.class │ │ │ │ │ │ ├── ResponseTrailers$TrailerFieldSupplier.class │ │ │ │ │ │ ├── ResponseTrailers.class │ │ │ │ │ │ └── ResponseTrailers.java │ │ │ │ │ ├── util │ │ │ │ │ │ ├── CookieFilter.class │ │ │ │ │ │ ├── CookieFilter.java │ │ │ │ │ │ ├── HTMLFilter.class │ │ │ │ │ │ └── HTMLFilter.java │ │ │ │ │ ├── validators │ │ │ │ │ │ ├── DebugValidator.class │ │ │ │ │ │ └── DebugValidator.java │ │ │ │ │ └── websocket │ │ │ │ │ │ ├── ExamplesConfig.class │ │ │ │ │ │ ├── ExamplesConfig.java │ │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── ChatAnnotation.class │ │ │ │ │ │ └── ChatAnnotation.java │ │ │ │ │ │ ├── drawboard │ │ │ │ │ │ ├── Client$1.class │ │ │ │ │ │ ├── Client.class │ │ │ │ │ │ ├── Client.java │ │ │ │ │ │ ├── DrawMessage$ParseException.class │ │ │ │ │ │ ├── DrawMessage.class │ │ │ │ │ │ ├── DrawMessage.java │ │ │ │ │ │ ├── DrawboardContextListener.class │ │ │ │ │ │ ├── DrawboardContextListener.java │ │ │ │ │ │ ├── DrawboardEndpoint$1.class │ │ │ │ │ │ ├── DrawboardEndpoint$2.class │ │ │ │ │ │ ├── DrawboardEndpoint$3$1.class │ │ │ │ │ │ ├── DrawboardEndpoint$3.class │ │ │ │ │ │ ├── DrawboardEndpoint.class │ │ │ │ │ │ ├── DrawboardEndpoint.java │ │ │ │ │ │ ├── Room$1$1.class │ │ │ │ │ │ ├── Room$1.class │ │ │ │ │ │ ├── Room$2.class │ │ │ │ │ │ ├── Room$MessageType.class │ │ │ │ │ │ ├── Room$Player.class │ │ │ │ │ │ ├── Room.class │ │ │ │ │ │ ├── Room.java │ │ │ │ │ │ └── wsmessages │ │ │ │ │ │ │ ├── AbstractWebsocketMessage.class │ │ │ │ │ │ │ ├── AbstractWebsocketMessage.java │ │ │ │ │ │ │ ├── BinaryWebsocketMessage.class │ │ │ │ │ │ │ ├── BinaryWebsocketMessage.java │ │ │ │ │ │ │ ├── CloseWebsocketMessage.class │ │ │ │ │ │ │ ├── CloseWebsocketMessage.java │ │ │ │ │ │ │ ├── StringWebsocketMessage.class │ │ │ │ │ │ │ └── StringWebsocketMessage.java │ │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── EchoAnnotation.class │ │ │ │ │ │ ├── EchoAnnotation.java │ │ │ │ │ │ ├── EchoAsyncAnnotation$1.class │ │ │ │ │ │ ├── EchoAsyncAnnotation$CompletedFuture.class │ │ │ │ │ │ ├── EchoAsyncAnnotation.class │ │ │ │ │ │ ├── EchoAsyncAnnotation.java │ │ │ │ │ │ ├── EchoEndpoint$1.class │ │ │ │ │ │ ├── EchoEndpoint$EchoMessageHandlerBinary.class │ │ │ │ │ │ ├── EchoEndpoint$EchoMessageHandlerText.class │ │ │ │ │ │ ├── EchoEndpoint.class │ │ │ │ │ │ ├── EchoEndpoint.java │ │ │ │ │ │ ├── EchoStreamAnnotation.class │ │ │ │ │ │ ├── EchoStreamAnnotation.java │ │ │ │ │ │ └── servers.json │ │ │ │ │ │ └── snake │ │ │ │ │ │ ├── Direction.class │ │ │ │ │ │ ├── Direction.java │ │ │ │ │ │ ├── Location$1.class │ │ │ │ │ │ ├── Location.class │ │ │ │ │ │ ├── Location.java │ │ │ │ │ │ ├── Snake.class │ │ │ │ │ │ ├── Snake.java │ │ │ │ │ │ ├── SnakeAnnotation.class │ │ │ │ │ │ ├── SnakeAnnotation.java │ │ │ │ │ │ ├── SnakeTimer$1.class │ │ │ │ │ │ ├── SnakeTimer.class │ │ │ │ │ │ └── SnakeTimer.java │ │ │ │ ├── jsp │ │ │ │ │ ├── applet │ │ │ │ │ │ └── Clock2.java │ │ │ │ │ ├── debug-taglib.tld │ │ │ │ │ └── example-taglib.tld │ │ │ │ ├── jsp2 │ │ │ │ │ └── jsp2-example-taglib.tld │ │ │ │ ├── lib │ │ │ │ │ ├── taglibs-standard-impl-1.2.5.jar │ │ │ │ │ └── taglibs-standard-spec-1.2.5.jar │ │ │ │ ├── tags │ │ │ │ │ ├── displayProducts.tag │ │ │ │ │ ├── helloWorld.tag │ │ │ │ │ └── panel.tag │ │ │ │ └── web.xml │ │ │ ├── index.html │ │ │ ├── jsp │ │ │ │ ├── async │ │ │ │ │ ├── async1.jsp │ │ │ │ │ ├── async1.jsp.html │ │ │ │ │ ├── async3.jsp │ │ │ │ │ ├── async3.jsp.html │ │ │ │ │ ├── index.jsp │ │ │ │ │ └── index.jsp.html │ │ │ │ ├── cal │ │ │ │ │ ├── Entries.java.html │ │ │ │ │ ├── Entry.java.html │ │ │ │ │ ├── JspCalendar.java.html │ │ │ │ │ ├── TableBean.java.html │ │ │ │ │ ├── cal1.jsp │ │ │ │ │ ├── cal1.jsp.html │ │ │ │ │ ├── cal2.jsp │ │ │ │ │ ├── cal2.jsp.html │ │ │ │ │ ├── calendar.html │ │ │ │ │ └── login.html │ │ │ │ ├── checkbox │ │ │ │ │ ├── CheckTest.html │ │ │ │ │ ├── check.html │ │ │ │ │ ├── checkresult.jsp │ │ │ │ │ ├── checkresult.jsp.html │ │ │ │ │ └── cresult.html │ │ │ │ ├── colors │ │ │ │ │ ├── ColorGameBean.html │ │ │ │ │ ├── clr.html │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── colrs.jsp │ │ │ │ │ └── colrs.jsp.html │ │ │ │ ├── dates │ │ │ │ │ ├── date.html │ │ │ │ │ ├── date.jsp │ │ │ │ │ └── date.jsp.html │ │ │ │ ├── error │ │ │ │ │ ├── er.html │ │ │ │ │ ├── err.jsp │ │ │ │ │ ├── err.jsp.html │ │ │ │ │ ├── error.html │ │ │ │ │ ├── errorpge.jsp │ │ │ │ │ └── errorpge.jsp.html │ │ │ │ ├── forward │ │ │ │ │ ├── forward.jsp │ │ │ │ │ ├── forward.jsp.html │ │ │ │ │ ├── fwd.html │ │ │ │ │ ├── one.jsp │ │ │ │ │ ├── one.jsp.html │ │ │ │ │ └── two.html │ │ │ │ ├── images │ │ │ │ │ ├── code.gif │ │ │ │ │ ├── execute.gif │ │ │ │ │ └── return.gif │ │ │ │ ├── include │ │ │ │ │ ├── foo.html │ │ │ │ │ ├── foo.jsp │ │ │ │ │ ├── foo.jsp.html │ │ │ │ │ ├── inc.html │ │ │ │ │ ├── include.jsp │ │ │ │ │ └── include.jsp.html │ │ │ │ ├── index.html │ │ │ │ ├── jsp2 │ │ │ │ │ ├── el │ │ │ │ │ │ ├── Functions.java.html │ │ │ │ │ │ ├── ValuesBean.java.html │ │ │ │ │ │ ├── ValuesTag.java.html │ │ │ │ │ │ ├── basic-arithmetic.html │ │ │ │ │ │ ├── basic-arithmetic.jsp │ │ │ │ │ │ ├── basic-arithmetic.jsp.html │ │ │ │ │ │ ├── basic-comparisons.html │ │ │ │ │ │ ├── basic-comparisons.jsp │ │ │ │ │ │ ├── basic-comparisons.jsp.html │ │ │ │ │ │ ├── composite.html │ │ │ │ │ │ ├── composite.jsp │ │ │ │ │ │ ├── composite.jsp.html │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions.jsp │ │ │ │ │ │ ├── functions.jsp.html │ │ │ │ │ │ ├── implicit-objects.html │ │ │ │ │ │ ├── implicit-objects.jsp │ │ │ │ │ │ └── implicit-objects.jsp.html │ │ │ │ │ ├── jspattribute │ │ │ │ │ │ ├── FooBean.java.html │ │ │ │ │ │ ├── HelloWorldSimpleTag.java.html │ │ │ │ │ │ ├── ShuffleSimpleTag.java.html │ │ │ │ │ │ ├── TileSimpleTag.java.html │ │ │ │ │ │ ├── jspattribute.html │ │ │ │ │ │ ├── jspattribute.jsp │ │ │ │ │ │ ├── jspattribute.jsp.html │ │ │ │ │ │ ├── shuffle.html │ │ │ │ │ │ ├── shuffle.jsp │ │ │ │ │ │ └── shuffle.jsp.html │ │ │ │ │ ├── jspx │ │ │ │ │ │ ├── basic.html │ │ │ │ │ │ ├── basic.jspx │ │ │ │ │ │ ├── basic.jspx.html │ │ │ │ │ │ ├── svgexample.html │ │ │ │ │ │ ├── textRotate.html │ │ │ │ │ │ ├── textRotate.jpg │ │ │ │ │ │ ├── textRotate.jspx │ │ │ │ │ │ └── textRotate.jspx.html │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── EchoAttributesTag.java.html │ │ │ │ │ │ ├── coda.jspf │ │ │ │ │ │ ├── coda.jspf.html │ │ │ │ │ │ ├── config.html │ │ │ │ │ │ ├── config.jsp │ │ │ │ │ │ ├── config.jsp.html │ │ │ │ │ │ ├── dynamicattrs.html │ │ │ │ │ │ ├── dynamicattrs.jsp │ │ │ │ │ │ ├── dynamicattrs.jsp.html │ │ │ │ │ │ ├── prelude.jspf │ │ │ │ │ │ └── prelude.jspf.html │ │ │ │ │ ├── simpletag │ │ │ │ │ │ ├── BookBean.java.html │ │ │ │ │ │ ├── FindBookSimpleTag.java.html │ │ │ │ │ │ ├── Functions.java.html │ │ │ │ │ │ ├── HelloWorldSimpleTag.java.html │ │ │ │ │ │ ├── RepeatSimpleTag.java.html │ │ │ │ │ │ ├── book.html │ │ │ │ │ │ ├── book.jsp │ │ │ │ │ │ ├── book.jsp.html │ │ │ │ │ │ ├── hello.html │ │ │ │ │ │ ├── hello.jsp │ │ │ │ │ │ ├── hello.jsp.html │ │ │ │ │ │ ├── repeat.html │ │ │ │ │ │ ├── repeat.jsp │ │ │ │ │ │ └── repeat.jsp.html │ │ │ │ │ └── tagfiles │ │ │ │ │ │ ├── displayProducts.tag.html │ │ │ │ │ │ ├── hello.html │ │ │ │ │ │ ├── hello.jsp │ │ │ │ │ │ ├── hello.jsp.html │ │ │ │ │ │ ├── helloWorld.tag.html │ │ │ │ │ │ ├── panel.html │ │ │ │ │ │ ├── panel.jsp │ │ │ │ │ │ ├── panel.jsp.html │ │ │ │ │ │ ├── panel.tag.html │ │ │ │ │ │ ├── products.html │ │ │ │ │ │ ├── products.jsp │ │ │ │ │ │ └── products.jsp.html │ │ │ │ ├── jsptoserv │ │ │ │ │ ├── ServletToJsp.java.html │ │ │ │ │ ├── hello.jsp │ │ │ │ │ ├── hello.jsp.html │ │ │ │ │ ├── jsptoservlet.jsp │ │ │ │ │ ├── jsptoservlet.jsp.html │ │ │ │ │ └── jts.html │ │ │ │ ├── num │ │ │ │ │ ├── numguess.html │ │ │ │ │ ├── numguess.jsp │ │ │ │ │ └── numguess.jsp.html │ │ │ │ ├── plugin │ │ │ │ │ ├── applet │ │ │ │ │ │ ├── Clock2.class │ │ │ │ │ │ └── Clock2.java │ │ │ │ │ ├── plugin.html │ │ │ │ │ ├── plugin.jsp │ │ │ │ │ └── plugin.jsp.html │ │ │ │ ├── security │ │ │ │ │ └── protected │ │ │ │ │ │ ├── error.jsp │ │ │ │ │ │ ├── error.jsp.html │ │ │ │ │ │ ├── index.jsp │ │ │ │ │ │ ├── index.jsp.html │ │ │ │ │ │ ├── login.jsp │ │ │ │ │ │ └── login.jsp.html │ │ │ │ ├── sessions │ │ │ │ │ ├── DummyCart.html │ │ │ │ │ ├── carts.html │ │ │ │ │ ├── carts.jsp │ │ │ │ │ ├── carts.jsp.html │ │ │ │ │ └── crt.html │ │ │ │ ├── simpletag │ │ │ │ │ ├── foo.html │ │ │ │ │ ├── foo.jsp │ │ │ │ │ └── foo.jsp.html │ │ │ │ ├── snp │ │ │ │ │ ├── snoop.html │ │ │ │ │ ├── snoop.jsp │ │ │ │ │ └── snoop.jsp.html │ │ │ │ ├── source.jsp │ │ │ │ ├── source.jsp.html │ │ │ │ ├── tagplugin │ │ │ │ │ ├── choose.html │ │ │ │ │ ├── choose.jsp │ │ │ │ │ ├── choose.jsp.html │ │ │ │ │ ├── foreach.html │ │ │ │ │ ├── foreach.jsp │ │ │ │ │ ├── foreach.jsp.html │ │ │ │ │ ├── howto.html │ │ │ │ │ ├── if.html │ │ │ │ │ ├── if.jsp │ │ │ │ │ ├── if.jsp.html │ │ │ │ │ └── notes.html │ │ │ │ └── xml │ │ │ │ │ ├── xml.html │ │ │ │ │ ├── xml.jsp │ │ │ │ │ └── xml.jsp.html │ │ │ ├── servlets │ │ │ │ ├── cookies.html │ │ │ │ ├── helloworld.html │ │ │ │ ├── images │ │ │ │ │ ├── code.gif │ │ │ │ │ ├── execute.gif │ │ │ │ │ └── return.gif │ │ │ │ ├── index.html │ │ │ │ ├── nonblocking │ │ │ │ │ └── bytecounter.html │ │ │ │ ├── reqheaders.html │ │ │ │ ├── reqinfo.html │ │ │ │ ├── reqparams.html │ │ │ │ └── sessions.html │ │ │ └── websocket │ │ │ │ ├── chat.xhtml │ │ │ │ ├── drawboard.xhtml │ │ │ │ ├── echo.xhtml │ │ │ │ ├── index.xhtml │ │ │ │ └── snake.xhtml │ │ ├── hello │ │ │ ├── WEB-INF │ │ │ │ ├── classes │ │ │ │ │ ├── AnotherHelloServlet.class │ │ │ │ │ ├── AnotherHelloServlet.java │ │ │ │ │ ├── HelloServlet.class │ │ │ │ │ └── HelloServlet.java │ │ │ │ └── web.xml │ │ │ └── index.html │ │ ├── host-manager │ │ │ ├── META-INF │ │ │ │ └── context.xml │ │ │ ├── WEB-INF │ │ │ │ ├── jsp │ │ │ │ │ ├── 401.jsp │ │ │ │ │ ├── 403.jsp │ │ │ │ │ └── 404.jsp │ │ │ │ └── web.xml │ │ │ ├── images │ │ │ │ ├── asf-logo.svg │ │ │ │ └── tomcat.gif │ │ │ ├── index.jsp │ │ │ └── manager.xml │ │ └── manager │ │ │ ├── META-INF │ │ │ └── context.xml │ │ │ ├── WEB-INF │ │ │ ├── jsp │ │ │ │ ├── 401.jsp │ │ │ │ ├── 403.jsp │ │ │ │ ├── 404.jsp │ │ │ │ ├── connectorCerts.jsp │ │ │ │ ├── connectorCiphers.jsp │ │ │ │ ├── connectorTrustedCerts.jsp │ │ │ │ ├── sessionDetail.jsp │ │ │ │ └── sessionsList.jsp │ │ │ └── web.xml │ │ │ ├── images │ │ │ ├── asf-logo.svg │ │ │ └── tomcat.gif │ │ │ ├── index.jsp │ │ │ ├── status.xsd │ │ │ └── xform.xsl │ └── work │ │ └── Catalina │ │ └── localhost │ │ ├── ROOT │ │ └── org │ │ │ └── apache │ │ │ └── jsp │ │ │ ├── index_jsp.class │ │ │ └── index_jsp.java │ │ └── manager │ │ └── org │ │ └── apache │ │ └── jsp │ │ └── WEB_002dINF │ │ └── jsp │ │ ├── _401_jsp.class │ │ └── _401_jsp.java └── README.md ├── reliable-services-actor-sample ├── .gitignore ├── Actors │ ├── ActorCounter │ │ ├── .project │ │ ├── CounterActorApplication │ │ │ ├── ApplicationManifest.xml │ │ │ └── CounterActorPkg │ │ │ │ ├── Code │ │ │ │ └── sample.sh │ │ │ │ ├── Config │ │ │ │ └── Settings.xml │ │ │ │ ├── Data │ │ │ │ └── _readme.txt │ │ │ │ └── ServiceManifest.xml │ │ ├── CounterActorService │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── counteractor │ │ │ │ ├── CounterActorHost.java │ │ │ │ └── CounterActorImpl.java │ │ ├── CounterInterface │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── counterinterface │ │ │ │ └── CounterActor.java │ │ ├── PublishProfiles │ │ │ ├── Cloud.json │ │ │ └── Local.json │ │ ├── Readme │ │ ├── Scripts │ │ │ ├── connect.sh │ │ │ ├── deploy.sh │ │ │ ├── install.sh │ │ │ ├── uninstall.sh │ │ │ └── upgrade.sh │ │ ├── TestClient │ │ │ ├── .project │ │ │ ├── HowToRun.txt │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── counterclient │ │ │ │ └── CounterClient.java │ │ ├── build.gradle │ │ └── settings.gradle │ ├── VisualObjectActor │ │ ├── .project │ │ ├── PublishProfiles │ │ │ ├── Cloud.json │ │ │ └── Local.json │ │ ├── Readme │ │ ├── Scripts │ │ │ ├── connect.sh │ │ │ ├── deploy.sh │ │ │ ├── install.sh │ │ │ ├── uninstall.sh │ │ │ └── upgrade.sh │ │ ├── VisualObjectActorService │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── visualobjectactorservice │ │ │ │ ├── VisualObjectActorHost.java │ │ │ │ └── VisualObjectActorImpl.java │ │ ├── VisualObjectApplication │ │ │ ├── ApplicationManifest.xml │ │ │ ├── VisualObjects.ActorServicePkg │ │ │ │ ├── Code │ │ │ │ │ └── sample.sh │ │ │ │ ├── Config │ │ │ │ │ └── Settings.xml │ │ │ │ ├── Data │ │ │ │ │ └── _readme.txt │ │ │ │ └── ServiceManifest.xml │ │ │ └── VisualObjects.WebServicePkg │ │ │ │ ├── Code │ │ │ │ ├── sample.sh │ │ │ │ └── wwwroot │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ └── paper-full.js │ │ │ │ ├── Config │ │ │ │ └── Settings.xml │ │ │ │ ├── Data │ │ │ │ └── _readme.txt │ │ │ │ └── ServiceManifest.xml │ │ ├── VisualObjectCommon │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── visualobjectcommon │ │ │ │ ├── Color.java │ │ │ │ ├── Coordinate.java │ │ │ │ ├── Speed.java │ │ │ │ ├── VisualObject.java │ │ │ │ └── VisualObjectActor.java │ │ ├── VisualObjectWebService │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── visualobjectwebservice │ │ │ │ ├── VisualObjectWebService.java │ │ │ │ ├── VisualObjectWebServiceHost.java │ │ │ │ ├── VisualObjectsBox.java │ │ │ │ ├── VisualObjectsBoxImpl.java │ │ │ │ ├── WebCommunicationListener.java │ │ │ │ └── WebSocketApp.java │ │ ├── build.gradle │ │ └── settings.gradle │ ├── build.gradle │ └── settings.gradle ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Services │ ├── EchoServer │ │ ├── EchoServer1.0 │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── EchoServerApplication │ │ │ │ ├── ApplicationManifest.xml │ │ │ │ └── EchoServerPkg │ │ │ │ │ ├── Code │ │ │ │ │ └── sample.sh │ │ │ │ │ ├── Config │ │ │ │ │ └── _readme.txt │ │ │ │ │ ├── Data │ │ │ │ │ └── _readme.txt │ │ │ │ │ └── ServiceManifest.xml │ │ │ ├── EchoServerService │ │ │ │ ├── .project │ │ │ │ ├── build.gradle │ │ │ │ ├── settings.gradle │ │ │ │ └── src │ │ │ │ │ └── echoserver │ │ │ │ │ ├── EchoServerService.java │ │ │ │ │ ├── EchoServerServiceHost.java │ │ │ │ │ ├── HttpServer.java │ │ │ │ │ └── WebCommunicationListener.java │ │ │ ├── PublishProfiles │ │ │ │ ├── Cloud.json │ │ │ │ └── Local.json │ │ │ ├── ReadMe │ │ │ ├── Scripts │ │ │ │ ├── connect.sh │ │ │ │ ├── deploy.sh │ │ │ │ ├── install.sh │ │ │ │ ├── uninstall.sh │ │ │ │ └── upgrade.sh │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ ├── EchoServer2.0 │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── EchoServerApplication2 │ │ │ │ ├── ApplicationManifest.xml │ │ │ │ └── EchoServerPkg │ │ │ │ │ ├── Code │ │ │ │ │ └── sample.sh │ │ │ │ │ ├── Config │ │ │ │ │ └── _readme.txt │ │ │ │ │ ├── Data │ │ │ │ │ └── _readme.txt │ │ │ │ │ └── ServiceManifest.xml │ │ │ ├── EchoServerService │ │ │ │ ├── .project │ │ │ │ ├── build.gradle │ │ │ │ ├── setttings.gradle │ │ │ │ └── src │ │ │ │ │ └── echoserver │ │ │ │ │ ├── EchoServerService.java │ │ │ │ │ ├── EchoServerServiceHost.java │ │ │ │ │ ├── HttpServer.java │ │ │ │ │ └── WebCommunicationListener.java │ │ │ ├── PublishProfiles │ │ │ │ ├── Cloud.json │ │ │ │ └── Local.json │ │ │ ├── Readme │ │ │ ├── Scripts │ │ │ │ ├── connect.sh │ │ │ │ ├── deploy.sh │ │ │ │ ├── install.sh │ │ │ │ ├── uninstall.sh │ │ │ │ └── upgrade.sh │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ ├── build.gradle │ │ └── settings.gradle │ ├── Gateway │ │ ├── .project │ │ ├── GatewayApplication │ │ │ ├── ApplicationManifest.xml │ │ │ └── GatewayPkg │ │ │ │ ├── Code │ │ │ │ └── sample.sh │ │ │ │ ├── Config │ │ │ │ └── Settings.xml │ │ │ │ ├── Data │ │ │ │ └── _readme.txt │ │ │ │ └── ServiceManifest.xml │ │ ├── GatewayService │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── gateway │ │ │ │ ├── GatewayService.java │ │ │ │ ├── GatewayServiceHost.java │ │ │ │ └── HttpCommunicationListener.java │ │ ├── PublishProfiles │ │ │ ├── Cloud.json │ │ │ └── Local.json │ │ ├── Readme │ │ ├── Scripts │ │ │ ├── connect.sh │ │ │ ├── deploy.sh │ │ │ ├── install.sh │ │ │ ├── uninstall.sh │ │ │ └── upgrade.sh │ │ ├── build.gradle │ │ └── settings.gradle │ ├── WatchDog │ │ ├── .project │ │ ├── PublishProfiles │ │ │ ├── Cloud.json │ │ │ └── Local.json │ │ ├── Readme │ │ ├── Scripts │ │ │ ├── connect.sh │ │ │ ├── deploy.sh │ │ │ ├── install.sh │ │ │ ├── uninstall.sh │ │ │ └── upgrade.sh │ │ ├── WatchdogApplication │ │ │ ├── ApplicationManifest.xml │ │ │ └── WatchdogPkg │ │ │ │ ├── Code │ │ │ │ └── sample.sh │ │ │ │ ├── Config │ │ │ │ ├── Settings.xml │ │ │ │ └── _readme.txt │ │ │ │ ├── Data │ │ │ │ └── _readme.txt │ │ │ │ └── ServiceManifest.xml │ │ ├── WatchdogService │ │ │ ├── .project │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── watchdog │ │ │ │ ├── CommunicationExceptionHandler.java │ │ │ │ ├── HttpCommunicationClient.java │ │ │ │ ├── HttpCommunicationClientFactory.java │ │ │ │ ├── HttpCommunicationListener.java │ │ │ │ ├── Monitor.java │ │ │ │ ├── WatchDogService.java │ │ │ │ └── WatchDogServiceHost.java │ │ ├── build.gradle │ │ └── settings.gradle │ ├── build.gradle │ └── settings.gradle ├── build.gradle └── settings.gradle ├── reliable-services-embedded-jetty-sample ├── .gitignore ├── .project ├── EmbeddedJettyApplication │ ├── ApplicationManifest.xml │ └── EmbeddedJettyServerPkg │ │ ├── Code │ │ └── entryPoint.sh │ │ ├── Config │ │ └── Settings.xml │ │ ├── Data │ │ └── _readme.txt │ │ └── ServiceManifest.xml ├── EmbeddedJettyServer │ ├── .project │ ├── build.gradle │ └── src │ │ └── statelessservice │ │ ├── EmbeddedJettyServerService.java │ │ ├── EmbeddedJettyServerServiceHost.java │ │ └── HttpCommunicationListener.java ├── PublishProfiles │ ├── Cloud.json │ └── Local.json ├── README.md ├── Scripts │ ├── connect.sh │ ├── deploy.sh │ ├── install.sh │ ├── uninstall.sh │ └── upgrade.sh ├── build.gradle └── settings.gradle └── reliable-services-httpcommunication-sample ├── .gitignore ├── README.md └── Voting ├── .project ├── PublishProfiles ├── Cloud.json └── Local.json ├── Scripts ├── connect.sh ├── deploy.sh ├── install.sh ├── uninstall.sh └── upgrade.sh ├── VotingApplication ├── ApplicationManifest.xml ├── VotingDataServicePkg │ ├── Code │ │ └── entryPoint.sh │ ├── Config │ │ └── Settings.xml │ ├── Data │ │ └── _readme.txt │ └── ServiceManifest.xml └── VotingWebPkg │ ├── Code │ ├── entryPoint.sh │ └── wwwroot │ │ ├── favicon.ico │ │ └── index.html │ ├── Config │ └── Settings.xml │ ├── Data │ └── _readme.txt │ └── ServiceManifest.xml ├── VotingDataService ├── .project ├── build.gradle └── src │ └── statefulservice │ ├── HttpCommunicationListener.java │ ├── HttpServer.java │ ├── VotingDataService.java │ └── VotingDataServiceHost.java ├── VotingWeb ├── .project ├── build.gradle └── src │ └── statelessservice │ ├── CommunicationExceptionHandler.java │ ├── HttpCommunicationClient.java │ ├── HttpCommunicationClientFactory.java │ ├── HttpCommunicationListener.java │ ├── VotingWebService.java │ └── VotingWebServiceHost.java ├── build.gradle └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | build/ 3 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/.DS_Store -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/.DS_Store -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/bin/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/bin/bootstrap.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/bin/commons-daemon-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/bin/commons-daemon-native.tar.gz -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/bin/commons-daemon.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/bin/commons-daemon.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/bin/tomcat-juli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/bin/tomcat-juli.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/bin/tomcat-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/bin/tomcat-native.tar.gz -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/annotations-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/annotations-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-ant.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-ant.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-ha.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-ha.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-storeconfig.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-storeconfig.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-tribes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina-tribes.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/catalina.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/ecj-4.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/ecj-4.6.3.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/el-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/el-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jasper-el.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jasper-el.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jasper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jasper.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jaspic-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jaspic-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/jsp-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/servlet-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-coyote.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-coyote.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-dbcp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-dbcp.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-es.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-es.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-fr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-fr.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-ja.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-i18n-ja.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-jdbc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-jdbc.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-jni.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-jni.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-util-scan.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-util-scan.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-util.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-websocket.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/tomcat-websocket.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/lib/websocket-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/lib/websocket-api.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/catalina.2018-03-05.log: -------------------------------------------------------------------------------- 1 | 05-Mar-2018 08:46:14.052 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-9999"] 2 | 05-Mar-2018 08:46:14.080 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["ajp-nio-8009"] 3 | 05-Mar-2018 08:46:14.136 INFO [Thread-5] org.apache.catalina.core.StandardService.stopInternal Stopping service [Catalina] 4 | 05-Mar-2018 08:46:14.184 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["http-nio-9999"] 5 | 05-Mar-2018 08:46:14.189 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["ajp-nio-8009"] 6 | 05-Mar-2018 08:46:14.191 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["http-nio-9999"] 7 | 05-Mar-2018 08:46:14.192 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["ajp-nio-8009"] 8 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-02.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-02.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-09.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-09.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-12.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-03-12.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-05-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/host-manager.2018-05-21.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost.2018-03-05.log: -------------------------------------------------------------------------------- 1 | 05-Mar-2018 08:46:14.171 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log SessionListener: contextDestroyed() 2 | 05-Mar-2018 08:46:14.171 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log ContextListener: contextDestroyed() 3 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost.2018-03-09.log: -------------------------------------------------------------------------------- 1 | 09-Mar-2018 15:23:08.007 INFO [main] org.apache.catalina.core.ApplicationContext.log ContextListener: contextInitialized() 2 | 09-Mar-2018 15:23:08.007 INFO [main] org.apache.catalina.core.ApplicationContext.log SessionListener: contextInitialized() 3 | 09-Mar-2018 15:23:08.008 INFO [main] org.apache.catalina.core.ApplicationContext.log ContextListener: attributeAdded('StockTicker', 'async.Stockticker@4d1c00d0') 4 | 09-Mar-2018 17:22:12.703 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log SessionListener: contextDestroyed() 5 | 09-Mar-2018 17:22:12.703 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log ContextListener: contextDestroyed() 6 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost.2018-05-21.log: -------------------------------------------------------------------------------- 1 | 21-May-2018 23:24:02.663 INFO [main] org.apache.catalina.core.ApplicationContext.log ContextListener: contextInitialized() 2 | 21-May-2018 23:24:02.664 INFO [main] org.apache.catalina.core.ApplicationContext.log SessionListener: contextInitialized() 3 | 21-May-2018 23:24:02.669 INFO [main] org.apache.catalina.core.ApplicationContext.log ContextListener: attributeAdded('StockTicker', 'async.Stockticker@1ce24091') 4 | 21-May-2018 23:27:42.252 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log SessionListener: contextDestroyed() 5 | 21-May-2018 23:27:42.252 INFO [Thread-5] org.apache.catalina.core.ApplicationContext.log ContextListener: contextDestroyed() 6 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost_access_log.2018-03-09.txt: -------------------------------------------------------------------------------- 1 | 0:0:0:0:0:0:0:1 - - [09/Mar/2018:15:24:10 -0800] "GET /hello HTTP/1.1" 302 - 2 | 0:0:0:0:0:0:0:1 - - [09/Mar/2018:15:24:10 -0800] "GET /hello/ HTTP/1.1" 200 129 3 | 0:0:0:0:0:0:0:1 - - [09/Mar/2018:15:24:10 -0800] "GET /favicon.ico HTTP/1.1" 200 21630 4 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost_access_log.2018-05-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/localhost_access_log.2018-05-21.txt -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-03-02.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-03-02.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-03-09.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-03-09.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-05-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/logs/manager.2018-05-21.log -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/temp/safeToDelete.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/temp/safeToDelete.tmp -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-button.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-middle.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-nav.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/bg-upper.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/favicon.ico -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat-power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat-power.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/ROOT/tomcat.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/appdev/sample/docs/README.txt: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one or more 2 | contributor license agreements. See the NOTICE file distributed with 3 | this work for additional information regarding copyright ownership. 4 | The ASF licenses this file to You under the Apache License, Version 2.0 5 | (the "License"); you may not use this file except in compliance with 6 | the License. You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | This is a dummy README file for the sample 17 | web application. 18 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/appdev/sample/sample.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/appdev/sample/sample.war -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/appdev/sample/web/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/appdev/sample/web/images/tomcat.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/requestProcess/authentication-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/requestProcess/authentication-process.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/requestProcess/request-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/requestProcess/request-process.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/startup/serverStartup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/architecture/startup/serverStartup.pdf -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/add.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/code.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/cors-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/cors-flowchart.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/design.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/docs.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fix.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans400.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans400italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans400italic.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans600.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans600italic.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans700.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/fonts/OpenSans700italic.woff -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/tomcat.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/tomcat.png -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/update.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/docs/images/void.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/CookieExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/CookieExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/HelloWorldExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/HelloWorldExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestHeaderExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestHeaderExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestInfoExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestInfoExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestParamExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/RequestParamExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/ServletToJsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/ServletToJsp.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/SessionExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/SessionExample.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async0$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async0$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async0.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async0.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async1$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async2$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async2.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Async3.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/AsyncStockContextListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/AsyncStockContextListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker$Stock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker$Stock.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/async/Stockticker.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/Entries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/Entries.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/Entry.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/JspCalendar.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/TableBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/cal/TableBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/dates/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/dates/JspCalendar.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/error/Smart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/error/Smart.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/FooTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/FooTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/LogTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/LogTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ShowSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ShowSource.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ValuesTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/examples/ValuesTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/http2/SimpleImagePush.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/http2/SimpleImagePush.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/listeners/ContextListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/listeners/ContextListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/listeners/SessionListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/listeners/SessionListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter$CounterListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter$CounterListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/ByteCounter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter$NumberWriterListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter$NumberWriterListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/nonblocking/NumberWriter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/sessions/DummyCart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/sessions/DummyCart.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers$TrailerFieldSupplier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers$TrailerFieldSupplier.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/trailers/ResponseTrailers.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/util/CookieFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/util/CookieFilter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/util/HTMLFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/util/HTMLFilter.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/validators/DebugValidator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/validators/DebugValidator.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/ExamplesConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/ExamplesConfig.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/chat/ChatAnnotation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/chat/ChatAnnotation.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Client$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Client$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawMessage$ParseException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawMessage$ParseException.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawMessage.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardContextListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardContextListener.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$2.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$3$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint$3.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawboardEndpoint.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$1$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$2.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$MessageType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$MessageType.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room$Player.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/AbstractWebsocketMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/AbstractWebsocketMessage.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/BinaryWebsocketMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/BinaryWebsocketMessage.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/CloseWebsocketMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/CloseWebsocketMessage.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/StringWebsocketMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/drawboard/wsmessages/StringWebsocketMessage.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAnnotation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAnnotation.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation$CompletedFuture.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation$CompletedFuture.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoAsyncAnnotation.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$EchoMessageHandlerBinary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$EchoMessageHandlerBinary.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$EchoMessageHandlerText.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint$EchoMessageHandlerText.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoEndpoint.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoStreamAnnotation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/EchoStreamAnnotation.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/echo/servers.json: -------------------------------------------------------------------------------- 1 | { 2 | "options": {"failByDrop": false}, 3 | "outdir": "./reports/servers", 4 | 5 | "servers": [ 6 | {"agent": "Basic", 7 | "url": "ws://localhost:8080/examples/websocket/echoAnnotation", 8 | "options": {"version": 18}}, 9 | {"agent": "Stream", 10 | "url": "ws://localhost:8080/examples/websocket/echoStreamAnnotation", 11 | "options": {"version": 18}}, 12 | {"agent": "Async", 13 | "url": "ws://localhost:8080/examples/websocket/echoAsyncAnnotation", 14 | "options": {"version": 18}} 15 | ], 16 | 17 | "cases": ["*"], 18 | "exclude-cases": [], 19 | "exclude-agent-cases": {} 20 | } 21 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Direction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Direction.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Direction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | package websocket.snake; 18 | 19 | public enum Direction { 20 | NONE, NORTH, SOUTH, EAST, WEST 21 | } 22 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Location.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Location.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeAnnotation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeAnnotation.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeTimer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeTimer$1.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeTimer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/classes/websocket/snake/SnakeTimer.class -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/lib/taglibs-standard-impl-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/lib/taglibs-standard-impl-1.2.5.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/lib/taglibs-standard-spec-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/lib/taglibs-standard-spec-1.2.5.jar -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/WEB-INF/tags/helloWorld.tag: -------------------------------------------------------------------------------- 1 | 17 | Hello, world! 18 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/error/errorpge.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |
20 | 21 | <%@ page isErrorPage="true" %> 22 |<%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <html> 18 | 19 | <body bgcolor="white"> 20 | <font color="red"> 21 | 22 | VM Memory usage < 50%. 23 | </html> 24 |-------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/forward/two.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | VM Memory usage > 50%. 23 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/code.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/execute.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/images/return.gif -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/include/foo.html: -------------------------------------------------------------------------------- 1 | 17 | To get the current time in ms 18 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/include/foo.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | 17 | --%><%= System.currentTimeMillis() %> 18 | -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/include/foo.jsp.html: -------------------------------------------------------------------------------- 1 |
<%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | 17 | --%><%= System.currentTimeMillis() %> 18 |-------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsp2/jspx/textRotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-fabric-java-getting-started/f098f96822688c8e00b3d806791e889567d3d53a/container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsp2/misc/coda.jspf: -------------------------------------------------------------------------------- 1 | 17 |
<!-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --> 17 | <hr> 18 | <center> 19 | This banner included with <include-coda> 20 | </center> 21 | <hr> 22 |-------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsp2/misc/prelude.jspf: -------------------------------------------------------------------------------- 1 | 17 |
<!-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --> 17 | <hr> 18 | <center> 19 | This banner included with <include-prelude> 20 | </center> 21 | <hr> 22 |-------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsp2/tagfiles/helloWorld.tag.html: -------------------------------------------------------------------------------- 1 |
<!-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --> 17 | Hello, world! 18 |-------------------------------------------------------------------------------- /container-apache-tomcat-web-server-sample/ApacheTomcat/webapps/examples/jsp/jsptoserv/hello.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 |