diff options
author | damitha | 2011-06-02 04:32:17 +0000 |
---|---|---|
committer | damitha | 2011-06-02 04:32:17 +0000 |
commit | a66e189a8b3b6a42a2dd9eb69245309b6590dc61 (patch) | |
tree | 0beffa1eb0a051b1209828bbca7cf5654168383c /samples | |
parent | 97c2b8711363403b621b0ecd7cb913b42d77ff04 (diff) | |
download | axis2c-a66e189a8b3b6a42a2dd9eb69245309b6590dc61.tar.gz axis2c-a66e189a8b3b6a42a2dd9eb69245309b6590dc61.tar.bz2 |
Adding README for the NTML client example
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1130402 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'samples')
-rw-r--r-- | samples/client/ntlm/README | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/samples/client/ntlm/README b/samples/client/ntlm/README new file mode 100644 index 0000000..18d89cd --- /dev/null +++ b/samples/client/ntlm/README @@ -0,0 +1,23 @@ +This folder contain examples of using NTLM authentication for Axis2/C clients. +Before running the samples you need to build Axis2/C enabling NTLM authentication with a valid +NTLM external library. For example to enable NTLM support with Heimdal NTML library give configure option +configure --ehanble-heimdal when building Axis2/C + +ntlm_post: +This sample send a HelloWorld web service POST request to the Windows IIS server +secured with NTLM authentication. + +Usage : ./ntlm_post [endpoint_url] (-n [username] [password] [flags] [domain] [workstation]) +use -n option for NTLM HTTP Authentication +use -h for help + +ntlm_post_with_check: +This sample send a HellowWorld web service POST request to the Windows IIS server +secured with NTLM authentication. +In this sample before sending the actual message, the client send a +test head request to check whether server require authentication. If server require +NTLM authentication, then only the client send the security credentials. + +Usage : ./ntlm_post_with_check [endpoint_url] (-n [username] [password] [flags] [domain] [workstation]) +use -n option for NTLM HTTP Authentication +use -h for help |