-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TCK: spi/soap tests #215
Comments
True, we should do a maintenance release to include such property.
The idea is indeed that instead of editing ts.jte, one would edit pom.xml. There's also a system property for SOAP/XML WS for the provider that takes precendence; "jakarta.xml.ws.spi.Provider". Obviously whatever it points to has to be on the class path. |
This probably needs to be documented somewhere then. It only really talks about using the Glassfish example as a guide, but all of the properties used there are for the servlet tests, not the SOAP ones. The SOAP ones just get to work as-is because of the contents of the |
Yes, SOAP has indeed been a bit of an afterthought, mainly because of all the deprecation around SOAP. We should also have deprecated the support for SOAP in Authentication itself. My bad. |
Please label this issue as a formal TCK challenge. All the tests that depend on SOAP either need to be optional along the lines of the existing skipXxxx properties or removed completely. |
Indeed. We discussed a "skipXxxx" property before, so that would be the prefered solution for this challenge I think. |
Working on changes to that effect as we speak. I still intend to have something up by the end of the week. |
@markt-asf Do you want the two tomcat profiles in the top-level POM to default skipSOAP to true? |
Yes please. Tx. |
I'm not sure if all of this is a challenge or if I just don't understand how the ported
spi/soap
tests in the 3.1.x TCK are supposed to work.First, for purposes of EE 11 implementations, shouldn't these tests be optional? The test application requires SOAP/XML WS which were removed as technologies from the platform in EE 11. As such, we'd want a property to control their execution in the TCK, similar to the
skipJACC
one that's already available for those tests.Second, is it understood that a user is supposed to make some pom-level changes in order to make these work? There's nothing in particular in the TCK guide about these tests. I'm attempting to execute them against Open Liberty and they blow up on the test side with this exception:
The
com.sun.xml.wss.provider.wsit
stuff in that stack comes from the glassfish dependency defined in the pom and doesn't have anything to do with Open Liberty. Before porting, these tests would have been run through the JavaTest environment which allows an implementation to define the classpath, etc. ints.jte
for test execution.The text was updated successfully, but these errors were encountered: