[JBoss JIRA] (JBWS-3684) AbstractServerConfig is not fully thread safe
by Alessio Soldano (JIRA)
Alessio Soldano created JBWS-3684:
-------------------------------------
Summary: AbstractServerConfig is not fully thread safe
Key: JBWS-3684
URL: https://issues.jboss.org/browse/JBWS-3684
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Alessio Soldano
Assignee: Alessio Soldano
We have possible visibility issues with the webServiceHost, webServicePort, webServiceSecurePort, modifySOAPAddress members of the AbstractServerConfig.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3682) Anonymous types in an exception aren't generated in WSDL
by Tadayoshi Sato (JIRA)
[ https://issues.jboss.org/browse/JBWS-3682?page=com.atlassian.jira.plugin.... ]
Tadayoshi Sato updated JBWS-3682:
---------------------------------
> Anonymous types in an exception aren't generated in WSDL
> --------------------------------------------------------
>
> Key: JBWS-3682
> URL: https://issues.jboss.org/browse/JBWS-3682
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Tadayoshi Sato
> Attachments: exception-anontype.zip
>
>
> This is a CXF issue: https://issues.apache.org/jira/browse/CXF-5208
> Anonymous types (annotated with {{@XmlType(name = "")}}) in an exception class aren't generated at all in WSDL.
> Web service classes:
> {code:java}
> @WebService
> public class GreetingService {
> @WebMethod
> public void hello() throws MyException {}
> ...
> {code}
> {code:java}
> public class MyException extends Exception {
> private String str;
> private MyAnonType myAnonObj;
> public String getStr() { return str; }
> public void setStr(String str) { this.str = str; }
> public MyAnonType getMyAnonObj() { return myAnonObj; }
> public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
> ...
> {code}
> {code:java}
> @XmlType(name = "")
> public class MyAnonType { ...
> {code}
> Generated WSDL:
> {code:xml}
> <wsdl:types>
> <xs:schema ...>
> ...
> <xs:complexType name="MyException">
> <xs:sequence>
> <xs:element name="str" nillable="true" type="xs:string"/>
> </xs:sequence>
> </xs:complexType>
> {code}
> Note that the same type ({{MyAnonType}}) is generated in WSDL if the {{@XmlType(name = "")}} annotation is removed.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3682) Anonymous types in an exception aren't generated in WSDL
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBWS-3682?page=com.atlassian.jira.plugin.... ]
RH Bugzilla Integration updated JBWS-3682:
------------------------------------------
Bugzilla Update: Perform
Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=997380
> Anonymous types in an exception aren't generated in WSDL
> --------------------------------------------------------
>
> Key: JBWS-3682
> URL: https://issues.jboss.org/browse/JBWS-3682
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Tadayoshi Sato
> Attachments: exception-anontype.zip
>
>
> This is a CXF issue: https://issues.apache.org/jira/browse/CXF-5208
> Anonymous types (annotated with {{@XmlType(name = "")}}) in an exception class aren't generated at all in WSDL.
> Web service classes:
> {code:java}
> @WebService
> public class GreetingService {
> @WebMethod
> public void hello() throws MyException {}
> ...
> {code}
> {code:java}
> public class MyException extends Exception {
> private String str;
> private MyAnonType myAnonObj;
> public String getStr() { return str; }
> public void setStr(String str) { this.str = str; }
> public MyAnonType getMyAnonObj() { return myAnonObj; }
> public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
> ...
> {code}
> {code:java}
> @XmlType(name = "")
> public class MyAnonType { ...
> {code}
> Generated WSDL:
> {code:xml}
> <wsdl:types>
> <xs:schema ...>
> ...
> <xs:complexType name="MyException">
> <xs:sequence>
> <xs:element name="str" nillable="true" type="xs:string"/>
> </xs:sequence>
> </xs:complexType>
> {code}
> Note that the same type ({{MyAnonType}}) is generated in WSDL if the {{@XmlType(name = "")}} annotation is removed.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3682) Anonymous types in an exception aren't generated in WSDL
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBWS-3682?page=com.atlassian.jira.plugin.... ]
RH Bugzilla Integration commented on JBWS-3682:
-----------------------------------------------
Tadayoshi Sato <tasato(a)redhat.com> made a comment on [bug 997380|https://bugzilla.redhat.com/show_bug.cgi?id=997380]
Platform BZ for https://issues.jboss.org/browse/JBWS-3682
Anonymous types (annotated with @XmlType(name = "")) in an exception class aren't generated at all in WSDL.
Web service classes:
--------------------
@WebService
public class GreetingService {
@WebMethod
public void hello() throws MyException {}
...
public class MyException extends Exception {
private String str;
private MyAnonType myAnonObj;
public String getStr() { return str; }
public void setStr(String str) { this.str = str; }
public MyAnonType getMyAnonObj() { return myAnonObj; }
public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
...
@XmlType(name = "")
public class MyAnonType { ...
Generated WSDL:
---------------
<wsdl:types>
<xs:schema ...>
...
<xs:complexType name="MyException">
<xs:sequence>
<xs:element name="str" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
Note that the same type (MyAnonType) is generated in WSDL if the @XmlType(name = "") annotation is removed.
> Anonymous types in an exception aren't generated in WSDL
> --------------------------------------------------------
>
> Key: JBWS-3682
> URL: https://issues.jboss.org/browse/JBWS-3682
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Tadayoshi Sato
> Attachments: exception-anontype.zip
>
>
> This is a CXF issue: https://issues.apache.org/jira/browse/CXF-5208
> Anonymous types (annotated with {{@XmlType(name = "")}}) in an exception class aren't generated at all in WSDL.
> Web service classes:
> {code:java}
> @WebService
> public class GreetingService {
> @WebMethod
> public void hello() throws MyException {}
> ...
> {code}
> {code:java}
> public class MyException extends Exception {
> private String str;
> private MyAnonType myAnonObj;
> public String getStr() { return str; }
> public void setStr(String str) { this.str = str; }
> public MyAnonType getMyAnonObj() { return myAnonObj; }
> public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
> ...
> {code}
> {code:java}
> @XmlType(name = "")
> public class MyAnonType { ...
> {code}
> Generated WSDL:
> {code:xml}
> <wsdl:types>
> <xs:schema ...>
> ...
> <xs:complexType name="MyException">
> <xs:sequence>
> <xs:element name="str" nillable="true" type="xs:string"/>
> </xs:sequence>
> </xs:complexType>
> {code}
> Note that the same type ({{MyAnonType}}) is generated in WSDL if the {{@XmlType(name = "")}} annotation is removed.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3682) Anonymous types in an exception aren't generated in WSDL
by Tadayoshi Sato (JIRA)
[ https://issues.jboss.org/browse/JBWS-3682?page=com.atlassian.jira.plugin.... ]
Tadayoshi Sato updated JBWS-3682:
---------------------------------
Attachment: exception-anontype.zip
Reproducer attached.
> Anonymous types in an exception aren't generated in WSDL
> --------------------------------------------------------
>
> Key: JBWS-3682
> URL: https://issues.jboss.org/browse/JBWS-3682
> Project: JBoss Web Services
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2
> Reporter: Tadayoshi Sato
> Attachments: exception-anontype.zip
>
>
> This is a CXF issue: https://issues.apache.org/jira/browse/CXF-5208
> Anonymous types (annotated with {{@XmlType(name = "")}}) in an exception class aren't generated at all in WSDL.
> Web service classes:
> {code:java}
> @WebService
> public class GreetingService {
> @WebMethod
> public void hello() throws MyException {}
> ...
> {code}
> {code:java}
> public class MyException extends Exception {
> private String str;
> private MyAnonType myAnonObj;
> public String getStr() { return str; }
> public void setStr(String str) { this.str = str; }
> public MyAnonType getMyAnonObj() { return myAnonObj; }
> public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
> ...
> {code}
> {code:java}
> @XmlType(name = "")
> public class MyAnonType { ...
> {code}
> Generated WSDL:
> {code:xml}
> <wsdl:types>
> <xs:schema ...>
> ...
> <xs:complexType name="MyException">
> <xs:sequence>
> <xs:element name="str" nillable="true" type="xs:string"/>
> </xs:sequence>
> </xs:complexType>
> {code}
> Note that the same type ({{MyAnonType}}) is generated in WSDL if the {{@XmlType(name = "")}} annotation is removed.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3682) Anonymous types in an exception aren't generated in WSDL
by Tadayoshi Sato (JIRA)
Tadayoshi Sato created JBWS-3682:
------------------------------------
Summary: Anonymous types in an exception aren't generated in WSDL
Key: JBWS-3682
URL: https://issues.jboss.org/browse/JBWS-3682
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: jbossws-cxf
Affects Versions: jbossws-cxf-4.2
Reporter: Tadayoshi Sato
Attachments: exception-anontype.zip
This is a CXF issue: https://issues.apache.org/jira/browse/CXF-5208
Anonymous types (annotated with {{@XmlType(name = "")}}) in an exception class aren't generated at all in WSDL.
Web service classes:
{code:java}
@WebService
public class GreetingService {
@WebMethod
public void hello() throws MyException {}
...
{code}
{code:java}
public class MyException extends Exception {
private String str;
private MyAnonType myAnonObj;
public String getStr() { return str; }
public void setStr(String str) { this.str = str; }
public MyAnonType getMyAnonObj() { return myAnonObj; }
public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
...
{code}
{code:java}
@XmlType(name = "")
public class MyAnonType { ...
{code}
Generated WSDL:
{code:xml}
<wsdl:types>
<xs:schema ...>
...
<xs:complexType name="MyException">
<xs:sequence>
<xs:element name="str" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
{code}
Note that the same type ({{MyAnonType}}) is generated in WSDL if the {{@XmlType(name = "")}} annotation is removed.
--
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
11 years, 3 months
[JBoss JIRA] (JBWS-3681) Add to testsuite profiles allowing to exclude tests requiring Bouncy Castle JCE provider or unlimited strength cryptography installed
by Petr Sakař (JIRA)
[ https://issues.jboss.org/browse/JBWS-3681?page=com.atlassian.jira.plugin.... ]
Petr Sakař updated JBWS-3681:
-----------------------------
Attachment: patch_jbossws_4.1.3_trunk_add_profiles_to_exclude_tests_related_to_JCE_Provider_BC_and_strong_cryptography.txt
patch with new profiles
> Add to testsuite profiles allowing to exclude tests requiring Bouncy Castle JCE provider or unlimited strength cryptography installed
> -------------------------------------------------------------------------------------------------------------------------------------
>
> Key: JBWS-3681
> URL: https://issues.jboss.org/browse/JBWS-3681
> Project: JBoss Web Services
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-4.2.1
> Reporter: Petr Sakař
> Priority: Optional
> Attachments: patch_jbossws_4.1.3_trunk_add_profiles_to_exclude_tests_related_to_JCE_Provider_BC_and_strong_cryptography.txt
>
>
> Following tests require to pass java with installed BouncyCastle JCE Provider:
> modules/testsuite/cxf-tests
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples22xTestCase.test221
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples22xTestCase.test222
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples22xTestCase.test223
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples22xTestCase.test224
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples23xTestCase.test2314
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples23xTestCase.test2315
> org.jboss.test.ws.jaxws.samples.wsse.policy.oasis.WSSecurityPolicyExamples23xTestCase.test2324
> org.jboss.test.ws.jaxws.samples.wsse.policy.trust.WSTrustTestCase.test
> org.jboss.test.ws.jaxws.samples.wsse.policy.trust.WSTrustTestCase.testUsingEPR
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testClientSide
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testClientSideUsingConfigProperties
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testServerSideUsingConfigProperties
> Following tests require to pass java with installed strong cryptography policy files:
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testClientSide
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testClientSideUsingConfigProperties
> org.jboss.test.ws.jaxws.samples.wsse.policy.basic.SignEncryptGCMTestCase.testServerSideUsingConfigProperties
>
> The profile exclude-integration-tests-BC-related and exclude-integration-tests-unlimited-strength-related allow to exclude these tests, so the testsuite can be successfully run without these tests.
> The profiles are by default switched off.
> To switch on profile use command line property -Dexclude-integration-tests-BC-related and -Dexclude-integration-tests-unlimited-strength-related
--
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
11 years, 3 months