Aaron McCausland
07/09/2025, 12:08 AM<axis-wsdl2java timeout="360000" output="${generated.src.dir}" verbose="true"
url="${wsdl-1.3.url}" all="true" wrapArrays="true">
But I guess I'm supposed to already understand where that goes. I saw lots of build.xml files in the "samples" folder, but I don't think it was talking about any of those, so maybe it meant the ant-build.xml file? A WinGrep over the various things downloaded for this "quick"-start found ant-build.xml matching that "axis-wsdl2java" in one place. But I can't tell if I'm supposed to add that snippet somewhere (and where to add it) or change the existing one to have those attributes.
Looks like I'm in way over my head. Can I properly learn this stuff without learning all about Java app development first? It seems it would only make me a better developer, but I wonder if I'm starting from the wrong end of the elephant.Anthony OConnor
07/09/2025, 12:14 AMAnthony OConnor
07/09/2025, 12:16 AMNickSuite
07/09/2025, 5:16 AMAaron McCausland
07/11/2025, 9:00 PMAaron McCausland
07/11/2025, 9:07 PMAaron McCausland
07/11/2025, 9:08 PMNickSuite
07/11/2025, 10:02 PMAaron McCausland
07/11/2025, 10:11 PM<target name="w2j-simplebean" depends="j2w-simplebean">
<axis-wsdl2java output="${build.dir}/java" testcase="true" url="./simplebean.wsdl">
<mapping namespace="<http://localhost:8080/axis/services/SimpleBean>" package="com.test.simplebean"/>
</axis-wsdl2java>
</target>
to
<target name="w2j-simplebean" depends="j2w-simplebean">
<axis-wsdl2java output="${build.dir}/java" testcase="true" url="./simplebean.wsdl" all="true">
<mapping namespace="<http://localhost:8080/axis/services/SimpleBean>" package="com.test.simplebean"/>
</axis-wsdl2java>
</target>
Even though it only resembles the example in the quickstart guide (has no wrapArrays or timeout attribute, for example).Aaron McCausland
07/11/2025, 10:23 PMShawn Talbert
07/23/2025, 3:49 PMAaron McCausland
07/28/2025, 7:02 PMAaron McCausland
07/28/2025, 7:04 PMShawn Talbert
07/29/2025, 2:52 AMjava
it has to resolve to a single executable of a particular version.