Select1 problems

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Select1 problems

Ryan Puddephatt
Hi all,
    I'm trying to use a select one to show a list of names, but I
receive the following error:

Node is not an element or attribute.

It seems to be a problem with the select1 element rather than the
itemset, but I have exhausted my searches for a solution, below is the
select1 code snippet:

<xforms:select1 ref="instance('instance')/name/select"
appearance="compact">
    <xforms:label class="fixed-width">Saved Queries</xforms:label>
    <xforms:itemset nodeset="instance('Data')/names/name">
        <xforms:label ref="label"/>
        <xforms:value ref="@value"/>
    </xforms:itemset>
</xforms:select1>

The instance's it refers to are layed out here:

<xforms:instance id="instance">
    <instance>
        <name>
            <select>1</select>
        </name>
    </instance>
</xforms:instance>
           
<xforms:instance id="Data">
    <instance>
        <names selected="1">
            <name value="1">
                <value>1</value>
                <label>Test String 1</label>
            </name>
            <name value="2">
                <value>2</value>
                <label>Test String 2</label>
            </name>
        </names>
    </instance>
</xforms:instance>

Hopesfully someone can shed some light on the issue, I read in the
archives there was a problem with itemset at one point, is this still
the case?



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Erik Bruchez
Administrator
Ryan,

This should definitely work. Do you happen to have a default namespace
in your document? What if you replace your <instance> with <instance
xmlns=""> ?

-Erik

Ryan Puddephatt wrote:

> Hi all,
>    I'm trying to use a select one to show a list of names, but I receive
> the following error:
>
> Node is not an element or attribute.
>
> It seems to be a problem with the select1 element rather than the
> itemset, but I have exhausted my searches for a solution, below is the
> select1 code snippet:
>
> <xforms:select1 ref="instance('instance')/name/select"
> appearance="compact">    <xforms:label class="fixed-width">Saved
> Queries</xforms:label>
>    <xforms:itemset nodeset="instance('Data')/names/name">        
> <xforms:label ref="label"/>
>        <xforms:value ref="@value"/>
>    </xforms:itemset> </xforms:select1>
>
> The instance's it refers to are layed out here:
>
> <xforms:instance id="instance">
>    <instance>
>        <name>
>            <select>1</select>
>        </name>
>    </instance>
> </xforms:instance>
>           <xforms:instance id="Data">
>    <instance>
>        <names selected="1">
>            <name value="1">
>                <value>1</value>
>                <label>Test String 1</label>
>            </name>
>            <name value="2">
>                <value>2</value>
>                <label>Test String 2</label>
>            </name>
>        </names>
>    </instance>
> </xforms:instance>
>
> Hopesfully someone can shed some light on the issue, I read in the
> archives there was a problem with itemset at one point, is this still
> the case?


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Ryan Puddephatt
I added the namesace and it now works. Why does it require a default
namespace?

Thanks for your help

Erik Bruchez wrote:

> Ryan,
>
> This should definitely work. Do you happen to have a default namespace
> in your document? What if you replace your <instance> with <instance
> xmlns=""> ?
>
> -Erik
>
> Ryan Puddephatt wrote:
>
>> Hi all,
>>    I'm trying to use a select one to show a list of names, but I
>> receive the following error:
>>
>> Node is not an element or attribute.
>>
>> It seems to be a problem with the select1 element rather than the
>> itemset, but I have exhausted my searches for a solution, below is
>> the select1 code snippet:
>>
>> <xforms:select1 ref="instance('instance')/name/select"
>> appearance="compact">    <xforms:label class="fixed-width">Saved
>> Queries</xforms:label>
>>    <xforms:itemset nodeset="instance('Data')/names/name">        
>> <xforms:label ref="label"/>
>>        <xforms:value ref="@value"/>
>>    </xforms:itemset> </xforms:select1>
>>
>> The instance's it refers to are layed out here:
>>
>> <xforms:instance id="instance">
>>    <instance>
>>        <name>
>>            <select>1</select>
>>        </name>
>>    </instance>
>> </xforms:instance>
>>           <xforms:instance id="Data">
>>    <instance>
>>        <names selected="1">
>>            <name value="1">
>>                <value>1</value>
>>                <label>Test String 1</label>
>>            </name>
>>            <name value="2">
>>                <value>2</value>
>>                <label>Test String 2</label>
>>            </name>
>>        </names>
>>    </instance>
>> </xforms:instance>
>>
>> Hopesfully someone can shed some light on the issue, I read in the
>> archives there was a problem with itemset at one point, is this still
>> the case?
>
>
>------------------------------------------------------------------------
>
>
>--
>You receive this message as a subscriber of the [hidden email] mailing list.
>To unsubscribe: mailto:[hidden email]
>For general help: mailto:[hidden email]?subject=help
>ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>  
>


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Erik Bruchez
Administrator
I suspct that you are using a default namespace in your document, like
xmlns="http://www.w3.org/1999/xhtml".

