[JBoss JIRA] (DROOLS-112) Allow join constraints in sliding windows
by Michael Biarnes Kiefer (JIRA)
[ https://issues.jboss.org/browse/DROOLS-112?page=com.atlassian.jira.plugin... ]
Michael Biarnes Kiefer updated DROOLS-112:
------------------------------------------
Fix Version/s: 6.1.0.Beta4
(was: 6.1.0.Beta3)
> Allow join constraints in sliding windows
> -----------------------------------------
>
> Key: DROOLS-112
> URL: https://issues.jboss.org/browse/DROOLS-112
> Project: Drools
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Affects Versions: 5.5.0.Final, 6.0.0.Alpha9, 6.0.0.Beta1
> Reporter: Davide Sottara
> Assignee: Mark Proctor
> Priority: Critical
> Fix For: 6.1.0.Beta4
>
>
> When using a sliding window, alpha constraints are evaluated before the window is considered, but beta (join) constraints are evaluated afterwards.
> While it does not usually make a difference when time windows are concerned,
> it DOES make a difference with length windows.
> Imho, a clear warning should be added in the documentation to clarify
> the current behavior.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (DROOLS-432) Types declared in a foreign package are processed one at a time
by Michael Biarnes Kiefer (JIRA)
[ https://issues.jboss.org/browse/DROOLS-432?page=com.atlassian.jira.plugin... ]
Michael Biarnes Kiefer updated DROOLS-432:
------------------------------------------
Fix Version/s: 6.1.0.Beta4
(was: 6.1.0.Beta3)
> Types declared in a foreign package are processed one at a time
> ---------------------------------------------------------------
>
> Key: DROOLS-432
> URL: https://issues.jboss.org/browse/DROOLS-432
> Project: Drools
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 5.5.0.Final, 5.6.0.Final, 6.0.1.Final
> Reporter: Davide Sottara
> Assignee: Mark Proctor
> Fix For: 6.1.0.Beta4
>
>
> The following snippet has two issues
> {code}
> package a;
> declare b.X field : b.Y end
> declare b.Y end
> {code}
> While processing package a, the packageBuilder will infer the existence of package b and create the appropriate typeDeclarations.
> However, a partial, independent package b is created for X and Y:
> - it is inefficient
> - internal dependencies cannot be resolved : b.X does not (yet) see b.Y
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months
[JBoss JIRA] (WFLY-3279) HttpServletResponse.sendRedirect() not working for relative URL
by Stuart Douglas (JIRA)
[ https://issues.jboss.org/browse/WFLY-3279?page=com.atlassian.jira.plugin.... ]
Stuart Douglas resolved WFLY-3279.
----------------------------------
Fix Version/s: 8.1.0.Final
Resolution: Done
> HttpServletResponse.sendRedirect() not working for relative URL
> ---------------------------------------------------------------
>
> Key: WFLY-3279
> URL: https://issues.jboss.org/browse/WFLY-3279
> Project: WildFly
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Web (Undertow)
> Affects Versions: 8.0.0.Final, 8.1.0.CR1
> Environment: Windows
> Reporter: Mehboob Alam
> Assignee: Stuart Douglas
> Fix For: 8.1.0.Final
>
> Attachments: Recreate_SendRedirect_Problem.ear
>
>
> I cannot get HttpServletResponse.sendRedirect() to work correctly. This only happens to me with Wildfly. It works on previous versions of JBoss EAP/AS and several other app servers where I tested the scenario.
>
> The sample app has two servlet. I navigate from one to the other using sendRedirect. The key seems to be relative path in the form "../whatever/whatever" is not working.
> To test this, I enter my app's URL like this-
> http://localhost:8080/helloworld/hello
> Then, inside the first servlet, I do a redirect -
> String url = "../goodbye/bye";
> response.sendRedirect(response.encodeRedirectURL(url));
> wildfly 8 gives me a HTTP Status 404. wildfly 8.1 CR1 gives me a HTTP Status 403. All other app server works. It takes me to this url:
> http://localhost:8080/goodbye/bye
> JBoss eap-6-1-0
> Status Host Path
> 302 localhost:8080 /helloworld/hello
> 200 localhost:8080 /goodbye/bye/
> WildFly 8.0 Final
> Status Host Path
> 302 localhost:8080 /helloworld/hello
> 404 localhost:8080 /helloworld/
> WildFly 8.1.0 CR1 Final
> Status Host Path
> 302 localhost:8080 /helloworld/hello
> 403 localhost:8080 /helloworld/
> This behavior also appears to be different than that of java.net.URL,
> public URL(URL context, String spec)
> throws MalformedURLException
> which states this: If the spec's path component begins with a slash character "/" then the path is treated as absolute and the spec path replaces the context path.
> Otherwise, the path is treated as a relative path and is appended to the context path, as described in RFC2396. Also, in this case, the path is canonicalized through the removal of directory changes made by occurences of ".." and ".".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
10 years, 8 months