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 "Full Name (JIRA)" <ji...@apache.org> on 2007/06/29 10:29:05 UTC

[jira] Commented: (AXIS2-2860) Namespace prefix counter not reseted

    [ https://issues.apache.org/jira/browse/AXIS2-2860?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12509053 ] 

Full Name commented on AXIS2-2860:
----------------------------------

Hi,

I am not very pleased about your fix in BeanUtil:

public static String getUniquePrefix() {
        if (nsCount > 1000){
            nsCount = 1;
        }
        return "s" + nsCount++;
 }

Please correct me if I am wrong but why is nsCount static and not synchronized? Under heavy load strange side effects may appear.
Please tell me, why you do not use the counter per SOAP Thread- request-base and reset it before every new ADB serializiation? Each message could then start with '1' and would not interrupt with parallel messages.

> Namespace prefix counter not reseted
> ------------------------------------
>
>                 Key: AXIS2-2860
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2860
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb
>    Affects Versions: 1.2
>            Reporter: Full Name
>            Assignee: Amila Chinthaka Suriarachchi
>            Priority: Minor
>
> We are using current Axis2 release with ADB binding. Each Axis stub is reused after each call. After several calls, we have noticed, that some namespace-prefix counters are never reseted and will increase after every loop:
> <ns27:tag..> will result to: <ns1233:tag..> after several calls with the same stub instance. You can reproduce this behaviour if you just put a loop aroung a stub:
> while (true) {
> try {
>   stub.call(param);
> } catch (Exception e) {
>    e.printStackTrace();
> } finally {
>   stub.cleanup();
> }
> }
> It seems, that 'xmlWriter.getPrefix(namespace)' inside the ADB classes is not reseted after each call. 
> It would be better (performance and payload length), to reset counter (e.g. to ns1) back.

-- 
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