Any element which:

o is a descendent of the element containing that default namespace

o and doesn't have a namespace prefix

is going to be in that default namespace. This means that your
<instance> element is actually in the XHTML namespace. But using
xmlns="" on the <instance> element removes the default namespace on
<instance> and its descendents.

-Erik

Ryan Puddephatt wrote:

> I added the namesace and it now works. Why does it require a default
> namespace?
>
> Thanks for your help
>
> Erik Bruchez wrote:
>
>> Ryan,
>>
>> This should definitely work. Do you happen to have a default namespace
>> in your document? What if you replace your <instance> with <instance
>> xmlns=""> ?
>>
>> -Erik
>>
>> Ryan Puddephatt wrote:
>>
>>> Hi all,
>>>    I'm trying to use a select one to show a list of names, but I
>>> receive the following error:
>>>
>>> Node is not an element or attribute.
>>>
>>> It seems to be a problem with the select1 element rather than the
>>> itemset, but I have exhausted my searches for a solution, below is
>>> the select1 code snippet:
>>>
>>> <xforms:select1 ref="instance('instance')/name/select"
>>> appearance="compact">    <xforms:label class="fixed-width">Saved
>>> Queries</xforms:label>
>>>    <xforms:itemset nodeset="instance('Data')/names/name">        
>>> <xforms:label ref="label"/>
>>>        <xforms:value ref="@value"/>
>>>    </xforms:itemset> </xforms:select1>
>>>
>>> The instance's it refers to are layed out here:
>>>
>>> <xforms:instance id="instance">
>>>    <instance>
>>>        <name>
>>>            <select>1</select>
>>>        </name>
>>>    </instance>
>>> </xforms:instance>
>>>           <xforms:instance id="Data">
>>>    <instance>
>>>        <names selected="1">
>>>            <name value="1">
>>>                <value>1</value>
>>>                <label>Test String 1</label>
>>>            </name>
>>>            <name value="2">
>>>                <value>2</value>
>>>                <label>Test String 2</label>
>>>            </name>
>>>        </names>
>>>    </instance>
>>> </xforms:instance>
>>>
>>> Hopesfully someone can shed some light on the issue, I read in the
>>> archives there was a problem with itemset at one point, is this still
>>> the case?
>>
>>
>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the
>> [hidden email] mailing list.
>> To unsubscribe: mailto:[hidden email]
>> For general help: mailto:[hidden email]?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>  
>>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Ryan Puddephatt
Hi,
    I'm now having problems with my instance not appearing in the
select1 control. I am running a pipeline through a submission on the
xforms-model-construct-done event, this opens an XML file does a bit of
XSLT and returns my instance, but the select1 control doesn't update,
although an output control does. I have copied the output of the XPL
into the instance and the control works fine with the static data. Is
this a bug with the select1 control or am I not using XPL correctly? I
tried looking into using the model attribute within page-flow, but I
don't really know how the XPL has to be laid out and how you interact
with the data, any help would be great?

Thanks
Ryan


I'm guessing I'm going to have to use the model attribute in the
page-flow, but I'm

Erik Bruchez wrote:

