
| Key: |
WW-1400
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
tm_jee
|
| Reporter: |
tm_jee
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
WebWork
Created: 17/Dec/06 07:53 AM
Updated: 17/Dec/06 08:04 AM
|
|
| Component/s: |
None
|
| Affects Version/s: |
2.2.4
|
| Fix Version/s: |
2.2.5
|
|
|
private String extractQueryString() {
// Parse the query string to make sure that the parameters come from the query, and not some posted data
String query = req.getQueryString();
+ if (query == null) {
+ //
WW-1400(Websphere will return null)+ query = (String) req.getAttribute("javax.servlet.forward.query_string");
+ }
if (query != null) {
// Remove possible #foobar suffix
int idx = query.lastIndexOf('#');
if (idx != -1) {
query = query.substring(0, idx);
}
}
return query;
}