Skip to content

Commit 8204d33

Browse files
Fix site build
1 parent 217f888 commit 8204d33

File tree

2 files changed

+33
-29
lines changed

2 files changed

+33
-29
lines changed

src/site/xdoc/docs/index.xml

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0"?>
12
<!--
23
~ Licensed to the Apache Software Foundation (ASF) under one
34
~ or more contributor license agreements. See the NOTICE file
@@ -16,21 +17,24 @@
1617
~ specific language governing permissions and limitations
1718
~ under the License.
1819
-->
20+
<document xmlns="http://maven.apache.org/XDOC/2.0"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
23+
<properties>
24+
<title>Apache Axis2 Documentation Index</title>
25+
</properties>
1926

20-
<html xmlns="http://www.w3.org/1999/xhtml">
21-
<head>
22-
<meta name="generator" content=
23-
"HTML Tidy for Windows (vers 14 June 2007), see www.w3.org" />
24-
<title></title>
25-
</head>
26-
<frameset cols="260,*" border="1" frameborder="yes" framespacing=
27-
"0" margin="0">
28-
<frame name="leftFrame" src="toc.html" noresize="noresize"
29-
scrolling="yes" />
30-
<frame name="mainFrame" src="contents.html" />
31-
<noframes>
32-
<body>
33-
</body>
34-
</noframes>
35-
</frameset>
36-
</html>
27+
<body>
28+
<h1>Apache Axis2 Documentation</h1>
29+
30+
<p>Welcome to the Apache Axis2 documentation. Please use the navigation menu to browse the available documentation topics.</p>
31+
32+
<h2>Key Documentation Topics</h2>
33+
<ul>
34+
<li><a href="contents.html">Contents</a> - Main documentation contents</li>
35+
<li><a href="toc.html">Table of Contents</a> - Detailed table of contents</li>
36+
<li><a href="json_support_gson.xml">JSON Support</a> - JSON processing with GSON and Moshi</li>
37+
<li><a href="wildfly-http2-integration-guide.xml">WildFly HTTP/2 Integration Guide</a> - HTTP/2 integration lessons learned</li>
38+
</ul>
39+
</body>
40+
</document>

src/site/xdoc/docs/wildfly-http2-integration-guide.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0"?>
12
<!--
23
~ Licensed to the Apache Software Foundation (ASF) under one
34
~ or more contributor license agreements. See the NOTICE file
@@ -16,16 +17,14 @@
1617
~ specific language governing permissions and limitations
1718
~ under the License.
1819
-->
20+
<document xmlns="http://maven.apache.org/XDOC/2.0"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
23+
<properties>
24+
<title>WildFly + Axis2 HTTP/2 Integration - what works, what didn't, and lessons learned</title>
25+
</properties>
1926

20-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
21-
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
22-
<html xmlns="http://www.w3.org/1999/xhtml">
23-
<head>
24-
<meta http-equiv="content-type" content=""/>
25-
<title>WildFly + Axis2 HTTP/2 Integration - what works, what didn't, and lessons learned</title>
26-
</head>
27-
28-
<body lang="en">
27+
<body>
2928

3029
<h1>WildFly + Axis2 HTTP/2 Integration - Failed Attempts and Lessons Learned</h1>
3130

@@ -362,7 +361,7 @@ curl -k --http2 --location 'https://localhost:8443/services/YourService' \
362361
# - No class loader conflicts
363362
</pre>
364363

365-
<h2>Buffer Size Configuration Analysis & Potential Clashes</h2>
364+
<h2>Buffer Size Configuration Analysis &amp; Potential Clashes</h2>
366365

367366
<p><strong>⚠️ CRITICAL ANALYSIS</strong>: While the configurations are coordinated, there are potential efficiency issues and clashes that need attention:</p>
368367

@@ -821,5 +820,6 @@ public class EnhancedMoshiJsonBuilder {
821820

822821
<p><strong>For the Axis2 Community</strong>: This demonstrates how architectural analysis of failed integration attempts can reveal the correct optimization approach. The WildFly integration research identified the real architectural mismatch (mandatory <a href="json_support_gson.xml">dummy SOAP envelope</a>) and provided the async processing patterns that made Enhanced Moshi H2 possible, delivering superior JSON performance improvements through architectural alignment rather than integration complexity.</p>
823822

824-
</body>
825-
</html>
823+
824+
</body>
825+
</document>

0 commit comments

Comments
 (0)