> I suspct that you are using a default namespace in your document, like
> xmlns="http://www.w3.org/1999/xhtml".
>
> Any element which:
>
> o is a descendent of the element containing that default namespace
>
> o and doesn't have a namespace prefix
>
> is going to be in that default namespace. This means that your
> <instance> element is actually in the XHTML namespace. But using
> xmlns="" on the <instance> element removes the default namespace on
> <instance> and its descendents.
>
> -Erik
>
> Ryan Puddephatt wrote:
>
>> I added the namesace and it now works. Why does it require a default
>> namespace?
>>
>> Thanks for your help
>>
>> Erik Bruchez wrote:
>>
>>> Ryan,
>>>
>>> This should definitely work. Do you happen to have a default
>>> namespace in your document? What if you replace your <instance> with
>>> <instance xmlns=""> ?
>>>
>>> -Erik
>>>
>>> Ryan Puddephatt wrote:
>>>
>>>> Hi all,
>>>>    I'm trying to use a select one to show a list of names, but I
>>>> receive the following error:
>>>>
>>>> Node is not an element or attribute.
>>>>
>>>> It seems to be a problem with the select1 element rather than the
>>>> itemset, but I have exhausted my searches for a solution, below is
>>>> the select1 code snippet:
>>>>
>>>> <xforms:select1 ref="instance('instance')/name/select"
>>>> appearance="compact">    <xforms:label class="fixed-width">Saved
>>>> Queries</xforms:label>
>>>>    <xforms:itemset nodeset="instance('Data')/names/name">        
>>>> <xforms:label ref="label"/>
>>>>        <xforms:value ref="@value"/>
>>>>    </xforms:itemset> </xforms:select1>
>>>>
>>>> The instance's it refers to are layed out here:
>>>>
>>>> <xforms:instance id="instance">
>>>>    <instance>
>>>>        <name>
>>>>            <select>1</select>
>>>>        </name>
>>>>    </instance>
>>>> </xforms:instance>
>>>>           <xforms:instance id="Data">
>>>>    <instance>
>>>>        <names selected="1">
>>>>            <name value="1">
>>>>                <value>1</value>
>>>>                <label>Test String 1</label>
>>>>            </name>
>>>>            <name value="2">
>>>>                <value>2</value>
>>>>                <label>Test String 2</label>
>>>>            </name>
>>>>        </names>
>>>>    </instance>
>>>> </xforms:instance>
>>>>
>>>> Hopesfully someone can shed some light on the issue, I read in the
>>>> archives there was a problem with itemset at one point, is this
>>>> still the case?
>>>
>>>
>>>
>>>
>>> ------------------------------------------------------------------------
>>>
>>>
>>>
>>> --
>>> You receive this message as a subscriber of the
>>> [hidden email] mailing list.
>>> To unsubscribe: mailto:[hidden email]
>>> For general help: mailto:[hidden email]?subject=help
>>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>>  
>>>
>>
>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the
>> [hidden email] mailing list.
>> To unsubscribe: mailto:[hidden email]
>> For general help: mailto:[hidden email]?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>------------------------------------------------------------------------
>
>
>--
>You receive this message as a subscriber of the [hidden email] mailing list.
>To unsubscribe: mailto:[hidden email]
>For general help: mailto:[hidden email]?subject=help
>ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>  
>


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Erik Bruchez
Administrator
Does doing an xforms:refresh after xforms:send change something? Did you
place your xforms:send within an xforms:action, which also causes an
xforms:refresh to be performed?

According to the spec, "Whenever a refresh event is dispatched the
nodeset is re-evaluated to update the list of available choices."

This may or may not be the solution, but it's worth trying.

-Erik

Ryan Puddephatt wrote:

