src/share/jaxws_classes/com/sun/tools/internal/ws/resources/wscompile.properties

Fri, 04 Oct 2013 16:21:34 +0100

author
mkos
date
Fri, 04 Oct 2013 16:21:34 +0100
changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
permissions
-rw-r--r--

8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
Reviewed-by: chegar

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

mercurial