summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorGravatar damitha2011-06-02 04:32:17 +0000
committerGravatar damitha2011-06-02 04:32:17 +0000
commita66e189a8b3b6a42a2dd9eb69245309b6590dc61 (patch)
tree0beffa1eb0a051b1209828bbca7cf5654168383c /samples
parent97c2b8711363403b621b0ecd7cb913b42d77ff04 (diff)
downloadaxis2c-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/README23
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