⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 run.sh

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 SH
字号:
#!/bin/sh## Driver script to run the interop 3 test clients against# a list of endpoints (one for each test)## Usage: run <endpointfile>## Where <endpointfile> has the syntax#   TESTNAME="<endpoint>"#if [ $# -ne 1 ]; then    echo "Usage: run endpointfile"    exit 1fiendpoints=$1# set up endpoints. $endpoints# EmptySAecho EmptySAif [ ! -z "${Import1}" ]; then   java test.wsdl.interop3.emptysa.EmptySATestCase ${EmptySA}echo "======================================================="fi# Import1echo Import1if [ ! -z "${Import1}" ]; then  java test.wsdl.interop3.import1.Import1TestCase ${Import1}echo "======================================================="fi# Import2echo Import2if [ ! -z "${Import2}" ]; thenjava test.wsdl.interop3.import2.Import2TestCase ${Import2}echo "======================================================="fi# Import3echo Import3if [ ! -z "${Import3}" ]; thenjava test.wsdl.interop3.import3.Import3TestCase ${Import3}echo "======================================================="fi# Compound1echo Compound1if [ ! -z "${Compound1}" ]; thenjava test.wsdl.interop3.compound1.Compound1TestCase ${Compound1}echo "======================================================="fi# Compound2echo Compound2if [ ! -z "${Compound2}" ]; thenjava test.wsdl.interop3.compound2.Compound2TestCase ${Compound2}echo "======================================================="fi# DocLitecho DocLitif [ ! -z "${DocLit}" ]; thenjava test.wsdl.interop3.docLit.DocLitTestCase ${DocLit}echo "======================================================="fi# DocLitParamecho DocLitParamif [ ! -z "${DocLitParam}" ]; thenjava test.wsdl.interop3.docLitParam.DocLitParamTestCase ${DocLitParam}echo "======================================================="fi# RpcEncecho RpcEncif [ ! -z "${RpcEnc}" ]; thenjava test.wsdl.interop3.rpcEnc.RpcEncTestCase ${RpcEnc}echo "======================================================="fi# TestListecho TestListif [ ! -z "${TestList}" ]; thenjava test.wsdl.interop3.groupE.client.InteropTestListServiceTestClient -l ${TestList}echo "======================================================="fi# TestHeaders#if [ ! -z "${TestHeaders}" ]; then#java test.wsdl.interop3.emptySA.EmptySATestCase ${TestHeaders}#echo "======================================================="#fi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -