Author: milinda
Date: Wed Feb  6 20:46:29 2008
New Revision: 619261

URL: http://svn.apache.org/viewvc?rev=619261&view=rev
Log:
Fixing some build errors and parameter ordering.

Modified:
    webservices/rampart/trunk/c/samples/client/sts_client/client.c
    webservices/rampart/trunk/c/samples/configure.ac
    webservices/rampart/trunk/c/samples/server/saml_sts/issuer.c
    webservices/rampart/trunk/c/samples/server/saml_sts/saml_skeleton.c

Modified: webservices/rampart/trunk/c/samples/client/sts_client/client.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/client/sts_client/client.c?rev=619261&r1=619260&r2=619261&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/client/sts_client/client.c (original)
+++ webservices/rampart/trunk/c/samples/client/sts_client/client.c Wed Feb  6 
20:46:29 2008
@@ -53,21 +53,21 @@
     trust_rst_set_appliesto(rst, env, appliesto);
     trust_rst_set_request_type(rst, env, request_type);
 
-    trust_context_set_rst(env, trust_ctx, rst);
+    trust_context_set_rst(trust_ctx, env, rst);
 
     trust_sts_client_request_security_token(sts_client, env, trust_ctx);
 
 
        /*Acquire Sec Token*/
-       if(trust_context_get_rstr(env, trust_ctx))
+       if(trust_context_get_rstr(trust_ctx, env))
        {
                if(trust_rstr_get_requested_security_token(
-                                       trust_context_get_rstr(env, trust_ctx),
+                                       trust_context_get_rstr(trust_ctx, env),
                                        env))
                {
                        printf("\n\nReceived Sec Token : %s\n",
                                        
axiom_node_to_string(trust_rstr_get_requested_security_token(
-                                                       
trust_context_get_rstr(env, trust_ctx),
+                                                       
trust_context_get_rstr(trust_ctx, env),
                                                        env), env)
                                        );
                }

Modified: webservices/rampart/trunk/c/samples/configure.ac
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/configure.ac?rev=619261&r1=619260&r2=619261&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/configure.ac (original)
+++ webservices/rampart/trunk/c/samples/configure.ac Wed Feb  6 20:46:29 2008
@@ -112,9 +112,11 @@
         credential_provider/Makefile \
         server/Makefile \
         server/sec_echo/Makefile \
+               server/saml_sts/Makefile \
         client/Makefile
         client/sec_echo/Makefile \
         client/sec_echo/data/Makefile \
+               client/sts_client/Makefile \
         keys/Makefile \
         keys/ahome/Makefile \
         keys/bhome/Makefile \

Modified: webservices/rampart/trunk/c/samples/server/saml_sts/issuer.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/server/saml_sts/issuer.c?rev=619261&r1=619260&r2=619261&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/server/saml_sts/issuer.c (original)
+++ webservices/rampart/trunk/c/samples/server/saml_sts/issuer.c Wed Feb  6 
20:46:29 2008
@@ -70,8 +70,8 @@
                                "http://schemas.xmlsoap.org/ws/2005/02/trust";)
                        );
 
-       trust_context_set_rstr(env, trust_ctx, rstr);
-       rstr_node = trust_context_build_rstr_node(env, trust_ctx);
+       trust_context_set_rstr(trust_ctx, env, rstr);
+       rstr_node = trust_context_build_rstr_node(trust_ctx, env);
        
     return rstr_node;
 }

Modified: webservices/rampart/trunk/c/samples/server/saml_sts/saml_skeleton.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/server/saml_sts/saml_skeleton.c?rev=619261&r1=619260&r2=619261&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/server/saml_sts/saml_skeleton.c 
(original)
+++ webservices/rampart/trunk/c/samples/server/saml_sts/saml_skeleton.c Wed Feb 
 6 20:46:29 2008
@@ -108,7 +108,7 @@
        
 
        /*Populating RST*/
-       if(AXIS2_FAILURE == trust_context_process_rst(env, trust_ctx, 
in_msg_ctx))
+       if(AXIS2_FAILURE == trust_context_process_rst(trust_ctx, env, 
in_msg_ctx))
        {
                printf("RST Processing Failed!\n");
        }


Reply via email to