You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Svetlana Reznikov (JIRA)" <ji...@apache.org> on 2007/05/19 03:35:42 UTC

[jira] Created: (WW-1933) HTTP Status 404 - result 'null' not found

HTTP Status 404 - result 'null' not found
-----------------------------------------

                 Key: WW-1933
                 URL: https://issues.apache.org/struts/browse/WW-1933
             Project: Struts 2
          Issue Type: Bug
    Affects Versions: 2.0.6
         Environment: Sun Solaris, Sun App Server 8.1
            Reporter: Svetlana Reznikov
            Priority: Critical


I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
HTTP Status 404 - result 'null' not found
type Status report
message result 'null' not found
description The requested resource (result 'null' not found) is not available.
--------------------------------------------------------------------------------
Sun-Java-System/Application-Server
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)

I think it's a major problem and hope that the solution can be found. 


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


[jira] Updated: (WW-1933) HTTP Status 404 - result 'null' not found

Posted by "Don Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/WW-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Don Brown updated WW-1933:
--------------------------

    Fix Version/s: 2.0.9

> HTTP Status 404 - result 'null' not found
> -----------------------------------------
>
>                 Key: WW-1933
>                 URL: https://issues.apache.org/struts/browse/WW-1933
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.0.6
>         Environment: Sun Solaris, Sun App Server 8.1
>            Reporter: Svetlana Reznikov
>            Priority: Critical
>             Fix For: 2.0.9
>
>
> I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
> We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> HTTP Status 404 - result 'null' not found
> type Status report
> message result 'null' not found
> description The requested resource (result 'null' not found) is not available.
> --------------------------------------------------------------------------------
> Sun-Java-System/Application-Server
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
> This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
> It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)
> I think it's a major problem and hope that the solution can be found. 

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


[jira] Issue Comment Edited: (WW-1933) HTTP Status 404 - result 'null' not found

Posted by "Svetlana Reznikov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/WW-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41140 ] 

Svetlana Reznikov edited comment on WW-1933 at 5/31/07 12:08 PM:
-----------------------------------------------------------------

ok, the problem has been solved. It was Sun App Server policy problem.
I added the following permissions to the server.policy file and it solved the problem.

permission java.lang.RuntimePermission   "setContextClassLoader";
permission java.util.PropertyPermission "*", "read, write";
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
permission ognl.OgnlInvokePermission "*";




 was:
ok, the problem has been solved. It was Sun App Server policy problem.
I added the following permission to the server.policy file and it solved the problem.

permission java.security.AllPermission "createClassLoader";



> HTTP Status 404 - result 'null' not found
> -----------------------------------------
>
>                 Key: WW-1933
>                 URL: https://issues.apache.org/struts/browse/WW-1933
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.0.6
>         Environment: Sun Solaris, Sun App Server 8.1
>            Reporter: Svetlana Reznikov
>            Priority: Critical
>             Fix For: 2.0.9
>
>
> I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
> We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> HTTP Status 404 - result 'null' not found
> type Status report
> message result 'null' not found
> description The requested resource (result 'null' not found) is not available.
> --------------------------------------------------------------------------------
> Sun-Java-System/Application-Server
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
> This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
> It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)
> I think it's a major problem and hope that the solution can be found. 

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


[jira] Updated: (WW-1933) HTTP Status 404 - result 'null' not found

Posted by "Svetlana Reznikov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/WW-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Svetlana Reznikov updated WW-1933:
----------------------------------


This issue sounds similar to the reported.

http://forums.opensymphony.com/message.jspa?messageID=109582

> HTTP Status 404 - result 'null' not found
> -----------------------------------------
>
>                 Key: WW-1933
>                 URL: https://issues.apache.org/struts/browse/WW-1933
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.0.6
>         Environment: Sun Solaris, Sun App Server 8.1
>            Reporter: Svetlana Reznikov
>            Priority: Critical
>
> I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
> We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> HTTP Status 404 - result 'null' not found
> type Status report
> message result 'null' not found
> description The requested resource (result 'null' not found) is not available.
> --------------------------------------------------------------------------------
> Sun-Java-System/Application-Server
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
> This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
> It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)
> I think it's a major problem and hope that the solution can be found. 

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


[jira] Commented: (WW-1933) HTTP Status 404 - result 'null' not found

Posted by "Svetlana Reznikov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/WW-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_41140 ] 

Svetlana Reznikov commented on WW-1933:
---------------------------------------

ok, the problem has been solved. It was Sun App Server policy problem.
I added the following permission to the server.policy file and it solved the problem.

permission java.security.AllPermission "createClassLoader";



> HTTP Status 404 - result 'null' not found
> -----------------------------------------
>
>                 Key: WW-1933
>                 URL: https://issues.apache.org/struts/browse/WW-1933
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.0.6
>         Environment: Sun Solaris, Sun App Server 8.1
>            Reporter: Svetlana Reznikov
>            Priority: Critical
>             Fix For: 2.0.9
>
>
> I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
> We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> HTTP Status 404 - result 'null' not found
> type Status report
> message result 'null' not found
> description The requested resource (result 'null' not found) is not available.
> --------------------------------------------------------------------------------
> Sun-Java-System/Application-Server
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
> This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
> It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)
> I think it's a major problem and hope that the solution can be found. 

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


[jira] Resolved: (WW-1933) HTTP Status 404 - result 'null' not found

Posted by "James Holmes (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/WW-1933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James Holmes resolved WW-1933.
------------------------------

    Resolution: Not A Problem

This is very similar to WebWork ticket 1445:

http://jira.opensymphony.com/browse/WW-1445

This is a security policy issue on some servers and can be resolved by properly configuring the security policy settings.

> HTTP Status 404 - result 'null' not found
> -----------------------------------------
>
>                 Key: WW-1933
>                 URL: https://issues.apache.org/struts/browse/WW-1933
>             Project: Struts 2
>          Issue Type: Bug
>    Affects Versions: 2.0.6
>         Environment: Sun Solaris, Sun App Server 8.1
>            Reporter: Svetlana Reznikov
>            Priority: Critical
>             Fix For: 2.0.9
>
>
> I am sure this issue is not new, and it must be a work around, but unfortunately I was not able to find it yet.
> We have a local Windows environment (Sun App Server 8.2) where our project works just fine. But once we deployed it on our server (Sun Solaris) we've got the following error on every action we have in struts configuration xml. 
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> HTTP Status 404 - result 'null' not found
> type Status report
> message result 'null' not found
> description The requested resource (result 'null' not found) is not available.
> --------------------------------------------------------------------------------
> Sun-Java-System/Application-Server
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> After some checks of configurations on both servers (no major differences) and included jars I replaced our project with one from the struts tutorial HelloWorld. < http://struts.apache.org/2.0.6/docs/hello-world.html >
> This project built in our environment had the same behavior as our oroginal project  - worked locally and got the "404 error" on Solaris. 
> It must be some parsing of struts config file issue. Struts can "read" the action class, the method specified executes (checked in logs), but the result page is not read (recognized) (???)
> I think it's a major problem and hope that the solution can be found. 

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