summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorGravatar damitha2011-06-01 09:58:31 +0000
committerGravatar damitha2011-06-01 09:58:31 +0000
commit03da849afd98e38ee36f215e72abb8efeab87db7 (patch)
tree47abd93f252d6756d9cc37291ffaa8df75636494 /samples
parentf1d7f8e861ef15563d94574d02978795c6bd4475 (diff)
downloadaxis2c-03da849afd98e38ee36f215e72abb8efeab87db7.tar.gz
axis2c-03da849afd98e38ee36f215e72abb8efeab87db7.tar.bz2
Update samples
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1130076 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'samples')
-rwxr-xr-xsamples/client/ntlm/ntlm_post.c1
-rwxr-xr-xsamples/client/ntlm/ntlm_post_with_check.c6
2 files changed, 3 insertions, 4 deletions
diff --git a/samples/client/ntlm/ntlm_post.c b/samples/client/ntlm/ntlm_post.c
index f42c18f..cb76f6f 100755
--- a/samples/client/ntlm/ntlm_post.c
+++ b/samples/client/ntlm/ntlm_post.c
@@ -130,7 +130,6 @@ main(
/* un-comment line below to setup proxy from code*/
/*axis2_svc_client_set_proxy_with_auth(svc_client, env, "127.0.0.1", "3128", NULL, NULL);*/
- /* Sending robust authentication test message */
/* Set http-auth information */
if (un && pw)
diff --git a/samples/client/ntlm/ntlm_post_with_check.c b/samples/client/ntlm/ntlm_post_with_check.c
index 6f4f828..8835d58 100755
--- a/samples/client/ntlm/ntlm_post_with_check.c
+++ b/samples/client/ntlm/ntlm_post_with_check.c
@@ -49,7 +49,7 @@ main(
/* Set up the environment */
env = axutil_env_create_all("ntlm_auth_client_with_check.log", AXIS2_LOG_LEVEL_TRACE);
- /* Set end point reference of echo service */
+ /* Set end point reference of ntlm service */
address = "http://172.16.176.132:80/myservice/Service1.asmx";
if (argc > 1)
{
@@ -221,7 +221,7 @@ main(
om_str = axiom_node_to_string(ret_node, env);
if (om_str)
printf("\nReceived OM : %s\n", om_str);
- printf("\necho client invoke SUCCESSFUL!\n");
+ printf("\nntlm client invoke SUCCESSFUL!\n");
AXIS2_FREE(env->allocator, om_str);
ret_node = NULL;
@@ -232,7 +232,7 @@ main(
"Stub invoke FAILED: Error code:" " %d :: %s",
env->error->error_number,
AXIS2_ERROR_GET_MESSAGE(env->error));
- printf("echo client invoke FAILED!\n");
+ printf("ntlm client invoke FAILED!\n");
}
}
if (svc_client)