-
Notifications
You must be signed in to change notification settings - Fork 859
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
Convert jaxws tests to java #12509
Convert jaxws tests to java #12509
Conversation
<xs:element name="hello2Request"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="name" type="xs:string" form="unqualified"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="hello2Response"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="message" type="xs:string" form="unqualified"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In jax-ws 2 tests hello
request also tests the jaxws-jws-api-1.1
instrumentation while hello2
test is constructed so that the jws api instrumentation does not apply to it. In jax-ws 3 we don't have an instrumentation similar to the jws api instrumentation so we need only 1 test case.
.../src/main/java/io/opentelemetry/javaagent/instrumentation/jaxws/v2_0/AbstractJaxWs2Test.java
Outdated
Show resolved
Hide resolved
.../src/main/java/io/opentelemetry/javaagent/instrumentation/jaxws/v2_0/AbstractJaxWs2Test.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Jay DeLuca <[email protected]>
Part of #7195