> Hi,
>    I'm now having problems with my instance not appearing in the select1
> control. I am running a pipeline through a submission on the
> xforms-model-construct-done event, this opens an XML file does a bit of
> XSLT and returns my instance, but the select1 control doesn't update,
> although an output control does. I have copied the output of the XPL
> into the instance and the control works fine with the static data. Is
> this a bug with the select1 control or am I not using XPL correctly? I
> tried looking into using the model attribute within page-flow, but I
> don't really know how the XPL has to be laid out and how you interact
> with the data, any help would be great?
>
> Thanks
> Ryan
>
>
> I'm guessing I'm going to have to use the model attribute in the
> page-flow, but I'm
>
> Erik Bruchez wrote:
>
>> I suspct that you are using a default namespace in your document, like
>> xmlns="http://www.w3.org/1999/xhtml".
>>
>> Any element which:
>>
>> o is a descendent of the element containing that default namespace
>>
>> o and doesn't have a namespace prefix
>>
>> is going to be in that default namespace. This means that your
>> <instance> element is actually in the XHTML namespace. But using
>> xmlns="" on the <instance> element removes the default namespace on
>> <instance> and its descendents.
>>
>> -Erik
>>
>> Ryan Puddephatt wrote:
>>
>>> I added the namesace and it now works. Why does it require a default
>>> namespace?
>>>
>>> Thanks for your help
>>>
>>> Erik Bruchez wrote:
>>>
>>>> Ryan,
>>>>
>>>> This should definitely work. Do you happen to have a default
>>>> namespace in your document? What if you replace your <instance> with
>>>> <instance xmlns=""> ?
>>>>
>>>> -Erik
>>>>
>>>> Ryan Puddephatt wrote:
>>>>
>>>>> Hi all,
>>>>>    I'm trying to use a select one to show a list of names, but I
>>>>> receive the following error:
>>>>>
>>>>> Node is not an element or attribute.
>>>>>
>>>>> It seems to be a problem with the select1 element rather than the
>>>>> itemset, but I have exhausted my searches for a solution, below is
>>>>> the select1 code snippet:
>>>>>
>>>>> <xforms:select1 ref="instance('instance')/name/select"
>>>>> appearance="compact">    <xforms:label class="fixed-width">Saved
>>>>> Queries</xforms:label>
>>>>>    <xforms:itemset nodeset="instance('Data')/names/name">        
>>>>> <xforms:label ref="label"/>
>>>>>        <xforms:value ref="@value"/>
>>>>>    </xforms:itemset> </xforms:select1>
>>>>>
>>>>> The instance's it refers to are layed out here:
>>>>>
>>>>> <xforms:instance id="instance">
>>>>>    <instance>
>>>>>        <name>
>>>>>            <select>1</select>
>>>>>        </name>
>>>>>    </instance>
>>>>> </xforms:instance>
>>>>>           <xforms:instance id="Data">
>>>>>    <instance>
>>>>>        <names selected="1">
>>>>>            <name value="1">
>>>>>                <value>1</value>
>>>>>                <label>Test String 1</label>
>>>>>            </name>
>>>>>            <name value="2">
>>>>>                <value>2</value>
>>>>>                <label>Test String 2</label>
>>>>>            </name>
>>>>>        </names>
>>>>>    </instance>
>>>>> </xforms:instance>
>>>>>
>>>>> Hopesfully someone can shed some light on the issue, I read in the
>>>>> archives there was a problem with itemset at one point, is this
>>>>> still the case?
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------
>>>>
>>>>
>>>>
>>>> --
>>>> You receive this message as a subscriber of the
>>>> [hidden email] mailing list.
>>>> To unsubscribe: mailto:[hidden email]
>>>> For general help: mailto:[hidden email]?subject=help
>>>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>>>  
>>>>
>>>
>>>
>>> ------------------------------------------------------------------------
>>>
>>>
>>> --
>>> You receive this message as a subscriber of the
>>> [hidden email] mailing list.
>>> To unsubscribe: mailto:[hidden email]
>>> For general help: mailto:[hidden email]?subject=help
>>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>
>>
>>
>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the
>> [hidden email] mailing list.
>> To unsubscribe: mailto:[hidden email]
>> For general help: mailto:[hidden email]?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>  
>>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Select1 problems

Ryan Puddephatt
Thanks Eric that worked, guess I overlooked that!

Erik Bruchez wrote:

