You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ma...@apache.org on 2007/04/27 05:45:23 UTC

svn commit: r532946 - in /webservices/axis2/scratch/c/neethi/axis2c/neethi: include/ src/secpolicy/builder/

Author: manjula
Date: Thu Apr 26 20:45:22 2007
New Revision: 532946

URL: http://svn.apache.org/viewvc?view=rev&rev=532946
Log:
Adding asymmetric_binding builders and other builders.

Added:
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_asymmetric_binding_builder.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_initiator_token_builder.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_recipient_token_builder.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_x509_token_builder.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/asymmetric_binding_builder.c
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/initiator_token_builder.c
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/recipient_token_builder.c
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/x509_token_builder.c
Modified:
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/neethi_assertion.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/Makefile.am

Modified: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/neethi_assertion.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/neethi_assertion.h?view=diff&rev=532946&r1=532945&r2=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/neethi_assertion.h (original)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/neethi_assertion.h Thu Apr 26 20:45:22 2007
@@ -53,6 +53,20 @@
         ASSERTION_TYPE_MUST_SUPPORT_REF_EMBEDDED_TOKEN,
         ASSERTION_TYPE_WSS10,
         ASSERTION_TYPE_RAMPART_CONFIG,
+        ASSERTION_TYPE_ASSYMMETRIC_BINDING,
+        ASSERTION_TYPE_INITIATOR_TOKEN,
+        ASSERTION_TYPE_RECIPIENT_TOKEN,
+        ASSERTION_TYPE_ENCRYPT_BEFORE_SIGNING,
+        ASSERTION_TYPE_SIGN_BEFORE_ENCRYPTING,
+        ASSERTION_TYPE_ENCRYPT_SIGNATURE,
+        ASSERTION_TYPE_PROTECT_TOKENS,
+        ASSERTION_TYPE_ONLY_SIGN_ENTIRE_HEADERS_AND_BODY,
+        ASSERTION_TYPE_REQUIRE_KEY_IDENTIFIRE_REFERENCE,
+        ASSERTION_TYPE_REQUIRE_ISSUER_SERIAL_REFERENCE,
+        ASSERTION_TYPE_REQUIRE_EMBEDDED_TOKEN_REFERENCE,
+        ASSERTION_TYPE_REQUIRE_THUMBPRINT_REFERENCE,
+        ASSERTION_TYPE_WSS_X509_V1_TOKEN_10,
+        ASSERTION_TYPE_WSS_X509_V3_TOKEN_10,
         ASSERTION_TYPE_UNKNOWN
     }neethi_assertion_type_t;
 

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_asymmetric_binding_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_asymmetric_binding_builder.h?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_asymmetric_binding_builder.h (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_asymmetric_binding_builder.h Thu Apr 26 20:45:22 2007
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef RP_ASYMMETRIC_BINDING_BUILDER_H
+#define RP_ASYMMETRIC_BINDING_BUILDER_H
+
+/** @defgroup rp_asymmetric_binding_builder
+ * @ingroup rp_asymmetric_binding_builder
+ * @{
+ */
+
+#include <rp_includes.h>
+#include <rp_property.h>
+#include <rp_asymmetric_binding.h>
+#include <neethi_assertion.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+
+    AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+    rp_asymmetric_binding_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element);
+
+
+#ifdef __cplusplus
+}
+#endif
+#endif

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_initiator_token_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_initiator_token_builder.h?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_initiator_token_builder.h (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_initiator_token_builder.h Thu Apr 26 20:45:22 2007
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef RP_INITIATOR_TOKEN_BUILDER_H
+#define RP_INITIATOR_TOKEN_BUILDER_H
+
+/** @defgroup rp_initiator_token_builder
+ * @ingroup rp_initiator_token_builder
+ * @{
+ */
+
+#include <rp_includes.h>
+#include <rp_property.h>
+#include <rp_x509_token.h>
+#include <neethi_assertion.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+    AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+    rp_initiator_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element);
+ 
+
+#ifdef __cplusplus
+}
+#endif
+#endif

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_recipient_token_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_recipient_token_builder.h?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_recipient_token_builder.h (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_recipient_token_builder.h Thu Apr 26 20:45:22 2007
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef RP_RECIPIENT_TOKEN_BUILDER_H
+#define RP_RECIPIENT_TOKEN_BUILDER_H
+
+/** @defgroup rp_recipient_token_builder
+ * @ingroup rp_recipient_token_builder
+ * @{
+ */
+
+#include <rp_includes.h>
+#include <rp_property.h>
+#include <rp_x509_token.h>
+#include <neethi_assertion.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+    AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+    rp_recipient_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element);
+ 
+
+#ifdef __cplusplus
+}
+#endif
+#endif

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_x509_token_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_x509_token_builder.h?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_x509_token_builder.h (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_x509_token_builder.h Thu Apr 26 20:45:22 2007
@@ -0,0 +1,44 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef RP_X509_TOKEN_BUILDER_H
+#define RP_X509_TOKEN_BUILDER_H
+
+/** @defgroup rp_x509_token_builder
+ * @ingroup rp_x509_token_builder
+ * @{
+ */
+
+#include <rp_includes.h>
+#include <rp_property.h>
+#include <rp_x509_token.h>
+#include <neethi_assertion.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+    AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+    rp_x509_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element);
+ 
+#ifdef __cplusplus
+}
+#endif
+#endif

