From 91781e1ea2ef527e07c0e5b7dfa2778261b76afd Mon Sep 17 00:00:00 2001 From: coffeys Date: Wed, 23 Oct 2013 20:51:14 +0100 Subject: [PATCH] 8026405: javax/xml/ws/clientjar/TestWsImport.java failing on JDK 8 nightly aurora test runs Reviewed-by: chegar --- test/javax/xml/ws/clientjar/TestWsImport.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/javax/xml/ws/clientjar/TestWsImport.java b/test/javax/xml/ws/clientjar/TestWsImport.java index add1c2a7e..422f4f5f0 100644 --- a/test/javax/xml/ws/clientjar/TestWsImport.java +++ b/test/javax/xml/ws/clientjar/TestWsImport.java @@ -23,7 +23,7 @@ /* * @test - * @bug 8016271 + * @bug 8016271 8026405 * @summary wsimport -clientjar does not create portable jar on windows due to hardcoded '\' * @run main/othervm TestWsImport */ @@ -77,14 +77,14 @@ public class TestWsImport { String address = "http://localhost:" + port + "/hello"; Service service = Service.create(new URL(address + "?wsdl"), - new QName("http://test/jaxws/sample/", - "TestService")); + new QName("http://test/jaxws/sample/", "TestService")); String[] wsargs = { wsimport, "-p", "wstest", "-J-Djavax.xml.accessExternalSchema=all", + "-J-Dcom.sun.tools.internal.ws.Invoker.noSystemProxies=true", address + "?wsdl", "-clientjar", "wsjar.jar" -- GitLab