Hi,

I've try that but interceptors dont say anything.
What I've done next is changing 'struts.xml' so there are no interceptors
configured.
The packagedoes not extend struts-default anymore.
The action is still being executed but the parameter is not being set
anyway.:(

Any ideas from this point?

This the struts.xml as is now:

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts
Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd";>
<struts>        

    <package name="default">            
        <result-types>
            <result-type name="chain"
class="com.opensymphony.xwork2.ActionChainResult"/>
            <result-type name="dispatcher"
class="org.apache.struts2.dispatcher.ServletDispatcherResult"
default="true"/>
            <result-type name="freemarker"
class="org.apache.struts2.views.freemarker.FreemarkerResult"/>
            <result-type name="httpheader"
class="org.apache.struts2.dispatcher.HttpHeaderResult"/>
            <result-type name="redirect"
class="org.apache.struts2.dispatcher.ServletRedirectResult"/>
            <result-type name="redirectAction"
class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
            <result-type name="stream"
class="org.apache.struts2.dispatcher.StreamResult"/>
            <result-type name="velocity"
class="org.apache.struts2.dispatcher.VelocityResult"/>
            <result-type name="xslt"
class="org.apache.struts2.views.xslt.XSLTResult"/>
            <result-type name="plainText"
class="org.apache.struts2.dispatcher.PlainTextResult" />
            <!-- Deprecated name form scheduled for removal in Struts 2.1.0.
The camelCase versions are preferred. See ww-1707 -->
            <result-type name="redirect-action"
class="org.apache.struts2.dispatcher.ServletActionRedirectResult"/>
            <result-type name="plaintext"
class="org.apache.struts2.dispatcher.PlainTextResult" />
        </result-types>
                
        
        <action name="Test" class="testpackage.Test">           
            <result>index.jsp</result>        
        </action>                         
   </package>
</struts>

Thank you!!




Andras Balogh wrote:
> 
> Hi,
> Can you set the log level to DEBUG to see what the interceptors say?
> Something like:
> log4j.category.com.opensymphony=DEBUG
> 
> BR, Andras
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Struts2-2.0.11-problem-with-url-and-parameters-tp20577582p20703831.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to