Commit 570d6e1fbb141fffbbd3a60d9d8f1c81f9127650
1 parent
08730740
WSA-93
"Add integration/oem no so that integrators may associate a custom document reference" Implemented. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7867 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
5 additions
and
4 deletions
ktwebservice/nunit/makefile
| 1 | -RESULTS= authentication.result document_detail.result document_contents.result document_history.result folder.result document_metadata.result document_add.result document_checkout.result document_type.result document_links.result document_owner.result document_rename.result document_workflow.result document_copy.result document_system_metadata.result query.result document_download.result | |
| 1 | +RESULTS=folder.result document_metadata.result authentication.result document_contents.result document_detail.result document_history.result document_add.result document_checkout.result document_links.result document_owner.result document_rename.result document_workflow.result document_copy.result document_move.result document_system_metadata.result query.result document_download.result document_type.result document_oem_no.result | |
| 2 | 2 | PROXY=KTproxy.cs |
| 3 | 3 | WSDL=ktdms.wsdl |
| 4 | 4 | ROOT_URL=http://ktdms.trunk |
| 5 | +#ROOT_URL=http://192.168.1.111 | |
| 5 | 6 | WSDL_URL=${ROOT_URL}/ktwebservice/index.php?wsdl |
| 6 | 7 | |
| 7 | 8 | all: ${RESULTS} |
| 8 | 9 | |
| 9 | 10 | results: clean-results ${RESULTS} |
| 10 | 11 | |
| 11 | -KTproxy.dll: KTproxy.cs helper.cs | |
| 12 | - mcs -r:System.Web.Services -r:System.Data.dll /target:library KTproxy.cs helper.cs | |
| 12 | +KTproxy.dll: KTproxy.cs helper.cs | |
| 13 | + mcs -r:System.Web.Services -r:System.Data.dll /target:library KTproxy.cs intercept.cs helper.cs | |
| 13 | 14 | |
| 14 | 15 | KTproxy.cs: ktdms.wsdl |
| 15 | 16 | wsdl -out:${PROXY} ${WSDL} |
| ... | ... | @@ -23,7 +24,7 @@ clean: |
| 23 | 24 | clean-results: |
| 24 | 25 | rm -f ${RESULTS} |
| 25 | 26 | |
| 26 | -%.dll: %.cs KTproxy.dll | |
| 27 | +%.dll: %.cs KTproxy.dll | |
| 27 | 28 | mcs -r:System.Web.Services -r:nunit.framework /r:KTproxy.dll -debug /target:library -out:$@ $< |
| 28 | 29 | |
| 29 | 30 | %.result: %.dll | ... | ... |