You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Christoph Neuroth (JIRA)" <ji...@apache.org> on 2012/08/08 16:07:19 UTC

[jira] [Created] (OFBIZ-4984) Broken forwarding since latest trunk changes

Christoph Neuroth created OFBIZ-4984:
----------------------------------------

             Summary: Broken forwarding since latest trunk changes
                 Key: OFBIZ-4984
                 URL: https://issues.apache.org/jira/browse/OFBIZ-4984
             Project: OFBiz
          Issue Type: Bug
          Components: ALL COMPONENTS
    Affects Versions: SVN trunk
            Reporter: Christoph Neuroth
            Priority: Critical


Since the latest trunk changes, several applications no longer forward from /application to /application/control/main. This leads to subtle bugs because applications fail to load javascript resources.

Affected applications can be found easily:
{code}
$ for component in ap ar accounting assetmaint catalog content facility humanres manufcatoring marketing myportal ordermgr partymgr projectmgr sfa scrum workeffort bi ebay example exampleext googlebase googlecheckout hhfacility oagis webpos  webtools ebaystore ; do curl -sL -w "%{http_code} %{url_effective}\\n" http://demo-trunk.ofbiz.apache.org/$component/ -o /dev/null; done
302 https://demo-trunk.ofbiz.apache.org:8443/ap/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/ar/control/main
404 http://demo-trunk.ofbiz.apache.org/accounting/
302 https://demo-trunk.ofbiz.apache.org:8443/assetmaint/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/catalog/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/content/control/main
404 http://demo-trunk.ofbiz.apache.org/facility/
302 https://demo-trunk.ofbiz.apache.org:8443/humanres/control/main
404 http://demo-trunk.ofbiz.apache.org/manufcatoring/
302 https://demo-trunk.ofbiz.apache.org:8443/marketing/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/myportal/control/main
404 http://demo-trunk.ofbiz.apache.org/ordermgr/
302 https://demo-trunk.ofbiz.apache.org:8443/partymgr/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/projectmgr/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/sfa/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/scrum/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/workeffort/control/main
404 http://demo-trunk.ofbiz.apache.org/bi/
302 https://demo-trunk.ofbiz.apache.org:8443/ebay/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/example/control/main
404 http://demo-trunk.ofbiz.apache.org/exampleext/
302 https://demo-trunk.ofbiz.apache.org:8443/googlebase/control/main
404 http://demo-trunk.ofbiz.apache.org/googlecheckout/
302 https://demo-trunk.ofbiz.apache.org:8443/hhfacility/control/main
404 http://demo-trunk.ofbiz.apache.org/oagis/
200 http://demo-trunk.ofbiz.apache.org/webpos/control/main
302 https://demo-trunk.ofbiz.apache.org:8443/webtools/control/main
404 http://demo-trunk.ofbiz.apache.org/ebaystore/
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (OFBIZ-4984) Broken forwarding since latest trunk changes

Posted by "Christoph Neuroth (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-4984?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13431773#comment-13431773 ] 

Christoph Neuroth commented on OFBIZ-4984:
------------------------------------------

Found the culprit: specialpurpose/birt/ofbiz-component.xml overwrites the mount-point /ordermgr:
{code}
<webapp name="order"-->
            <!--title="Order"-->
            <!--description="OrderComponentDescription"-->
            <!--server="default-server"-->
            <!--location="webapp/ordermgr"-->
            <!--base-permission="OFBTOOLS,ORDERMGR"-->
            <!--mount-point="/ordermgr"/>
{code}
                
> Broken forwarding since latest trunk changes
> --------------------------------------------
>
>                 Key: OFBIZ-4984
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4984
>             Project: OFBiz
>          Issue Type: Bug
>          Components: ALL COMPONENTS
>    Affects Versions: SVN trunk
>            Reporter: Christoph Neuroth
>            Priority: Critical
>
> Since the latest trunk changes, several applications no longer forward from /application to /application/control/main. This leads to subtle bugs because applications fail to load javascript resources.
> Affected applications can be found easily:
> {code}
> $ for component in ap ar accounting assetmaint catalog content facility humanres manufcatoring marketing myportal ordermgr partymgr projectmgr sfa scrum workeffort bi ebay example exampleext googlebase googlecheckout hhfacility oagis webpos  webtools ebaystore ; do curl -sL -w "%{http_code} %{url_effective}\\n" http://demo-trunk.ofbiz.apache.org/$component/ -o /dev/null; done
> 302 https://demo-trunk.ofbiz.apache.org:8443/ap/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/ar/control/main
> 404 http://demo-trunk.ofbiz.apache.org/accounting/
> 302 https://demo-trunk.ofbiz.apache.org:8443/assetmaint/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/catalog/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/content/control/main
> 404 http://demo-trunk.ofbiz.apache.org/facility/
> 302 https://demo-trunk.ofbiz.apache.org:8443/humanres/control/main
> 404 http://demo-trunk.ofbiz.apache.org/manufcatoring/
> 302 https://demo-trunk.ofbiz.apache.org:8443/marketing/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/myportal/control/main
> 404 http://demo-trunk.ofbiz.apache.org/ordermgr/
> 302 https://demo-trunk.ofbiz.apache.org:8443/partymgr/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/projectmgr/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/sfa/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/scrum/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/workeffort/control/main
> 404 http://demo-trunk.ofbiz.apache.org/bi/
> 302 https://demo-trunk.ofbiz.apache.org:8443/ebay/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/example/control/main
> 404 http://demo-trunk.ofbiz.apache.org/exampleext/
> 302 https://demo-trunk.ofbiz.apache.org:8443/googlebase/control/main
> 404 http://demo-trunk.ofbiz.apache.org/googlecheckout/
> 302 https://demo-trunk.ofbiz.apache.org:8443/hhfacility/control/main
> 404 http://demo-trunk.ofbiz.apache.org/oagis/
> 200 http://demo-trunk.ofbiz.apache.org/webpos/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/webtools/control/main
> 404 http://demo-trunk.ofbiz.apache.org/ebaystore/
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Comment Edited] (OFBIZ-4984) Broken forwarding since latest trunk changes

