##################### # Parser Properties # ##################### # Typical values are: # For Xerces, on Windows: # xmlParser = xerces # xmlParserLibrary = xerces-c_2 # For Xerces, on Unix: # xmlParser = xerces # xmlParserLibrary = xerces-c # For Expat, on Unix: # xmlParser = expat # xmlParserLibrary = expat # Parsers to be used xmlParser.xml4c = false xmlParser.xerces = true xmlParser.expat = false ## Values used for XML4C xml4c.xmlParserLibrary = xml4c xml4c.dir.xmlParser = ${env.XML4C_HOME} xml4c.xmlParserLibraryName = axis_xml4c ## Values used for Xerces xerces.xmlParserLibrary = xerces-c xerces.dir.xmlParser = ${env.XERCES_HOME} xerces.xmlParserLibraryName = axis_xerces ## Values used for Expat expat.xmlParserLibrary = expat expat.dir.xmlParser = ${env.EXPAT_HOME} expat.xmlParserLibraryName = axis_expat # Name for compiled XML Parser library - excluding any prefix or suffix # eg: For Windows : axis_xmlParser will produce axis_xmlParser.dll # For Unix : axis_xmlParser will produce libaxis_xmlParser.so xmlParserLibraryName = axis_xmlParser ######################## # Transport Properties # ######################## # Transports to be used transport.axis = true transport.axis2 = true transport.libwww = false ## Values used for axis axis.transportLibraryName = axis_transport ## Values used for axis2 axis2.transportLibraryName = axis2_transport ## Values used for libwww libwww.transportLibraryName = libwww_transport # Name for compiled transport library - excluding any prefix or suffix # eg: For Windows : axis_transport will produce axis_transport.dll # For Unix : axis_transport will produce libaxis_transport.so # transportLibraryName = axis_transport ##################### # Client Properties # ##################### # Name for compiled client - excluding any prefix or suffix # eg: For Windows : axis_client will produce axis_client.dll # For Unix : axis_client will produce libaxis_client.so clientLibraryName = axis_client ############################ # Server Engine Properties # ############################ # Name for compiled server engine - excluding any prefix or suffix # eg: For Windows : axis_server will produce axis_server.dll # For Unix : axis_server will produce libaxis_server.so serverEngineLibraryName = axis_server ################################# # Simple Axis Server Properties # ################################# # Is Simple Axis Server to be used? server.simpleAxisServer = false # Name for compiled server engine - excluding any prefix or suffix # eg: For Windows : simple_axis_server will produce simple_axis_server.exe # For Unix : simple_axis_server will produce simple_axis_server simpleAxisServerExecutableName = simple_axis_server ##################### # Apache Properties # ##################### # Apache versions to be used server.apache13 = true server.apache20 = true ## Values used for Apache 1.3 apache13.dir.server = ${env.APACHE_HOME} apache13.serverLibraryName = mod_axis ## Values used for Apache 2.0 apache20.dir.server = ${env.APACHE2_HOME} apache20.serverLibraryName = mod_axis2 # Name for compiled Apache plugin library - excluding any prefix or suffix # eg: For Windows : axis_apache will produce axis_apache.dll # For Unix : axis_apache will produce libaxis_apache.so serverLibraryName = mod_axis #################### # Trace Properties # #################### # Instrument the Axis C++ source code with entry/exit trace dir.src.instrumented = ${basedir}/../../../obj/src ####################################### # Properties for compiling C/C++ code # ####################################### # Directory in which to place compiled libraries dir.bin = ${basedir}/../../../obj/bin # Directory in which to place object files dir.objects = ${basedir}/../../../obj/objects #################################### # Properties for compiling WSDL2Ws # #################################### # Location of Axis JARs dir.axisJARs = ${env.AXISJAVA_LIB} # Directory in which to place compiled Java classes dir.classes = ${basedir}/../../../obj/classes ########################################### # Properties for packaging Binary release # ########################################### release = axis-c-${version}-${platform} dir.release = ${basedir}/../../../obj/package/${release} ############################### # Properties for Deliverables # ############################### dir.zips = ${basedir}/../../../zips ############################ # Properties for packaging # ############################ # Base directory for packaging - not used directly within build.xml, just used to simplify this property file dir.package = ${basedir}/deploy # Directory in which to place DLLs - Only used for Windows platform dir.package.bin = ${dir.package}/bin # Directory in which to place library files dir.package.lib = ${dir.package}/lib # Directory in which to place header files dir.package.include = ${dir.package}/include # Directory in which to place WSDL2Ws JAR files dir.package.WSDL2Ws = ${dir.classes} # Directory in which to place Documentation dir.package.docs = ${dir.package}/docs ############################################ # Properties for building and running test # ############################################ # Directory in which to place all generated test artifacts # This is also the directory in which code is built and run dir.test.generated = ${basedir}/tests/auto_build/testcases/Output # Log files for test results results.log = ${dir.test.generated}/results.log # Prefix and suffix used for executables and libraries # Typical values are: # For windows: # executableSuffix = .exe # librarySuffix = .dll # libraryPrefix = # For unix: # executableSuffix = # librarySuffix = .so # libraryPrefix = lib # For AIX (as Unix, except): # librarySuffix = .a executableSuffix = librarySuffix = .so libraryPrefix = lib # Directory containing Axis C libraries # For Windows this should be ${dir.package.bin} # For Unix this should be ${dir.package.lib} dir.libraries = ${dir.package.bin} # May want to uncomment for testing so the build output is used #dir.include = ${dir.package.include} # If only a single language is required then set it here. # Valid values are cpp or c. Default if unset is both. target.lang = cpp # AXISCPP_DEPLOY directory axiscpp_deploy = ${dir.test.generated} # Details of server to be used for testing clients testHost = localhost testPort = 9080 monitorPort = 13260