Back to bug 1040703
| Who | When | What | Removed | Added |
|---|---|---|---|---|
| Kyle Lape | 2013-12-12 01:56:58 UTC | Blocks | 1040729 | |
| Kyle Lape | 2013-12-12 01:58:11 UTC | Target Release | --- | EAP 6.2.CP0a |
| Kyle Lape | 2013-12-12 02:04:45 UTC | Blocks | 1040731 | |
| Kyle Lape | 2013-12-12 02:06:38 UTC | Blocks | 1040731 | |
| Kyle Lape | 2013-12-12 02:07:43 UTC | Blocks | 1040732 | |
| Kyle Lape | 2013-12-12 02:08:18 UTC | Blocks | 1040732 | |
| mark yarborough | 2013-12-17 00:28:19 UTC | Target Release | EAP 6.2.CP0a | EAP 6.3.0 |
| Alessio Soldano | 2014-02-14 13:01:55 UTC | Depends On | 1040731 | |
| Alessio Soldano | 2014-02-14 13:03:13 UTC | Blocks | 1040729 | |
| Kyle Lape | 2014-02-18 21:40:18 UTC | Status | NEW | POST |
| Target Release | EAP 6.3.0 | EAP 6.2.2 | ||
| Blocks | 1040729 | |||
| Kyle Lape | 2014-02-18 21:41:06 UTC | Summary | JAXBDataBinding can not handle the exception with generic objects like ObjectWithGenerics<Boolean, Integer> | [GSS] (6.2.x) JAXBDataBinding can not handle the exception with generic objects like ObjectWithGenerics<Boolean, Integer> |
| Kyle Lape | 2014-02-19 23:24:57 UTC | Depends On | 1040731 | |
| Kyle Lape | 2014-02-24 19:53:42 UTC | Blocks | 1069354 | |
| Kyle Lape | 2014-02-24 19:54:53 UTC | Blocks | 1069354 | |
| Vaclav Tunka | 2014-02-28 17:25:44 UTC | Status | POST | ON_QA |
| CC | vtunka | |||
| Target Milestone | --- | CR2 | ||
| Petr Sakař | 2014-03-03 16:02:49 UTC | CC | klape, psakar | |
| Flags | needinfo?(klape) | |||
| Kyle Lape | 2014-03-05 07:46:27 UTC | Flags | needinfo?(klape) | |
| Petr Sakař | 2014-03-05 08:31:45 UTC | Status | ON_QA | ASSIGNED |
| Jim Ma | 2014-03-06 11:25:51 UTC | CC | ema | |
| Rostislav Svoboda | 2014-03-06 13:21:14 UTC | Flags | needinfo?(klape) | |
| Kyle Lape | 2014-03-10 02:59:30 UTC | Flags | needinfo?(klape) | |
| Vaclav Tunka | 2014-03-20 23:01:45 UTC | Status | ASSIGNED | ON_QA |
| Vaclav Tunka | 2014-03-20 23:02:00 UTC | Target Milestone | CR2 | CR3 |
| Petr Sakař | 2014-03-21 07:49:44 UTC | Status | ON_QA | ASSIGNED |
| Kyle Lape | 2014-04-14 20:58:36 UTC | Blocks | 1067532 | |
| Brad Maxwell | 2014-04-16 21:18:45 UTC | CC | bmaxwell | |
| Blocks | 1067532 | 1067534 | ||
| mark yarborough | 2014-04-22 15:20:07 UTC | Target Release | EAP 6.2.2 | --- |
| CC | myarboro | |||
| Carlo de Wolf | 2014-04-23 06:56:50 UTC | CC | cdewolf | |
| Blocks | 1040729 | |||
| Target Milestone | CR3 | --- | ||
| Russell Dickenson | 2014-05-13 05:26:35 UTC | Doc Text | When an `Exception` class has some generic objects as in the following example, the WSDL generated from the exception class is wrong and the SOAP fault message is not expected. The root cause of this is not yet known and a workaround is not available. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- | |
| Doc Type | Bug Fix | Known Issue | ||
| Flags | needinfo?(klape) | |||
| Jim Ma | 2014-05-22 05:12:03 UTC | Assignee | asoldano | ema |
| Kyle Lape | 2014-06-05 23:17:01 UTC | Depends On | 1040732 | |
| Kyle Lape | 2014-06-05 23:35:07 UTC | Status | ASSIGNED | MODIFIED |
| Flags | needinfo?(klape) | |||
| Kyle Lape | 2014-06-05 23:36:59 UTC | Doc Text | When an `Exception` class has some generic objects as in the following example, the WSDL generated from the exception class is wrong and the SOAP fault message is not expected. The root cause of this is not yet known and a workaround is not available. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- | When an `Exception` class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is wrong and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- |
| Emmanuel Hugonnet (ehsavoie) | 2014-06-06 08:56:30 UTC | Blocks | 1069354 | |
| Vaclav Tunka | 2014-06-16 17:40:30 UTC | Status | MODIFIED | ON_QA |
| Target Release | --- | EAP 6.2.4 | ||
| Target Milestone | --- | CR1 | ||
| John Skeoch | 2014-06-18 07:21:18 UTC | CC | psakar | nobody |
| Scott Mumford | 2014-06-19 02:55:50 UTC | CC | smumford | |
| Doc Text | When an `Exception` class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is wrong and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- | This release of JBoss EAP 6 carries an issue wherein, when an `Exception` class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is incorrect and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- |
||
| Jan Blizňák | 2014-06-19 13:16:18 UTC | CC | jbliznak | |
| Flags | needinfo?(ema) | |||
| Scott Mumford | 2014-06-23 01:56:44 UTC | Doc Text | This release of JBoss EAP 6 carries an issue wherein, when an `Exception` class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is incorrect and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- | This release of JBoss EAP 6 carries an issue wherein, when an Exception class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is incorrect and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- |
| Jan Blizňák | 2014-06-23 08:54:35 UTC | Status | ON_QA | VERIFIED |
| Flags | needinfo?(ema) | |||
| Jan Blizňák | 2014-06-23 09:33:27 UTC | Blocks | 1112172 | |
| Scott Mumford | 2014-06-24 00:49:22 UTC | Doc Text | This release of JBoss EAP 6 carries an issue wherein, when an Exception class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is incorrect and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- | Previous releases of JBoss EAP 6 carried an issue wherein, when an Exception class has some members with type parameters defined as in the following example, the WSDL generated from the exception class is incorrect and the SOAP fault message is not expected. ---- @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } } ---- This issue has been resolved in this release. |
| Doc Type | Known Issue | Bug Fix | ||
| mark yarborough | 2014-06-28 15:43:32 UTC | Status | VERIFIED | CLOSED |
| Target Release | EAP 6.2.4 | EAP 6.3.0 | ||
| Resolution | --- | CURRENTRELEASE | ||
| Last Closed | 2014-06-28 11:43:32 UTC |
Back to bug 1040703