You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/01/31 08:44:48 UTC

svn commit: r373751 - /webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c

Author: samisa
Date: Mon Jan 30 23:44:44 2006
New Revision: 373751

URL: http://svn.apache.org/viewcvs?rev=373751&view=rev
Log:
Added the addressing fix

Modified:
    webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c?rev=373751&r1=373750&r2=373751&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c Mon Jan 30 23:44:44 2006
@@ -197,10 +197,10 @@
 	else
 	{
 		axis2_endpoint_ref_t *ctx_epr = AXIS2_MSG_CTX_GET_TO(msg_ctx, env);
-		if(NULL !=  ctx_epr && 0 == AXIS2_STRCMP(
+		if(NULL !=  ctx_epr && 0 != AXIS2_STRCMP(
 							AXIS2_WSA_ANONYMOUS_URL_SUBMISSION, 
 							AXIS2_ENDPOINT_REF_GET_ADDRESS(ctx_epr, env)) &&
-							0 == AXIS2_STRCMP(AXIS2_WSA_ANONYMOUS_URL, 
+							0 != AXIS2_STRCMP(AXIS2_WSA_ANONYMOUS_URL, 
 							AXIS2_ENDPOINT_REF_GET_ADDRESS(ctx_epr, env)))
 		{
 			epr = ctx_epr;