Posted by "Christoph Neuroth (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-4984?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13431773#comment-13431773 ] 

Christoph Neuroth edited comment on OFBIZ-4984 at 8/9/12 12:31 PM:
-------------------------------------------------------------------

Found the culprit: specialpurpose/birt/ofbiz-component.xml overwrites the mount-point /ordermgr, accounting and facility
{code}
<webapp name="order"-->
            <!--title="Order"-->
            <!--description="OrderComponentDescription"-->
            <!--server="default-server"-->
            <!--location="webapp/ordermgr"-->
            <!--base-permission="OFBTOOLS,ORDERMGR"-->
            <!--mount-point="/ordermgr"/>
{code}
                
      was (Author: c089):
    Found the culprit: specialpurpose/birt/ofbiz-component.xml overwrites the mount-point /ordermgr:
{code}
<webapp name="order"-->
            <!--title="Order"-->
            <!--description="OrderComponentDescription"-->
            <!--server="default-server"-->
            <!--location="webapp/ordermgr"-->
            <!--base-permission="OFBTOOLS,ORDERMGR"-->
            <!--mount-point="/ordermgr"/>
{code}
                  
> Broken forwarding since latest trunk changes
> --------------------------------------------
>
>                 Key: OFBIZ-4984
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4984
>             Project: OFBiz
>          Issue Type: Bug
>          Components: ALL COMPONENTS
>    Affects Versions: SVN trunk
>            Reporter: Christoph Neuroth
>            Priority: Critical
>
> Since the latest trunk changes, several applications no longer forward from /application to /application/control/main. This leads to subtle bugs because applications fail to load javascript resources.
> Affected applications can be found easily:
> {code}
> $ for component in ap ar accounting assetmaint catalog content facility humanres manufcatoring marketing myportal ordermgr partymgr projectmgr sfa scrum workeffort bi ebay example exampleext googlebase googlecheckout hhfacility oagis webpos  webtools ebaystore ; do curl -sL -w "%{http_code} %{url_effective}\\n" http://demo-trunk.ofbiz.apache.org/$component/ -o /dev/null; done
> 302 https://demo-trunk.ofbiz.apache.org:8443/ap/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/ar/control/main
> 404 http://demo-trunk.ofbiz.apache.org/accounting/
> 302 https://demo-trunk.ofbiz.apache.org:8443/assetmaint/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/catalog/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/content/control/main
> 404 http://demo-trunk.ofbiz.apache.org/facility/
> 302 https://demo-trunk.ofbiz.apache.org:8443/humanres/control/main
> 404 http://demo-trunk.ofbiz.apache.org/manufcatoring/
> 302 https://demo-trunk.ofbiz.apache.org:8443/marketing/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/myportal/control/main
> 404 http://demo-trunk.ofbiz.apache.org/ordermgr/
> 302 https://demo-trunk.ofbiz.apache.org:8443/partymgr/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/projectmgr/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/sfa/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/scrum/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/workeffort/control/main
> 404 http://demo-trunk.ofbiz.apache.org/bi/
> 302 https://demo-trunk.ofbiz.apache.org:8443/ebay/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/example/control/main
> 404 http://demo-trunk.ofbiz.apache.org/exampleext/
> 302 https://demo-trunk.ofbiz.apache.org:8443/googlebase/control/main
> 404 http://demo-trunk.ofbiz.apache.org/googlecheckout/
> 302 https://demo-trunk.ofbiz.apache.org:8443/hhfacility/control/main
> 404 http://demo-trunk.ofbiz.apache.org/oagis/
> 200 http://demo-trunk.ofbiz.apache.org/webpos/control/main
> 302 https://demo-trunk.ofbiz.apache.org:8443/webtools/control/main
> 404 http://demo-trunk.ofbiz.apache.org/ebaystore/
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira