1 #
   2 # Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 wsimport.usage=Usage: {0} [options] <WSDL_URI>\n\n\
  27 Use "wsimport -help" for a detailed description of options.
  28 
  29 wsimport.help=\nUsage: {0} [options] <WSDL_URI>\n\n\
  30 \where [options] include:\n\
  31 \  -b <path>                 specify jaxws/jaxb binding files or additional schemas\n\
  32 \                            (Each <path> must have its own -b)\n\
  33 \  -B<jaxbOption>            Pass this option to JAXB schema compiler\n\
  34 \  -catalog <file>           specify catalog file to resolve external entity references\n\
  35 \                            supports TR9401, XCatalog, and OASIS XML Catalog format.\n\
  36 \  -classpath <path>         specify where to find user class files and wsimport extensions\n\
  37 \  -cp <path>                specify where to find user class files and wsimport extensions\n\
  38 \  -d <directory>            specify where to place generated output files\n\
  39 \  -encoding <encoding>      specify character encoding used by source files\n\
  40 \  -extension                allow vendor extensions - functionality not specified\n\
  41 \                            by the specification.  Use of extensions may\n\
  42 \                            result in applications that are not portable or\n\
  43 \                            may not interoperate with other implementations\n\
  44 \  -help                     display help\n\
  45 \  -httpproxy:<proxy>        set a HTTP proxy. Format is [user[:password]@]proxyHost:proxyPort\n\
  46 \                            (port defaults to 8080)\n\
  47 \  -J<javacOption>           pass this option to javac\n\
  48 \  -keep                     keep generated files\n\
  49 \  -p <pkg>                  specifies the target package\n\
  50 \  -m <name>                 generate module-info.java with given Java module name\n\
  51 \  -quiet                    suppress wsimport output\n\
  52 \  -s <directory>            specify where to place generated source files\n\
  53 \  -target <version>         generate code as per the given JAXWS spec version\n\
  54 \                            Defaults to 2.2, Accepted values are 2.0, 2.1 and 2.2\n\
  55 \                            e.g. 2.0 will generate compliant code for JAXWS 2.0 spec\n\
  56 \  -verbose                  output messages about what the compiler is doing\n\
  57 \  -version                  print version information\n\
  58 \  -fullversion              print full version information\n\
  59 \  -wsdllocation <location>  @WebServiceClient.wsdlLocation value\n\
  60 \  -clientjar <jarfile>      creates the jar file of the generated artifacts along with the\n\
  61 \                            WSDL metadata required for invoking the web service.\n\
  62 \  -generateJWS              generate stubbed JWS implementation file\n\
  63 \  -implDestDir <directory>  specify where to generate JWS implementation file\n\
  64 \  -implServiceName <name>   local portion of service name for generated JWS implementation\n\
  65 \  -implPortName <name>      local portion of port name for generated JWS implementation
  66 
  67 wsimport.usage.extensions=\n\
  68 \Extensions:\n\
  69 \  -XadditionalHeaders              map headers not bound to request or response message to \n\
  70 \                                   Java method parameters\n\
  71 \  -Xauthfile                       file to carry authorization information in the format \n\
  72 \                                   http://username:password@example.org/stock?wsdl\n\
  73 \  -Xdebug                          print debug information\n\
  74 \  -Xno-addressing-databinding      enable binding of W3C EndpointReferenceType to Java\n\
  75 \  -Xnocompile                      do not compile generated Java files\n\
  76 \  -XdisableAuthenticator           disable Authenticator used by JAX-WS RI,\n\
  77 \                                   -Xauthfile option will be ignored if set\n\
  78 \  -XdisableSSLHostnameVerification disable the SSL Hostname verification while fetching\n\
  79 \                                   wsdls
  80 
  81 
  82 wsimport.usage.examples=\n\
  83 \Examples:\n\
  84 \  wsimport stock.wsdl -b stock.xml -b stock.xjb\n\
  85 \  wsimport -d generated http://example.org/stock?wsdl\n\
  86 
  87 #{0} - version number
  88 wsimport.version=wsimport version \"{0}\"
  89 
  90 #{0} - full version number
  91 wsimport.fullversion=wsimport full version \"{0}\"
  92 
  93 wsgen.usage=Usage: {0} [options] <SEI>\n\n\
  94 Use "wsgen -help" for a detailed description of options.
  95 
  96 wsgen.help=\nUsage: {0} [options] <SEI>\n\n\
  97 \where [options] include:\n\
  98 \  -classpath <path>          specify where to find input class files and wsgen extensions\n\
  99 \  -cp <path>                 specify where to find input class files and wsgen extensions\n\
 100 \  -d <directory>             specify where to place generated output files\n\
 101 \  -encoding <encoding>       specify character encoding used by source files\n\
 102 \  -extension                 allow vendor extensions - functionality not specified\n\
 103 \                             by the specification.  Use of extensions may\n\
 104 \                             result in applications that are not portable or\n\
 105 \                             may not interoperate with other implementations\n\
 106 \  -help                      display help\n\
 107 \  -J<javacOption>            pass this option to javac\n\
 108 \  -keep                      keep generated files\n\
 109 \  -r <directory>             resource destination directory, specify where to\n\
 110 \                             place resouce files such as WSDLs\n\
 111 \  -s <directory>             specify where to place generated source files\n\
 112 \  -verbose                   output messages about what the compiler is doing\n\
 113 \  -version                   print version information\n\
 114 \  -fullversion               print full version information\n\
 115 \  -wsdl[:protocol]           generate a WSDL file. The protocol is optional.\n\
 116 \                             Valid protocols are {1},\n\
 117 \                             the default is soap1.1.\n\
 118 \                             The non standard protocols {2}\n\
 119 \                             can only be used in conjunction with the\n\
 120 \                             -extension option.\n\
 121 \  -inlineSchemas             inline schemas in the generated wsdl. Must be\n\
 122 \                             used in conjunction with the -wsdl option.\n\
 123 \  -servicename <name>        specify the Service name to use in the generated WSDL\n\
 124 \                             Used in conjunction with the -wsdl option.\n\
 125 \  -portname <name>           specify the Port name to use in the generated WSDL\n\
 126 \                             Used in conjunction with the -wsdl option.\n\
 127 \  -x <file>                  specify External Web Service Metadata xml descriptor
 128 
 129 wsgen.usage.extensions=\n\
 130 \Extensions:\n\
 131 \  -Xnocompile                do not compile generated Java files
 132 
 133 wsgen.usage.examples=\n\
 134 \Examples:\n\
 135 \  wsgen -cp . example.Stock\n\
 136 \  wsgen -cp . example.Stock -wsdl -servicename '{http://mynamespace}MyService'\n\
 137 
 138 #{0} - version number
 139 wsgen.version=wsgen version \"{0}\"
 140 
 141 #{0} - full version number
 142 wsgen.fullversion=wsgen full version \"{0}\"
 143 
 144 wrapperTask.needEndorsed=\
 145 You are running on JDK6 or newer which comes with JAX-WS {0} API, but this tool requires JAX-WS {1} or newer API. Use \
 146 the standard override mechanism.
 147 
 148 # {0}, {2} - version (e.g. 2.1), {1} - absolute class location
 149 wrapperTask.loadingIncorrectApi=\
 150 You are loading JAX-WS {0} API from {1} but this tool requires JAX-WS {2} API.
 151 
 152 invoker.needEndorsed=\
 153 You are running on JDK6 or newer which comes with JAX-WS {0} API, but this tool requires JAX-WS {1} or newer API. Use \
 154 the standard override mechanism.
 155 
 156 
 157 #
 158 # Generic Messages
 159 #
 160 wscompile.invalidOption=unrecognized parameter {0}
 161 wscompile.existingOption=Ignoring already defined option {0}\n
 162 wsimport.noSuchJaxbOption=no such JAXB option: {0}
 163 
 164 wscompile.cant.get.compiler=No Java compiler found. Perhaps environment/JDK problem? \n Used JVM: {0}, {1}/{2}
 165 
 166 wscompile.error=error: {0}
 167 wscompile.warning=warning: {0}
 168 wscompile.info=info: {0}
 169 wscompile.duplicateOption=duplicate option: {0}
 170 wscompile.noSuchDirectory=directory not found: {0}
 171 # wscompile.missingOptionArgument
 172 wscompile.missingOptionArgument=option \"{0}\" requires an argument
 173 wscompile.compilationFailed=compilation failed, errors should have been reported
 174 wscompile.unsupportedEncoding=unsupported encoding: {0}
 175 
 176 wsimport.missingFile=Missing WSDL_URI
 177 
 178 wsgen.invalid.protocol=\"{0}\" is not a supported protocol.  Supported protocols include: {1}.
 179 wsgen.invalid.transport=\"{0}\" is not a supported transport.  Supported transport includes: {1}.
 180 wsgen.class.not.found=Class not found: \"{0}\"
 181 wsgen.could.not.create.file=Could not create file: \"{0}\"
 182 wsgen.missingFile=Missing SEI
 183 wsgen.soap12.without.extension=The optional protocol \"Xsoap1.2\" must be used in conjunction with the \"-extension\" option.
 184 wsgen.protocol.without.extension=The optional protocol \"{0}\" must be used in conjunction with the \"-extension\" option.
 185 wsgen.wsdl.arg.no.genwsdl=The \"{0}\" option can only be in conjunction with the "-wsdl" option.
 186 wsgen.servicename.missing.namespace=The service name \"{0}\" is missing a namespace.
 187 wsgen.servicename.missing.localname=The service name \"{0}\" is missing a localname.
 188 wsgen.portname.missing.namespace=The port name \"{0}\" is missing a namespace.
 189 wsgen.portname.missing.localname=The port name \"{0}\" is missing a localname.
 190 wsgen.class.must.be.implementation.class=The class \"{0}\" is not an endpoint implementation class.
 191 wsimport.NotAFileNorURL = \
 192     "{0}" is neither a file name nor an URL
 193 
 194 wsgen.cannot.gen.wsdl.for.non.soap.binding=wsgen can not generate WSDL for non-SOAP binding: {0} on Class {1}
 195 
 196 wsgen.cannot.gen.wsdl.for.soap12.binding=wsgen can not generate WSDL for SOAP 1.2 binding: {0} on class: {1}.\
 197 Please specify \"-extension\" and \"-wsdl:protocol XSoap1.2\" switches. For example:\
 198 wsgen -wsdl:protocol XSoap1.2 -extenson {1}
 199 wsgen.inlineSchemas.only.with.wsdl=\"-inlineSchemas\" must be used in conjunction with the \"-wsdl\" option
 200 
 201 wsgen.no.webservices.class=wsgen did not find any class with @WebService annotation. Please specify @WebService annotation on {0}.
 202 
 203 wsimport.no.wsdl=Failed to read the WSDL document: {0}, because 1) could not find the document; \
 204   2) the document could not be read; \
 205   3) the root element of the document is not <wsdl:definitions>.
 206 
 207 wsimport.FailedToParse = \
 208     Failed to parse "{0}": {1}
 209 
 210 wsimport.ParsingWSDL=parsing WSDL...\n\n
 211 wsimport.GeneratingCode=\nGenerating code...\n
 212 wsimport.CompilingCode=\nCompiling code...\n
 213 wsimport.ILLEGAL_TARGET_VERSION = \
 214     "{0}" is not a valid target version. "2.0" and "2.1" are supported.
 215 
 216 wsimport.ILLEGAL_AUTH_INFO = \
 217     "{0}" is not a valid authorization information format. The format is http[s]://user:password@host:port//<url-path>.
 218 
 219 wsimport.ILLEGAL_PROXY = \
 220     "{0}" is not a valid proxy format. The format is [user[:password]@]proxyHost:proxyPort
 221 
 222 wsimport.readingAuthFile = \
 223   Trying to read authorization file : "{0}"...
 224 
 225 # {0} - path to current authorization file, {1} - path to metro authorization file
 226 wsimport.authFileNotFound = \
 227   Authorization file "{0}" not found. If the WSDL access needs Basic Authentication, please provide authorization file with read access at {1} or use -Xauthfile to give the authorization file and on each line provide authorization information using this format : http[s]://user:password@host:port//<url-path>
 228 
 229 # {0} - exception message, {1} - systemId (e.g. location of WSDL file) , {2} - path to metro authentication file e.g.: Server returned HTTP response code: 401 for URL: http://localhost:8080/myServer/mywebService?WSDL, "http://localhost:8080/myServer/mywebService?WSDL" needs authorization, please provide authorization file with read access at C:\Documents and Settings\user\.metro\auth or use -Xauthfile to give the authorization file and on each line provide authorization information using this format : http[s]://user:password@host:port//
 230 wsimport.authInfoNeeded = \
 231   {0},  "{1}" needs authorization, please provide authorization file with read access at {2} or use -Xauthfile to give the authorization file and on each line provide authorization information using this format : http[s]://user:password@host:port//<url-path>
 232 
 233 wsimport.AUTH_INFO_LINENO = \
 234   line {0} of {1}
 235 
 236 
 237 wsimport.ErrorMessage = \
 238         [ERROR] {0}
 239 
 240 wsimport.WarningMessage = \
 241         [WARNING] {0}
 242 
 243 wsimport.InfoMessage = \
 244         [INFO] {0}
 245 
 246 wsimport.DebugMessage = \
 247         [DEBUG] {0}
 248 
 249 wsimport.httpRedirect = \
 250   Server returned HTTP Status code: "{0}", retrying with "{1}"
 251 
 252 wsimport.maxRedirectAttempt = \
 253   Can not get a WSDL maximum number of redirects(5) reached
 254 
 255 wsimport.wsdllocation.clientjar = \
 256   wsdlLocation cannot be specified when using clientJar option
 257 # {0} - path to a zip file
 258 wsimport.archivingArtifacts=\nArchiving the generated artifacts into {0}.\n
 259 wsimport.archiveArtifact=Adding {0} to the archive {1}
 260 wsimport.fetchingMetadata=\nDownloading the WSDL and associated metadata\n
 261 # {0} - URI, {1} - path to a file
 262 wsimport.document.download=\nDownloading metadata document from {0} to {1}