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 "Stefan Vladov (JIRA)" <ji...@apache.org> on 2008/07/15 17:43:31 UTC

[jira] Created: (AXIS2-3913) Multiple ploicies not serialized correctly at service level (as portType PolicyURIs attribute)

Multiple ploicies not serialized correctly at service level (as portType PolicyURIs attribute)
----------------------------------------------------------------------------------------------

                 Key: AXIS2-3913
                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: kernel
    Affects Versions: 1.4
         Environment: any
            Reporter: Stefan Vladov
             Fix For: 1.4.1
         Attachments: AxisService2WSDL11_portType_policy.txt

The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
What it does is: 

			String value = null;
			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
				String uri = (String) iterator.next();
				value = (value == null) ? uri : " " + uri;
			}

which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Assigned: (AXIS2-3913) Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Deepal Jayasinghe reassigned AXIS2-3913:
----------------------------------------

    Assignee: Sanka Samaranayake

> Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>            Assignee: Sanka Samaranayake
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Resolved: (AXIS2-3913) Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Nandana Mihindukulasooriya (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nandana Mihindukulasooriya resolved AXIS2-3913.
-----------------------------------------------

    Resolution: Fixed

> Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>            Assignee: Sanka Samaranayake
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3913) Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Stefan Vladov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Vladov updated AXIS2-3913:
---------------------------------

    Attachment: AxisService2WSDL11_portType_policy.txt

> Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3913) Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Stefan Vladov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Vladov updated AXIS2-3913:
---------------------------------

    Summary: Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)  (was: Multiple ploicies not serialized correctly at service level (as portType PolicyURIs attribute))

> Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3913) Multiple ploicies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Stefan Vladov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Vladov updated AXIS2-3913:
---------------------------------

    Attachment: AxisService2WSDL11_portType_policy.txt

> Multiple ploicies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3913) Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)

Posted by "Stefan Vladov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Vladov updated AXIS2-3913:
---------------------------------

    Attachment:     (was: AxisService2WSDL11_portType_policy.txt)

> Multiple policies not serialized correctly at service level (as portType PolicyURIs attribute)
> ----------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3913
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3913
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>    Affects Versions: 1.4
>         Environment: any
>            Reporter: Stefan Vladov
>             Fix For: 1.4.1
>
>         Attachments: AxisService2WSDL11_portType_policy.txt
>
>
> The string concatenation at org.apache.axis2.description.AxisService2WSDL11#addPolicyAsExtAttribute is faulty.
> What it does is: 
> 			String value = null;
> 			for (Iterator iterator = policyURIs.iterator(); iterator.hasNext();) {
> 				String uri = (String) iterator.next();
> 				value = (value == null) ? uri : " " + uri;
> 			}
> which is clearly wrong.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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