Skip to content

Commit

Permalink
Merge pull request #8658 from treblereel/WFLY-6048
Browse files Browse the repository at this point in the history
[WFLY-6048] jboss-webservices.xml descriptor doesn't override @webcon
  • Loading branch information
stuartwdouglas committed Jun 3, 2016
2 parents ed944ad + 15fa4af commit 50df8f0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ private static String getAuthMethod(final EJBEndpoint ejbEndpoint, final JBossPo
}

private static String getTransportGuarantee(final EJBEndpoint ejbEndpoint, final JBossPortComponentMetaData portComponentMD) {
if (ejbEndpoint.getTransportGuarantee() != null) return ejbEndpoint.getTransportGuarantee();
return portComponentMD != null ? portComponentMD.getTransportGuarantee() : null;
if (portComponentMD != null && portComponentMD.getTransportGuarantee() != null) return portComponentMD.getTransportGuarantee();
return ejbEndpoint != null ? ejbEndpoint.getTransportGuarantee() : null;
}

private static boolean isSecureWsdlAccess(final EJBEndpoint ejbEndpoint, final JBossPortComponentMetaData portComponentMD) {
Expand Down

0 comments on commit 50df8f0

Please sign in to comment.