Modified: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/Makefile.am?view=diff&rev=532946&r1=532945&r2=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/Makefile.am (original)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/Makefile.am Thu Apr 26 20:45:22 2007
@@ -8,7 +8,8 @@
 						   transport_binding_builder.c username_token_builder.c \
 						   wss10_builder.c transport_token_builder.c \
 						   token_identifier.c https_token_builder.c rampart_config_builder.c \
-						   secpolicy_builder.c
+						   asymmetric_binding_builder.c x509_token_builder.c initiator_token_builder.c \
+						   recipient_token_builder.c secpolicy_builder.c 
 
 
 librp_builder_la_LIBADD  = ${AXIS2C_HOME}/lib

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/asymmetric_binding_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/asymmetric_binding_builder.c?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/asymmetric_binding_builder.c (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/asymmetric_binding_builder.c Thu Apr 26 20:45:22 2007
@@ -0,0 +1,203 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <rp_asymmetric_binding_builder.h>
+#include <neethi_operator.h>
+#include <neethi_policy.h>
+#include <neethi_exactlyone.h>
+#include <neethi_all.h>
+#include <neethi_engine.h>
+
+/*private functions*/
+
+axis2_status_t AXIS2_CALL
+asymmetric_binding_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_asymmetric_binding_t *asymmetric_binding);
+
+/***********************************/
+
+
+AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL 
+rp_asymmetric_binding_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element)
+
+{
+    rp_asymmetric_binding_t *asymmetric_binding = NULL;
+    neethi_policy_t *policy = NULL;
+    axiom_node_t *child_node = NULL;
+    axiom_element_t *child_element = NULL;
+    axutil_array_list_t *alternatives = NULL;
+    neethi_operator_t *component = NULL;
+    neethi_all_t *all = NULL;
+    neethi_assertion_t *assertion = NULL;
+
+    asymmetric_binding = rp_asymmetric_binding_create(env);
+    
+    child_node = axiom_node_get_first_element(node,env);
+
+    if(axiom_node_get_node_type(child_node, env) == AXIOM_ELEMENT)
+    {
+        child_element = (axiom_element_t*)axiom_node_get_data_element(child_node, env);
+        if(child_element)
+        {
+            policy = neethi_engine_get_policy(env, child_node, child_element);
+            if(!policy)
+            {
+                return NULL;
+            }
+            policy = neethi_engine_get_normalize(env, AXIS2_FALSE, policy); 
+            alternatives = neethi_policy_get_alternatives(policy, env);
+            component = (neethi_operator_t *)axutil_array_list_get(alternatives, env, 0);            
+            all = (neethi_all_t *)neethi_operator_get_value(component ,env);
+            asymmetric_binding_process_alternatives(env, all, asymmetric_binding);
+
+            assertion = neethi_assertion_create(env);
+            neethi_assertion_set_value(assertion, env, asymmetric_binding, ASSERTION_TYPE_ASSYMMETRIC_BINDING);
+            return assertion;
+        }
+        else return NULL;
+    }
+    else return NULL;
+}
+
+axis2_status_t AXIS2_CALL
+asymmetric_binding_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_asymmetric_binding_t *asymmetric_binding)
+{
+
+    neethi_operator_t *operator = NULL;
+    axutil_array_list_t *arraylist = NULL;
+    neethi_assertion_t *assertion = NULL;
+    neethi_assertion_type_t type;    
+    void *value = NULL;
+    rp_binding_commons_t *commons = NULL;
+    rp_symmetric_asymmetric_binding_commons_t *as_commons = NULL;
+
+    int i = 0;
+
+    arraylist = neethi_all_get_policy_components(all, env);
+    commons = rp_binding_commons_create(env);    
+    as_commons = rp_symmetric_asymmetric_binding_commons_create(env);
+
+    for(i=0; i<axutil_array_list_size(arraylist, env); i++)
+    {
+        operator = (neethi_operator_t *)axutil_array_list_get(arraylist, env, i);
+        assertion = (neethi_assertion_t *)neethi_operator_get_value(operator, env);
+        value = neethi_assertion_get_value(assertion, env);
+        type = neethi_assertion_get_type(assertion, env);
+
+        if(value)
+        {
+            if(type == ASSERTION_TYPE_INITIATOR_TOKEN)
+            {
+                rp_property_t *initiator_token = NULL;    
+                initiator_token = (rp_property_t *)neethi_assertion_get_value(assertion, env);
+                if(initiator_token)
+                {
+                    rp_asymmetric_binding_set_initiator_token(asymmetric_binding, env, initiator_token);
+                }
+                else return AXIS2_FAILURE;
+            }
+            if(type == ASSERTION_TYPE_RECIPIENT_TOKEN)
+            {
+                rp_property_t *recipient_token = NULL;    
+                recipient_token = (rp_property_t *)neethi_assertion_get_value(assertion, env);
+                if(recipient_token)
+                {
+                    rp_asymmetric_binding_set_recipient_token(asymmetric_binding, env, recipient_token);
+                }
+                else return AXIS2_FAILURE;
+            }
+            else if(type == ASSERTION_TYPE_ALGORITHM_SUITE)
+            {
+                rp_algorithmsuite_t *algorithmsuite = NULL;
+                algorithmsuite = (rp_algorithmsuite_t *)neethi_assertion_get_value(assertion, env);
+                if(algorithmsuite)
+                {
+                    rp_binding_commons_set_algorithmsuite(commons, env, algorithmsuite);
+                }                
+                else return AXIS2_FAILURE;
+            }
+            else if(type == ASSERTION_TYPE_INCLUDE_TIMESTAMP)
+            {
+                rp_binding_commons_set_include_timestamp(commons, env, AXIS2_TRUE);
+            }
+            else if(type == ASSERTION_TYPE_LAYOUT)
+            {
+                rp_layout_t *layout = NULL;
+                layout = (rp_layout_t *)neethi_assertion_get_value(assertion, env);
+                if(layout)
+                {
+                    rp_binding_commons_set_layout(commons, env, layout);
+                }                    
+                else return AXIS2_FAILURE;
+            }
+            else if(type == ASSERTION_TYPE_ENCRYPT_BEFORE_SIGNING)
+            {
+                rp_symmetric_asymmetric_binding_commons_set_protection_order(as_commons, env, RP_ENCRYPT_BEFORE_SIGNING);
+            }                
+            else if(type == ASSERTION_TYPE_SIGN_BEFORE_ENCRYPTING)
+            {
+                rp_symmetric_asymmetric_binding_commons_set_protection_order(as_commons, env, RP_SIGN_BEFORE_ENCRYPTING);
+            }
+            else if(type == ASSERTION_TYPE_ENCRYPT_SIGNATURE)
+            {
+                rp_symmetric_asymmetric_binding_commons_set_signature_protection(as_commons, env, AXIS2_TRUE);
+            }
+            else if(type == ASSERTION_TYPE_PROTECT_TOKENS)
+            {
+                rp_symmetric_asymmetric_binding_commons_set_token_protection(as_commons, env, AXIS2_TRUE);
+            }            
+            else if(type == ASSERTION_TYPE_ONLY_SIGN_ENTIRE_HEADERS_AND_BODY)
+            {
+                rp_symmetric_asymmetric_binding_commons_set_entire_headers_and_body_signatures(as_commons, env, AXIS2_TRUE);
+            }
+            else if(type == ASSERTION_TYPE_SUPPORTING_TOKENS)
+            {
+                rp_supporting_tokens_t *supporting_tokens = NULL;
+                supporting_tokens = (rp_supporting_tokens_t *)neethi_assertion_get_value(assertion, env);
+                if(supporting_tokens)
+                {
+                    int type = 0;
+                    type = rp_supporting_tokens_get_type(supporting_tokens, env);
+                    if(type == RP_SUPPORTING_SIGNED_SUPPORTING)
+                    {
+                        rp_binding_commons_set_signed_supporting_tokens(commons, env, supporting_tokens);
+                    }    
+                    else if(type == RP_SUPPORTING_SIGNED_ENDORSING_SUPPORTING)
+                    {
+                        rp_binding_commons_set_signed_endorsing_supporting_tokens(commons, env, supporting_tokens);
+                    }                       
+                    else return AXIS2_FAILURE;
+                }                    
+                else return AXIS2_FAILURE;
+            }
+            else return AXIS2_FAILURE;
+        }        
+        else return AXIS2_FAILURE;
+    }
+    rp_symmetric_asymmetric_binding_commons_set_binding_commons(as_commons, env, commons);
+    rp_asymmetric_binding_set_symmetric_asymmetric_binding_commons(asymmetric_binding, env, as_commons);
+
+    return AXIS2_SUCCESS;
+}

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/initiator_token_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/initiator_token_builder.c?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/initiator_token_builder.c (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/initiator_token_builder.c Thu Apr 26 20:45:22 2007
@@ -0,0 +1,123 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <rp_initiator_token_builder.h>
+#include <neethi_operator.h>
+#include <neethi_policy.h>
+#include <neethi_assertion.h>
+#include <neethi_exactlyone.h>
+#include <neethi_all.h>
+#include <neethi_engine.h>
+
+/*private functions*/
+
+axis2_status_t AXIS2_CALL
+initiator_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_property_t *initiator_token);
+
+/***********************************/
+
+
+AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL 
+rp_initiator_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element)
+
+{
+    rp_property_t *initiator_token = NULL;
+    neethi_policy_t *policy = NULL;
+    axiom_node_t *child_node = NULL;
+    axiom_element_t *child_element = NULL;
+    axutil_array_list_t *alternatives = NULL;
+    neethi_operator_t *component = NULL;
+    neethi_all_t *all = NULL;
+    neethi_assertion_t *assertion = NULL;
+
+    initiator_token = rp_property_create(env);
+    
+    child_node = axiom_node_get_first_element(node,env);
+
+    if(axiom_node_get_node_type(child_node, env) == AXIOM_ELEMENT)
+    {
+        child_element = (axiom_element_t*)axiom_node_get_data_element(child_node, env);
+        if(child_element)
+        {
+            policy = neethi_engine_get_policy(env, child_node, child_element);
+            if(!policy)
+            {
+                return NULL;
+            }
+            policy = neethi_engine_get_normalize(env, AXIS2_FALSE, policy); 
+            alternatives =neethi_policy_get_alternatives(policy, env);
+            component = (neethi_operator_t *)axutil_array_list_get(alternatives, env, 0);            
+            all = (neethi_all_t *)neethi_operator_get_value(component ,env);
+            initiator_token_process_alternatives(env, all, initiator_token);
+
+            assertion = neethi_assertion_create(env);
+            neethi_assertion_set_value(assertion, env, initiator_token, ASSERTION_TYPE_INITIATOR_TOKEN);
+            return assertion;
+        }
+        else return NULL;
+    }
+    else return NULL;
+}
+
+axis2_status_t AXIS2_CALL
+initiator_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_property_t *initiator_token)
+{
+
+    neethi_operator_t *operator = NULL;
+    axutil_array_list_t *arraylist = NULL;
+    neethi_assertion_t *assertion = NULL;
+    neethi_assertion_type_t type;    
+    void *value = NULL;
+
+    int i = 0;
+
+    arraylist = neethi_all_get_policy_components(all, env);
+
+    for(i=0; i<axutil_array_list_size(arraylist, env); i++)
+    {
+        operator = (neethi_operator_t *)axutil_array_list_get(arraylist, env, i);
+        assertion = (neethi_assertion_t *)neethi_operator_get_value(operator, env);
+        value = neethi_assertion_get_value(assertion, env);
+        type = neethi_assertion_get_type(assertion, env);
+
+        if(value)
+        {
+            if(type == ASSERTION_TYPE_X509_TOKEN)
+            {
+                rp_x509_token_t *x509_token = NULL;    
+                x509_token = (rp_x509_token_t *)neethi_assertion_get_value(assertion, env);
+                if(x509_token)
+                {
+                    rp_property_set_value(initiator_token, env, x509_token, RP_TOKEN_X509);
+                }
+                else return AXIS2_FAILURE;
+            }
+            else return AXIS2_FAILURE;
+        }
+        else return AXIS2_FAILURE;
+    }        
+    return AXIS2_SUCCESS;
+}

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/recipient_token_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/recipient_token_builder.c?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/recipient_token_builder.c (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/recipient_token_builder.c Thu Apr 26 20:45:22 2007
@@ -0,0 +1,123 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <rp_recipient_token_builder.h>
+#include <neethi_operator.h>
+#include <neethi_policy.h>
+#include <neethi_assertion.h>
+#include <neethi_exactlyone.h>
+#include <neethi_all.h>
+#include <neethi_engine.h>
+
+/*private functions*/
+
+axis2_status_t AXIS2_CALL
+recipient_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_property_t *recipient_token);
+
+/***********************************/
+
+
+AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL 
+rp_recipient_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element)
+
+{
+    rp_property_t *recipient_token = NULL;
+    neethi_policy_t *policy = NULL;
+    axiom_node_t *child_node = NULL;
+    axiom_element_t *child_element = NULL;
+    axutil_array_list_t *alternatives = NULL;
+    neethi_operator_t *component = NULL;
+    neethi_all_t *all = NULL;
+    neethi_assertion_t *assertion = NULL;
+
+    recipient_token = rp_property_create(env);
+    
+    child_node = axiom_node_get_first_element(node,env);
+
+    if(axiom_node_get_node_type(child_node, env) == AXIOM_ELEMENT)
+    {
+        child_element = (axiom_element_t*)axiom_node_get_data_element(child_node, env);
+        if(child_element)
+        {
+            policy = neethi_engine_get_policy(env, child_node, child_element);
+            if(!policy)
+            {
+                return NULL;
+            }
+            policy = neethi_engine_get_normalize(env, AXIS2_FALSE, policy); 
+            alternatives =neethi_policy_get_alternatives(policy, env);
+            component = (neethi_operator_t *)axutil_array_list_get(alternatives, env, 0);            
+            all = (neethi_all_t *)neethi_operator_get_value(component ,env);
+            recipient_token_process_alternatives(env, all, recipient_token);
+
+            assertion = neethi_assertion_create(env);
+            neethi_assertion_set_value(assertion, env, recipient_token, ASSERTION_TYPE_RECIPIENT_TOKEN);
+            return assertion;
+        }
+        else return NULL;
+    }
+    else return NULL;
+}
+
+axis2_status_t AXIS2_CALL
+recipient_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_property_t *recipient_token)
+{
+
+    neethi_operator_t *operator = NULL;
+    axutil_array_list_t *arraylist = NULL;
+    neethi_assertion_t *assertion = NULL;
+    neethi_assertion_type_t type;    
+    void *value = NULL;
+
+    int i = 0;
+
+    arraylist = neethi_all_get_policy_components(all, env);
+
+    for(i=0; i<axutil_array_list_size(arraylist, env); i++)
+    {
+        operator = (neethi_operator_t *)axutil_array_list_get(arraylist, env, i);
+        assertion = (neethi_assertion_t *)neethi_operator_get_value(operator, env);
+        value = neethi_assertion_get_value(assertion, env);
+        type = neethi_assertion_get_type(assertion, env);
+
+        if(value)
+        {
+            if(type == ASSERTION_TYPE_X509_TOKEN)
+            {
+                rp_x509_token_t *x509_token = NULL;    
+                x509_token = (rp_x509_token_t *)neethi_assertion_get_value(assertion, env);
+                if(x509_token)
+                {
+                    rp_property_set_value(recipient_token, env, x509_token, RP_TOKEN_X509);
+                }
+                else return AXIS2_FAILURE;
+            }
+            else return AXIS2_FAILURE;
+        }
+        else return AXIS2_FAILURE;
+    }        
+    return AXIS2_SUCCESS;
+}

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/x509_token_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/x509_token_builder.c?view=auto&rev=532946
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/x509_token_builder.c (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/x509_token_builder.c Thu Apr 26 20:45:22 2007
@@ -0,0 +1,145 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <rp_x509_token_builder.h>
+#include <neethi_operator.h>
+#include <neethi_policy.h>
+#include <neethi_exactlyone.h>
+#include <neethi_all.h>
+#include <neethi_engine.h>
+
+/*private functions*/
+
+axis2_status_t AXIS2_CALL
+x509_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_x509_token_t *x509_token);
+
+/***********************************/
+
+
+AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL 
+rp_x509_token_builder_build(
+        const axutil_env_t *env,
+        axiom_node_t *node,
+        axiom_element_t *element)
+
+{
+    rp_x509_token_t *x509_token = NULL;
+    neethi_policy_t *policy = NULL;
+    axiom_node_t *child_node = NULL;
+    axiom_element_t *child_element = NULL;
+    axutil_array_list_t *alternatives = NULL;
+    neethi_operator_t *component = NULL;
+    neethi_all_t *all = NULL;
+    axis2_char_t *inclusion_value = NULL;
+    axutil_qname_t *qname = NULL;
+    neethi_assertion_t *assertion = NULL;
+
+    x509_token = rp_x509_token_create(env);
+    qname = axutil_qname_create(env,RP_INCLUDE_TOKEN,RP_SP_NS,RP_SP_PREFIX);
+
+    inclusion_value = axiom_element_get_attribute_value(element,env,qname);
+
+    axutil_qname_free(qname,env);
+    qname = NULL;
+
+    rp_x509_token_set_inclusion(x509_token,env,inclusion_value);
+    
+    child_node = axiom_node_get_first_element(node,env);
+
+    if(axiom_node_get_node_type(child_node, env) == AXIOM_ELEMENT)
+    {
+        child_element = (axiom_element_t*)axiom_node_get_data_element(child_node, env);
+        if(child_element)
+        {
+            policy = neethi_engine_get_policy(env, child_node, child_element);
+            if(!policy)
+            {
+                return NULL;
+            }
+            policy = neethi_engine_get_normalize(env, AXIS2_FALSE, policy); 
+            alternatives = neethi_policy_get_alternatives(policy, env);
+            component = (neethi_operator_t *)axutil_array_list_get(alternatives, env, 0);            
+            all = (neethi_all_t *)neethi_operator_get_value(component ,env);
+            x509_token_process_alternatives(env, all, x509_token);
+
+            assertion = neethi_assertion_create(env);
+            neethi_assertion_set_value(assertion, env, x509_token, ASSERTION_TYPE_X509_TOKEN);
+            return assertion;
+        }
+        else return NULL;
+    }
+    else return NULL;
+}
+
+axis2_status_t AXIS2_CALL
+x509_token_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_x509_token_t *x509_token)
+{
+    neethi_operator_t *operator = NULL;
+    axutil_array_list_t *arraylist = NULL;
+    neethi_assertion_t *assertion = NULL;
+    neethi_assertion_type_t type;    
+    void *value = NULL;
+
+    int i = 0;
+
+    arraylist = neethi_all_get_policy_components(all, env);
+
+    for(i=0; i<axutil_array_list_size(arraylist, env); i++)
+    {
+        operator = (neethi_operator_t *)axutil_array_list_get(arraylist, env, i);
+        assertion = (neethi_assertion_t *)neethi_operator_get_value(operator, env);
+        value = neethi_assertion_get_value(assertion, env);
+        type = neethi_assertion_get_type(assertion, env);
+
+        if(value)
+        {
+            if(type == ASSERTION_TYPE_REQUIRE_KEY_IDENTIFIRE_REFERENCE)
+            {
+                rp_x509_token_set_require_key_identifier_reference(x509_token, env, AXIS2_TRUE);
+            }
+            else if(type == ASSERTION_TYPE_REQUIRE_ISSUER_SERIAL_REFERENCE)
+            {
+                rp_x509_token_set_require_issuer_serial_reference(x509_token, env, AXIS2_TRUE);
+            }
+            if(type == ASSERTION_TYPE_REQUIRE_EMBEDDED_TOKEN_REFERENCE)
+            {
+                rp_x509_token_set_require_embedded_token_reference(x509_token, env, AXIS2_TRUE);
+            }
+            else if(type == ASSERTION_TYPE_REQUIRE_THUMBPRINT_REFERENCE)
+            {
+                rp_x509_token_set_require_thumb_print_reference(x509_token, env, AXIS2_TRUE);
+            }            
+            else if(type == ASSERTION_TYPE_WSS_X509_V1_TOKEN_10)
+            {
+                rp_x509_token_set_token_version_and_type(x509_token, env, RP_WSS_X509_V1_TOKEN_10);
+            }
+            else if(type == ASSERTION_TYPE_WSS_X509_V3_TOKEN_10)
+            {
+                rp_x509_token_set_token_version_and_type(x509_token, env, RP_WSS_X509_V3_TOKEN_10);
+            }
+            else return AXIS2_FAILURE;
+        }        
+        else return AXIS2_FAILURE;
+    }
+    return AXIS2_SUCCESS;
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org