Duvida basica struts 2

  <s:form name="form" action="" method="POST" id="form1">        
 
          <s:textfield name="iventario" label="Inventário" size="40"  theme="ajax" />
   
          <s:select tooltip="Informe o Host , Tombo ou Mac-Address" label="Tipo de Inventário"  
             			       	   list="{'HOST', 'MAC-ADDRESS' , 'TOMBO'}"
             			       	   name="tipoIventario" 
             			       	   emptyOption="true" 
             			       	   headerKey="1" 
             			           headerValue="- - - - - - Selecione - - - - - -" 
                                           theme="ajax" />

          <s:submit />

   </s:form> 		
    <s:url id="url" action="Consultar_Iventario">
    	 <s:param name="iventario" value="%{iventario}"/> 
    </s:url>
    
    <s:div id="consluta"  
  		    	   href="%{url}" 
  		    	   refreshOnShow="true"
  		      	   executeScripts="true"
  		   	   loadingText="<center> <br /> <br /> <br /> Listando Inventário... </center>" 
  		     	   errorText="Server Erro (Tente Novamente)"
  		       	   theme="ajax" />

Gente eu nao to conseguindo passar via <s:param> o valor do campo “iventario” via ognl para minha action que é chamada pela <s:url> .

Alguem tem uma dica do que tem que ser feito !?

Agradeço a quem ajudar.