> Does doing an xforms:refresh after xforms:send change something? Did
> you place your xforms:send within an xforms:action, which also causes
> an xforms:refresh to be performed?
>
> According to the spec, "Whenever a refresh event is dispatched the
> nodeset is re-evaluated to update the list of available choices."
>
> This may or may not be the solution, but it's worth trying.
>
> -Erik
>
> Ryan Puddephatt wrote:
>
>> Hi,
>>    I'm now having problems with my instance not appearing in the
>> select1 control. I am running a pipeline through a submission on the
>> xforms-model-construct-done event, this opens an XML file does a bit
>> of XSLT and returns my instance, but the select1 control doesn't
>> update, although an output control does. I have copied the output of
>> the XPL into the instance and the control works fine with the static
>> data. Is this a bug with the select1 control or am I not using XPL
>> correctly? I tried looking into using the model attribute within
>> page-flow, but I don't really know how the XPL has to be laid out and
>> how you interact with the data, any help would be great?
>>
>> Thanks
>> Ryan
>>
>>
>> I'm guessing I'm going to have to use the model attribute in the
>> page-flow, but I'm
>>
>> Erik Bruchez wrote:
>>
>>> I suspct that you are using a default namespace in your document,
>>> like xmlns="http://www.w3.org/1999/xhtml".
>>>
>>> Any element which:
>>>
>>> o is a descendent of the element containing that default namespace
>>>
>>> o and doesn't have a namespace prefix
>>>
>>> is going to be in that default namespace. This means that your
>>> <instance> element is actually in the XHTML namespace. But using
>>> xmlns="" on the <instance> element removes the default namespace on
>>> <instance> and its descendents.
>>>
>>> -Erik
>>>
>>> Ryan Puddephatt wrote:
>>>
>>>> I added the namesace and it now works. Why does it require a
>>>> default namespace?
>>>>
>>>> Thanks for your help
>>>>
>>>> Erik Bruchez wrote:
>>>>
>>>>> Ryan,
>>>>>
>>>>> This should definitely work. Do you happen to have a default
>>>>> namespace in your document? What if you replace your <instance>
>>>>> with <instance xmlns=""> ?
>>>>>
>>>>> -Erik
>>>>>
>>>>> Ryan Puddephatt wrote:
>>>>>
>>>>>> Hi all,
>>>>>>    I'm trying to use a select one to show a list of names, but I
>>>>>> receive the following error:
>>>>>>
>>>>>> Node is not an element or attribute.
>>>>>>
>>>>>> It seems to be a problem with the select1 element rather than the
>>>>>> itemset, but I have exhausted my searches for a solution, below
>>>>>> is the select1 code snippet:
>>>>>>
>>>>>> <xforms:select1 ref="instance('instance')/name/select"
>>>>>> appearance="compact">    <xforms:label class="fixed-width">Saved
>>>>>> Queries</xforms:label>
>>>>>>    <xforms:itemset nodeset="instance('Data')/names/name">        
>>>>>> <xforms:label ref="label"/>
>>>>>>        <xforms:value ref="@value"/>
>>>>>>    </xforms:itemset> </xforms:select1>
>>>>>>
>>>>>> The instance's it refers to are layed out here:
>>>>>>
>>>>>> <xforms:instance id="instance">
>>>>>>    <instance>
>>>>>>        <name>
>>>>>>            <select>1</select>
>>>>>>        </name>
>>>>>>    </instance>
>>>>>> </xforms:instance>
>>>>>>           <xforms:instance id="Data">
>>>>>>    <instance>
>>>>>>        <names selected="1">
>>>>>>            <name value="1">
>>>>>>                <value>1</value>
>>>>>>                <label>Test String 1</label>
>>>>>>            </name>
>>>>>>            <name value="2">
>>>>>>                <value>2</value>
>>>>>>                <label>Test String 2</label>
>>>>>>            </name>
>>>>>>        </names>
>>>>>>    </instance>
>>>>>> </xforms:instance>
>>>>>>
>>>>>> Hopesfully someone can shed some light on the issue, I read in
>>>>>> the archives there was a problem with itemset at one point, is
>>>>>> this still the case?
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> You receive this message as a subscriber of the
>>>>> [hidden email] mailing list.
>>>>> To unsubscribe: mailto:[hidden email]
>>>>> For general help: mailto:[hidden email]?subject=help
>>>>> ObjectWeb mailing lists service home page:
>>>>> http://www.objectweb.org/wws
>>>>>  
>>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------
>>>>
>>>>
>>>>
>>>> --
>>>> You receive this message as a subscriber of the
>>>> [hidden email] mailing list.
>>>> To unsubscribe: mailto:[hidden email]
>>>> For general help: mailto:[hidden email]?subject=help
>>>> ObjectWeb mailing lists service home page:
>>>> http://www.objectweb.org/wws
>>>
>>>
>>>
>>>
>>>
>>> ------------------------------------------------------------------------
>>>
>>>
>>>
>>> --
>>> You receive this message as a subscriber of the
>>> [hidden email] mailing list.
>>> To unsubscribe: mailto:[hidden email]
>>> For general help: mailto:[hidden email]?subject=help
>>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>>>  
>>>
>>
>>
>> ------------------------------------------------------------------------
>>
>>
>> --
>> You receive this message as a subscriber of the
>> [hidden email] mailing list.
>> To unsubscribe: mailto:[hidden email]
>> For general help: mailto:[hidden email]?subject=help
>> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>------------------------------------------------------------------------
>
>
>--
>You receive this message as a subscriber of the [hidden email] mailing list.
>To unsubscribe: mailto:[hidden email]
>For general help: mailto:[hidden email]?subject=help
>ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>  
>


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws