[JBoss JIRA] (WFLY-4782) ; jsessionid= in URL not supported
by Micheal Delson Nadar (JIRA)
[ https://issues.jboss.org/browse/WFLY-4782?page=com.atlassian.jira.plugin.... ]
Micheal Delson Nadar edited comment on WFLY-4782 at 6/15/15 7:13 AM:
---------------------------------------------------------------------
I tried deploying rundeck in WF9 and it also have some issue after successfully logging, thou in this case there is no jsessionid in the url, but it fails calling the user dashboard url.
Same works fine in Jboss EAP.
was (Author: mdelson):
I tried deploying rundeck in WF9 and it also have some issue after successfully logging, thou in this case there is no jsessionid in the url, but it fails calling the user dashboard url.
> ;jsessionid= in URL not supported
> ---------------------------------
>
> Key: WFLY-4782
> URL: https://issues.jboss.org/browse/WFLY-4782
> Project: WildFly
> Issue Type: Bug
> Components: Web (Undertow)
> Affects Versions: 9.0.0.CR2
> Environment: Linux/jdk1.7/mysql
> Reporter: Micheal Delson Nadar
> Assignee: Stuart Douglas
> Priority: Blocker
>
> I get the below url with jsessionid after logging in my application and get "Not Found"
> http://xxx.yy.xxx.x:pppp/portal/;jsessionid=dDIsgr_KfIXFBmxvClAWbY2Z.wfst...
> if i remove the ;jsessionid=dDIsgr_KfIXFBmxvClAWbY2Z.wfstandalone from url then it works fine...
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (WFCORE-547) Unable to overlay resource in subunit/zip/jar file
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/WFCORE-547?page=com.atlassian.jira.plugin... ]
RH Bugzilla Integration commented on WFCORE-547:
------------------------------------------------
baranowb <bbaranow(a)redhat.com> changed the Status of [bug 1147352|https://bugzilla.redhat.com/show_bug.cgi?id=1147352] from NEW to POST
> Unable to overlay resource in subunit/zip/jar file
> --------------------------------------------------
>
> Key: WFCORE-547
> URL: https://issues.jboss.org/browse/WFCORE-547
> Project: WildFly Core
> Issue Type: Bug
> Components: Server
> Affects Versions: 1.0.0.Alpha18
> Reporter: Bartosz Baranowski
> Assignee: Stuart Douglas
> Fix For: 1.0.0.Beta1
>
>
> It is possible to overlay resource directly in deployed jar, however, same resource can not be properly overlayed if said jar is deployed as part of ear ( possibly war as well ).
> Example:
> jar (xxx.jar):
> /org/test/ejb/EJBImpl.class
> /org/test/ejb/resourceToOverlya.txt
> ear(yyy.ear) - war seems to be the subject of this as well
> /xxx.jar
> Overlay #1( over jar)
> overlay target: xxx.jar/org/test/ejb/resourceToOverlya.txt
> Result: proper deployment(EJB is deployed), resource has been overlayed
> Overlay #2( over jar inside ear )
> overlay target: org/test/ejb/resourceToOverlya.txt
> Result: bad deployment, no EJB deployed, overlay target has been overlayed
> Reason of such outcome is that VFS.exists() does not recognize JavaZipFileSystem$ZipNode/Entry as zipped archive and does not dive into children.
> So what happens in here is as follows. When EAR is deployed OverlayProcessor kicks in at:
> https://github.com/wildfly/wildfly-core/blob/master/server/src/main/java/...
> For this example ear/jar pair, first pair of values:
> mountPoint: /content/yyy.ear/xxx.jar/org/test/ejb/resourceToOverlya.txt
> parent: /content/yyy.ear/xxx.jar/org/test/ejb
> Outcome of exists() call == false, should be true.
> this will iterate up to parent == /content/yyy.ear/xxx.jar
> At this point, 'createParents' contain some entries and
> https://github.com/wildfly/wildfly-core/blob/master/server/src/main/java/...
> will create tmp/virtual mounts for:
> - /content/yyy.ear/xxx.jar/org/test/ejb
> - /content/yyy.ear/xxx.jar/org/test
> - /content/yyy.ear/xxx.jar/org
> What it will essentially do is create overlay for whole 'org' package! The VirtualFile.getChildren() will return tmp mounted VirtualFile for 'org' entry: https://github.com/jbossas/jboss-vfs/blob/master/src/main/java/org/jboss/...
> There is part of code which should remove 'submount' if there is directory entry: https://github.com/jbossas/jboss-vfs/blob/master/src/main/java/org/jboss/... however ( if I remember correctly) 'org' tmp mount ends up twice in 'submounts'
> When VirtualFile.getChildren is called for 'this' == /content/yyy.ear/xxx.jar ( in this case it is properly removed) and when 'this' == /content/yyy.ear/xxx.jar/org - in which case it derails getChildren and diverts into tmp mount.
> Now about https://github.com/jbossas/jboss-vfs/blob/master/src/main/java/org/jboss/...
> What happens here, for ear deployment - it dives recursively into 'find' until 'target' is equal to '/content/yyy.ear/xxx.jar' at this target.getParent() == 'mountPoint' == '/content/yyy.ear'.
> At this point 'find' will get result ZipNode == /content/yyy.ear and fetch child 'xxx.jar' and pop back up one notch in the call stack. However the 'xxx.jar' entry does not have any children, hence there is no way to fetch next child in line 'org'.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (WFLY-4782) ; jsessionid= in URL not supported
by Stuart Douglas (JIRA)
[ https://issues.jboss.org/browse/WFLY-4782?page=com.atlassian.jira.plugin.... ]
Stuart Douglas commented on WFLY-4782:
--------------------------------------
So the issue here is that Jenkins is doing its own mapping using javax.servlet.http.HttpServletRequest#getRequestURI()
The Javadoc for this says:
"Returns the part of this request's URL from the protocol
name up to the query string in the first line of the HTTP request.
The web container does not decode this String.
"
>From the protocol name to the query string implies that it should also include the path parameters, although it is not explicitly stated.
> ;jsessionid= in URL not supported
> ---------------------------------
>
> Key: WFLY-4782
> URL: https://issues.jboss.org/browse/WFLY-4782
> Project: WildFly
> Issue Type: Bug
> Components: Web (Undertow)
> Affects Versions: 9.0.0.CR2
> Environment: Linux/jdk1.7/mysql
> Reporter: Micheal Delson Nadar
> Assignee: Stuart Douglas
> Priority: Blocker
>
> I get the below url with jsessionid after logging in my application and get "Not Found"
> http://xxx.yy.xxx.x:pppp/portal/;jsessionid=dDIsgr_KfIXFBmxvClAWbY2Z.wfst...
> if i remove the ;jsessionid=dDIsgr_KfIXFBmxvClAWbY2Z.wfstandalone from url then it works fine...
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months