src/share/jaxws_classes/com/sun/xml/internal/ws/resources/WsservletMessages.java

Tue, 06 Mar 2012 16:09:35 -0800

author
ohair
date
Tue, 06 Mar 2012 16:09:35 -0800
changeset 286
f50545b5e2f1
child 368
0989ad8c0860
permissions
-rw-r--r--

7150322: Stop using drop source bundles in jaxws
Reviewed-by: darcy, ohrstrom

ohair@286 1 /*
ohair@286 2 * Copyright (c) 1997, 2010, 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
ohair@286 27 package com.sun.xml.internal.ws.resources;
ohair@286 28
ohair@286 29 import com.sun.xml.internal.ws.util.localization.Localizable;
ohair@286 30 import com.sun.xml.internal.ws.util.localization.LocalizableMessageFactory;
ohair@286 31 import com.sun.xml.internal.ws.util.localization.Localizer;
ohair@286 32
ohair@286 33
ohair@286 34 /**
ohair@286 35 * Defines string formatting method for each constant in the resource file
ohair@286 36 *
ohair@286 37 */
ohair@286 38 public final class WsservletMessages {
ohair@286 39
ohair@286 40 private final static LocalizableMessageFactory messageFactory = new LocalizableMessageFactory("com.sun.xml.internal.ws.resources.wsservlet");
ohair@286 41 private final static Localizer localizer = new Localizer();
ohair@286 42
ohair@286 43 public static Localizable localizableERROR_WSDL_PUBLISHER_CANNOT_READ_CONFIGURATION() {
ohair@286 44 return messageFactory.getMessage("error.wsdlPublisher.cannotReadConfiguration");
ohair@286 45 }
ohair@286 46
ohair@286 47 /**
ohair@286 48 * WSSERVLET46: cannot read configuration
ohair@286 49 *
ohair@286 50 */
ohair@286 51 public static String ERROR_WSDL_PUBLISHER_CANNOT_READ_CONFIGURATION() {
ohair@286 52 return localizer.localize(localizableERROR_WSDL_PUBLISHER_CANNOT_READ_CONFIGURATION());
ohair@286 53 }
ohair@286 54
ohair@286 55 public static Localizable localizableWSSERVLET_22_DIAG_CHECK_1() {
ohair@286 56 return messageFactory.getMessage("WSSERVLET22.diag.check.1");
ohair@286 57 }
ohair@286 58
ohair@286 59 /**
ohair@286 60 * Set endpoint with stub.setTargetEndpoint property
ohair@286 61 *
ohair@286 62 */
ohair@286 63 public static String WSSERVLET_22_DIAG_CHECK_1() {
ohair@286 64 return localizer.localize(localizableWSSERVLET_22_DIAG_CHECK_1());
ohair@286 65 }
ohair@286 66
ohair@286 67 public static Localizable localizableWSSERVLET_33_DIAG_CAUSE_2() {
ohair@286 68 return messageFactory.getMessage("WSSERVLET33.diag.cause.2");
ohair@286 69 }
ohair@286 70
ohair@286 71 /**
ohair@286 72 * When publishing the service wsdl, the http location is patched with the deployed location/endpoint using XSLT transformation. The transformer could not be created to do the transformation.
ohair@286 73 *
ohair@286 74 */
ohair@286 75 public static String WSSERVLET_33_DIAG_CAUSE_2() {
ohair@286 76 return localizer.localize(localizableWSSERVLET_33_DIAG_CAUSE_2());
ohair@286 77 }
ohair@286 78
ohair@286 79 public static Localizable localizableWSSERVLET_33_DIAG_CAUSE_1() {
ohair@286 80 return messageFactory.getMessage("WSSERVLET33.diag.cause.1");
ohair@286 81 }
ohair@286 82
ohair@286 83 /**
ohair@286 84 * When publishing the service wsdl, the http location is patched with the deployed location/endpoint using XSLT transformation. The transformer could not be created to do the transformation.
ohair@286 85 *
ohair@286 86 */
ohair@286 87 public static String WSSERVLET_33_DIAG_CAUSE_1() {
ohair@286 88 return localizer.localize(localizableWSSERVLET_33_DIAG_CAUSE_1());
ohair@286 89 }
ohair@286 90
ohair@286 91 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_DUPLICATE_NAME(Object arg0) {
ohair@286 92 return messageFactory.getMessage("error.implementorRegistry.duplicateName", arg0);
ohair@286 93 }
ohair@286 94
ohair@286 95 /**
ohair@286 96 * WSSERVLET42: duplicate port name: {0}
ohair@286 97 *
ohair@286 98 */
ohair@286 99 public static String ERROR_IMPLEMENTOR_REGISTRY_DUPLICATE_NAME(Object arg0) {
ohair@286 100 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_DUPLICATE_NAME(arg0));
ohair@286 101 }
ohair@286 102
ohair@286 103 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_FILE_NOT_FOUND(Object arg0) {
ohair@286 104 return messageFactory.getMessage("error.implementorRegistry.fileNotFound", arg0);
ohair@286 105 }
ohair@286 106
ohair@286 107 /**
ohair@286 108 * WSSERVLET45: file not found: {0}
ohair@286 109 *
ohair@286 110 */
ohair@286 111 public static String ERROR_IMPLEMENTOR_REGISTRY_FILE_NOT_FOUND(Object arg0) {
ohair@286 112 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_FILE_NOT_FOUND(arg0));
ohair@286 113 }
ohair@286 114
ohair@286 115 public static Localizable localizableSERVLET_TRACE_INVOKING_IMPLEMENTOR(Object arg0) {
ohair@286 116 return messageFactory.getMessage("servlet.trace.invokingImplementor", arg0);
ohair@286 117 }
ohair@286 118
ohair@286 119 /**
ohair@286 120 * WSSERVLET21: invoking implementor: {0}
ohair@286 121 *
ohair@286 122 */
ohair@286 123 public static String SERVLET_TRACE_INVOKING_IMPLEMENTOR(Object arg0) {
ohair@286 124 return localizer.localize(localizableSERVLET_TRACE_INVOKING_IMPLEMENTOR(arg0));
ohair@286 125 }
ohair@286 126
ohair@286 127 public static Localizable localizableWSSERVLET_17_DIAG_CAUSE_1() {
ohair@286 128 return messageFactory.getMessage("WSSERVLET17.diag.cause.1");
ohair@286 129 }
ohair@286 130
ohair@286 131 /**
ohair@286 132 * Two or more endpoints with the same name where found in the jaxrpc-ri.xml runtime descriptor
ohair@286 133 *
ohair@286 134 */
ohair@286 135 public static String WSSERVLET_17_DIAG_CAUSE_1() {
ohair@286 136 return localizer.localize(localizableWSSERVLET_17_DIAG_CAUSE_1());
ohair@286 137 }
ohair@286 138
ohair@286 139 public static Localizable localizableHTML_NON_ROOT_PAGE_BODY_2() {
ohair@286 140 return messageFactory.getMessage("html.nonRootPage.body2");
ohair@286 141 }
ohair@286 142
ohair@286 143 /**
ohair@286 144 * <p>Invalid request URI.</p><p>Please check your deployment information.</p>
ohair@286 145 *
ohair@286 146 */
ohair@286 147 public static String HTML_NON_ROOT_PAGE_BODY_2() {
ohair@286 148 return localizer.localize(localizableHTML_NON_ROOT_PAGE_BODY_2());
ohair@286 149 }
ohair@286 150
ohair@286 151 public static Localizable localizableHTML_NON_ROOT_PAGE_BODY_1() {
ohair@286 152 return messageFactory.getMessage("html.nonRootPage.body1");
ohair@286 153 }
ohair@286 154
ohair@286 155 /**
ohair@286 156 * <p>A Web Service is installed at this URL.</p>
ohair@286 157 *
ohair@286 158 */
ohair@286 159 public static String HTML_NON_ROOT_PAGE_BODY_1() {
ohair@286 160 return localizer.localize(localizableHTML_NON_ROOT_PAGE_BODY_1());
ohair@286 161 }
ohair@286 162
ohair@286 163 public static Localizable localizablePUBLISHER_INFO_APPLYING_TRANSFORMATION(Object arg0) {
ohair@286 164 return messageFactory.getMessage("publisher.info.applyingTransformation", arg0);
ohair@286 165 }
ohair@286 166
ohair@286 167 /**
ohair@286 168 * WSSERVLET31: applying transformation with actual address: {0}
ohair@286 169 *
ohair@286 170 */
ohair@286 171 public static String PUBLISHER_INFO_APPLYING_TRANSFORMATION(Object arg0) {
ohair@286 172 return localizer.localize(localizablePUBLISHER_INFO_APPLYING_TRANSFORMATION(arg0));
ohair@286 173 }
ohair@286 174
ohair@286 175 public static Localizable localizableWSSERVLET_29_DIAG_CHECK_1() {
ohair@286 176 return messageFactory.getMessage("WSSERVLET29.diag.check.1");
ohair@286 177 }
ohair@286 178
ohair@286 179 /**
ohair@286 180 * Is the port valid? Unzip the war file and make sure the tie and serializers are present
ohair@286 181 *
ohair@286 182 */
ohair@286 183 public static String WSSERVLET_29_DIAG_CHECK_1() {
ohair@286 184 return localizer.localize(localizableWSSERVLET_29_DIAG_CHECK_1());
ohair@286 185 }
ohair@286 186
ohair@286 187 public static Localizable localizableSERVLET_TRACE_GOT_REQUEST_FOR_ENDPOINT(Object arg0) {
ohair@286 188 return messageFactory.getMessage("servlet.trace.gotRequestForEndpoint", arg0);
ohair@286 189 }
ohair@286 190
ohair@286 191 /**
ohair@286 192 * WSSERVLET19: got request for endpoint: {0}
ohair@286 193 *
ohair@286 194 */
ohair@286 195 public static String SERVLET_TRACE_GOT_REQUEST_FOR_ENDPOINT(Object arg0) {
ohair@286 196 return localizer.localize(localizableSERVLET_TRACE_GOT_REQUEST_FOR_ENDPOINT(arg0));
ohair@286 197 }
ohair@286 198
ohair@286 199 public static Localizable localizableERROR_SERVLET_INIT_CONFIG_PARAMETER_MISSING(Object arg0) {
ohair@286 200 return messageFactory.getMessage("error.servlet.init.config.parameter.missing", arg0);
ohair@286 201 }
ohair@286 202
ohair@286 203 /**
ohair@286 204 * WSSERVLET47: cannot find configuration parameter: "{0}"
ohair@286 205 *
ohair@286 206 */
ohair@286 207 public static String ERROR_SERVLET_INIT_CONFIG_PARAMETER_MISSING(Object arg0) {
ohair@286 208 return localizer.localize(localizableERROR_SERVLET_INIT_CONFIG_PARAMETER_MISSING(arg0));
ohair@286 209 }
ohair@286 210
ohair@286 211 public static Localizable localizableERROR_IMPLEMENTOR_FACTORY_SERVANT_INIT_FAILED(Object arg0) {
ohair@286 212 return messageFactory.getMessage("error.implementorFactory.servantInitFailed", arg0);
ohair@286 213 }
ohair@286 214
ohair@286 215 /**
ohair@286 216 * WSSERVLET44: failed to initialize the service implementor for port "{0}"
ohair@286 217 *
ohair@286 218 */
ohair@286 219 public static String ERROR_IMPLEMENTOR_FACTORY_SERVANT_INIT_FAILED(Object arg0) {
ohair@286 220 return localizer.localize(localizableERROR_IMPLEMENTOR_FACTORY_SERVANT_INIT_FAILED(arg0));
ohair@286 221 }
ohair@286 222
ohair@286 223 public static Localizable localizableWSSERVLET_13_DIAG_CHECK_1() {
ohair@286 224 return messageFactory.getMessage("WSSERVLET13.diag.check.1");
ohair@286 225 }
ohair@286 226
ohair@286 227 /**
ohair@286 228 * Normal web service shutdown
ohair@286 229 *
ohair@286 230 */
ohair@286 231 public static String WSSERVLET_13_DIAG_CHECK_1() {
ohair@286 232 return localizer.localize(localizableWSSERVLET_13_DIAG_CHECK_1());
ohair@286 233 }
ohair@286 234
ohair@286 235 public static Localizable localizableWSSERVLET_31_DIAG_CAUSE_1() {
ohair@286 236 return messageFactory.getMessage("WSSERVLET31.diag.cause.1");
ohair@286 237 }
ohair@286 238
ohair@286 239 /**
ohair@286 240 * Transformation being applied
ohair@286 241 *
ohair@286 242 */
ohair@286 243 public static String WSSERVLET_31_DIAG_CAUSE_1() {
ohair@286 244 return localizer.localize(localizableWSSERVLET_31_DIAG_CAUSE_1());
ohair@286 245 }
ohair@286 246
ohair@286 247 public static Localizable localizableWSSERVLET_50_DIAG_CHECK_3() {
ohair@286 248 return messageFactory.getMessage("WSSERVLET50.diag.check.3");
ohair@286 249 }
ohair@286 250
ohair@286 251 /**
ohair@286 252 * Check the server.xml file in the domain directory for failures
ohair@286 253 *
ohair@286 254 */
ohair@286 255 public static String WSSERVLET_50_DIAG_CHECK_3() {
ohair@286 256 return localizer.localize(localizableWSSERVLET_50_DIAG_CHECK_3());
ohair@286 257 }
ohair@286 258
ohair@286 259 public static Localizable localizableERROR_IMPLEMENTOR_FACTORY_NO_INPUT_STREAM() {
ohair@286 260 return messageFactory.getMessage("error.implementorFactory.noInputStream");
ohair@286 261 }
ohair@286 262
ohair@286 263 /**
ohair@286 264 * WSSERVLET37: no configuration specified
ohair@286 265 *
ohair@286 266 */
ohair@286 267 public static String ERROR_IMPLEMENTOR_FACTORY_NO_INPUT_STREAM() {
ohair@286 268 return localizer.localize(localizableERROR_IMPLEMENTOR_FACTORY_NO_INPUT_STREAM());
ohair@286 269 }
ohair@286 270
ohair@286 271 public static Localizable localizableWSSERVLET_24_DIAG_CAUSE_1() {
ohair@286 272 return messageFactory.getMessage("WSSERVLET24.diag.cause.1");
ohair@286 273 }
ohair@286 274
ohair@286 275 /**
ohair@286 276 * SOAPFault message is being returned to the client.
ohair@286 277 *
ohair@286 278 */
ohair@286 279 public static String WSSERVLET_24_DIAG_CAUSE_1() {
ohair@286 280 return localizer.localize(localizableWSSERVLET_24_DIAG_CAUSE_1());
ohair@286 281 }
ohair@286 282
ohair@286 283 public static Localizable localizableWSSERVLET_50_DIAG_CHECK_2() {
ohair@286 284 return messageFactory.getMessage("WSSERVLET50.diag.check.2");
ohair@286 285 }
ohair@286 286
ohair@286 287 /**
ohair@286 288 * Verify that Application server deployment descriptors are correct in the service war file
ohair@286 289 *
ohair@286 290 */
ohair@286 291 public static String WSSERVLET_50_DIAG_CHECK_2() {
ohair@286 292 return localizer.localize(localizableWSSERVLET_50_DIAG_CHECK_2());
ohair@286 293 }
ohair@286 294
ohair@286 295 public static Localizable localizableWSSERVLET_50_DIAG_CHECK_1() {
ohair@286 296 return messageFactory.getMessage("WSSERVLET50.diag.check.1");
ohair@286 297 }
ohair@286 298
ohair@286 299 /**
ohair@286 300 * Verify that sun-jaxws.xml and web.xml are correct in the service war file
ohair@286 301 *
ohair@286 302 */
ohair@286 303 public static String WSSERVLET_50_DIAG_CHECK_1() {
ohair@286 304 return localizer.localize(localizableWSSERVLET_50_DIAG_CHECK_1());
ohair@286 305 }
ohair@286 306
ohair@286 307 public static Localizable localizableWSSERVLET_43_DIAG_CHECK_1() {
ohair@286 308 return messageFactory.getMessage("WSSERVLET43.diag.check.1");
ohair@286 309 }
ohair@286 310
ohair@286 311 /**
ohair@286 312 * Make sure web service is available and public. Examine exception for more details
ohair@286 313 *
ohair@286 314 */
ohair@286 315 public static String WSSERVLET_43_DIAG_CHECK_1() {
ohair@286 316 return localizer.localize(localizableWSSERVLET_43_DIAG_CHECK_1());
ohair@286 317 }
ohair@286 318
ohair@286 319 public static Localizable localizableWSSERVLET_15_DIAG_CAUSE_1() {
ohair@286 320 return messageFactory.getMessage("WSSERVLET15.diag.cause.1");
ohair@286 321 }
ohair@286 322
ohair@286 323 /**
ohair@286 324 * Web Services servlet shutdown.
ohair@286 325 *
ohair@286 326 */
ohair@286 327 public static String WSSERVLET_15_DIAG_CAUSE_1() {
ohair@286 328 return localizer.localize(localizableWSSERVLET_15_DIAG_CAUSE_1());
ohair@286 329 }
ohair@286 330
ohair@286 331 public static Localizable localizableWSSERVLET_27_DIAG_CHECK_1() {
ohair@286 332 return messageFactory.getMessage("WSSERVLET27.diag.check.1");
ohair@286 333 }
ohair@286 334
ohair@286 335 /**
ohair@286 336 * Remove the implicit URL
ohair@286 337 *
ohair@286 338 */
ohair@286 339 public static String WSSERVLET_27_DIAG_CHECK_1() {
ohair@286 340 return localizer.localize(localizableWSSERVLET_27_DIAG_CHECK_1());
ohair@286 341 }
ohair@286 342
ohair@286 343 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_UNKNOWN_NAME(Object arg0) {
ohair@286 344 return messageFactory.getMessage("error.implementorRegistry.unknownName", arg0);
ohair@286 345 }
ohair@286 346
ohair@286 347 /**
ohair@286 348 * WSSERVLET38: unknown port name: {0}
ohair@286 349 *
ohair@286 350 */
ohair@286 351 public static String ERROR_IMPLEMENTOR_REGISTRY_UNKNOWN_NAME(Object arg0) {
ohair@286 352 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_UNKNOWN_NAME(arg0));
ohair@286 353 }
ohair@286 354
ohair@286 355 public static Localizable localizableSERVLET_HTML_NOT_FOUND(Object arg0) {
ohair@286 356 return messageFactory.getMessage("servlet.html.notFound", arg0);
ohair@286 357 }
ohair@286 358
ohair@286 359 /**
ohair@286 360 * <h1>404 Not Found: {0}</h1>
ohair@286 361 *
ohair@286 362 */
ohair@286 363 public static String SERVLET_HTML_NOT_FOUND(Object arg0) {
ohair@286 364 return localizer.localize(localizableSERVLET_HTML_NOT_FOUND(arg0));
ohair@286 365 }
ohair@286 366
ohair@286 367 public static Localizable localizableHTML_ROOT_PAGE_TITLE() {
ohair@286 368 return messageFactory.getMessage("html.rootPage.title");
ohair@286 369 }
ohair@286 370
ohair@286 371 /**
ohair@286 372 * Web Service
ohair@286 373 *
ohair@286 374 */
ohair@286 375 public static String HTML_ROOT_PAGE_TITLE() {
ohair@286 376 return localizer.localize(localizableHTML_ROOT_PAGE_TITLE());
ohair@286 377 }
ohair@286 378
ohair@286 379 public static Localizable localizableWSSERVLET_20_DIAG_CHECK_1() {
ohair@286 380 return messageFactory.getMessage("WSSERVLET20.diag.check.1");
ohair@286 381 }
ohair@286 382
ohair@286 383 /**
ohair@286 384 * Unzip the war, are the tie and serializer classes found?
ohair@286 385 *
ohair@286 386 */
ohair@286 387 public static String WSSERVLET_20_DIAG_CHECK_1() {
ohair@286 388 return localizer.localize(localizableWSSERVLET_20_DIAG_CHECK_1());
ohair@286 389 }
ohair@286 390
ohair@286 391 public static Localizable localizableJAXRPCSERVLET_11_DIAG_CAUSE_1() {
ohair@286 392 return messageFactory.getMessage("JAXRPCSERVLET11.diag.cause.1");
ohair@286 393 }
ohair@286 394
ohair@286 395 /**
ohair@286 396 * WSRuntimeInfoParser could not parse sun-jaxws.xml runtime descriptor
ohair@286 397 *
ohair@286 398 */
ohair@286 399 public static String JAXRPCSERVLET_11_DIAG_CAUSE_1() {
ohair@286 400 return localizer.localize(localizableJAXRPCSERVLET_11_DIAG_CAUSE_1());
ohair@286 401 }
ohair@286 402
ohair@286 403 public static Localizable localizableWSSERVLET_11_DIAG_CHECK_2() {
ohair@286 404 return messageFactory.getMessage("WSSERVLET11.diag.check.2");
ohair@286 405 }
ohair@286 406
ohair@286 407 /**
ohair@286 408 * Please check the jaxrpc-ri.xml file to make sure it is present in the war file
ohair@286 409 *
ohair@286 410 */
ohair@286 411 public static String WSSERVLET_11_DIAG_CHECK_2() {
ohair@286 412 return localizer.localize(localizableWSSERVLET_11_DIAG_CHECK_2());
ohair@286 413 }
ohair@286 414
ohair@286 415 public static Localizable localizableWSSERVLET_11_DIAG_CHECK_1() {
ohair@286 416 return messageFactory.getMessage("WSSERVLET11.diag.check.1");
ohair@286 417 }
ohair@286 418
ohair@286 419 /**
ohair@286 420 * Please check the sun-jaxws.xml file to make sure it is correct
ohair@286 421 *
ohair@286 422 */
ohair@286 423 public static String WSSERVLET_11_DIAG_CHECK_1() {
ohair@286 424 return localizer.localize(localizableWSSERVLET_11_DIAG_CHECK_1());
ohair@286 425 }
ohair@286 426
ohair@286 427 public static Localizable localizableWSSERVLET_22_DIAG_CAUSE_1() {
ohair@286 428 return messageFactory.getMessage("WSSERVLET22.diag.cause.1");
ohair@286 429 }
ohair@286 430
ohair@286 431 /**
ohair@286 432 * A request was invoked with no endpoint
ohair@286 433 *
ohair@286 434 */
ohair@286 435 public static String WSSERVLET_22_DIAG_CAUSE_1() {
ohair@286 436 return localizer.localize(localizableWSSERVLET_22_DIAG_CAUSE_1());
ohair@286 437 }
ohair@286 438
ohair@286 439 public static Localizable localizableWSSERVLET_34_DIAG_CHECK_1() {
ohair@286 440 return messageFactory.getMessage("WSSERVLET34.diag.check.1");
ohair@286 441 }
ohair@286 442
ohair@286 443 /**
ohair@286 444 * Check the log file(s) for more detailed errors/exceptions.
ohair@286 445 *
ohair@286 446 */
ohair@286 447 public static String WSSERVLET_34_DIAG_CHECK_1() {
ohair@286 448 return localizer.localize(localizableWSSERVLET_34_DIAG_CHECK_1());
ohair@286 449 }
ohair@286 450
ohair@286 451 public static Localizable localizableERROR_SERVLET_NO_IMPLEMENTOR_FOR_PORT(Object arg0) {
ohair@286 452 return messageFactory.getMessage("error.servlet.noImplementorForPort", arg0);
ohair@286 453 }
ohair@286 454
ohair@286 455 /**
ohair@286 456 * WSSERVLET52: no implementor registered for port: {0}
ohair@286 457 *
ohair@286 458 */
ohair@286 459 public static String ERROR_SERVLET_NO_IMPLEMENTOR_FOR_PORT(Object arg0) {
ohair@286 460 return localizer.localize(localizableERROR_SERVLET_NO_IMPLEMENTOR_FOR_PORT(arg0));
ohair@286 461 }
ohair@286 462
ohair@286 463 public static Localizable localizableWSSERVLET_64_DIAG_CHECK_1() {
ohair@286 464 return messageFactory.getMessage("WSSERVLET64.diag.check.1");
ohair@286 465 }
ohair@286 466
ohair@286 467 /**
ohair@286 468 * Make sure the client request is using text/xml
ohair@286 469 *
ohair@286 470 */
ohair@286 471 public static String WSSERVLET_64_DIAG_CHECK_1() {
ohair@286 472 return localizer.localize(localizableWSSERVLET_64_DIAG_CHECK_1());
ohair@286 473 }
ohair@286 474
ohair@286 475 public static Localizable localizableWSSERVLET_18_DIAG_CHECK_1() {
ohair@286 476 return messageFactory.getMessage("WSSERVLET18.diag.check.1");
ohair@286 477 }
ohair@286 478
ohair@286 479 /**
ohair@286 480 * This may or may not be intentional. If not examine client program for errors.
ohair@286 481 *
ohair@286 482 */
ohair@286 483 public static String WSSERVLET_18_DIAG_CHECK_1() {
ohair@286 484 return localizer.localize(localizableWSSERVLET_18_DIAG_CHECK_1());
ohair@286 485 }
ohair@286 486
ohair@286 487 public static Localizable localizableWSSERVLET_29_DIAG_CAUSE_1() {
ohair@286 488 return messageFactory.getMessage("WSSERVLET29.diag.cause.1");
ohair@286 489 }
ohair@286 490
ohair@286 491 /**
ohair@286 492 * A port is specified, but a corresponding service implementation is not found
ohair@286 493 *
ohair@286 494 */
ohair@286 495 public static String WSSERVLET_29_DIAG_CAUSE_1() {
ohair@286 496 return localizer.localize(localizableWSSERVLET_29_DIAG_CAUSE_1());
ohair@286 497 }
ohair@286 498
ohair@286 499 public static Localizable localizableSERVLET_ERROR_NO_RESPONSE_MESSAGE() {
ohair@286 500 return messageFactory.getMessage("servlet.error.noResponseMessage");
ohair@286 501 }
ohair@286 502
ohair@286 503 /**
ohair@286 504 * WSSERVLET23: no response message
ohair@286 505 *
ohair@286 506 */
ohair@286 507 public static String SERVLET_ERROR_NO_RESPONSE_MESSAGE() {
ohair@286 508 return localizer.localize(localizableSERVLET_ERROR_NO_RESPONSE_MESSAGE());
ohair@286 509 }
ohair@286 510
ohair@286 511 public static Localizable localizableLISTENER_INFO_INITIALIZE() {
ohair@286 512 return messageFactory.getMessage("listener.info.initialize");
ohair@286 513 }
ohair@286 514
ohair@286 515 /**
ohair@286 516 * WSSERVLET12: JAX-WS context listener initializing
ohair@286 517 *
ohair@286 518 */
ohair@286 519 public static String LISTENER_INFO_INITIALIZE() {
ohair@286 520 return localizer.localize(localizableLISTENER_INFO_INITIALIZE());
ohair@286 521 }
ohair@286 522
ohair@286 523 public static Localizable localizableSERVLET_HTML_NO_INFO_AVAILABLE() {
ohair@286 524 return messageFactory.getMessage("servlet.html.noInfoAvailable");
ohair@286 525 }
ohair@286 526
ohair@286 527 /**
ohair@286 528 * <p>No JAX-WS context information available.</p>
ohair@286 529 *
ohair@286 530 */
ohair@286 531 public static String SERVLET_HTML_NO_INFO_AVAILABLE() {
ohair@286 532 return localizer.localize(localizableSERVLET_HTML_NO_INFO_AVAILABLE());
ohair@286 533 }
ohair@286 534
ohair@286 535 public static Localizable localizableSERVLET_HTML_INFORMATION_TABLE(Object arg0, Object arg1) {
ohair@286 536 return messageFactory.getMessage("servlet.html.information.table", arg0, arg1);
ohair@286 537 }
ohair@286 538
ohair@286 539 /**
ohair@286 540 * <table border="0"><tr><td>Address:</td><td>{0}</td></tr><tr><td>WSDL:</td><td><a href="{0}?wsdl">{0}?wsdl</a></td></tr><tr><td>Implementation class:</td><td>{1}</td></tr></table>
ohair@286 541 *
ohair@286 542 */
ohair@286 543 public static String SERVLET_HTML_INFORMATION_TABLE(Object arg0, Object arg1) {
ohair@286 544 return localizer.localize(localizableSERVLET_HTML_INFORMATION_TABLE(arg0, arg1));
ohair@286 545 }
ohair@286 546
ohair@286 547 public static Localizable localizableSERVLET_TRACE_WRITING_FAULT_RESPONSE() {
ohair@286 548 return messageFactory.getMessage("servlet.trace.writingFaultResponse");
ohair@286 549 }
ohair@286 550
ohair@286 551 /**
ohair@286 552 * WSSERVLET24: writing fault response
ohair@286 553 *
ohair@286 554 */
ohair@286 555 public static String SERVLET_TRACE_WRITING_FAULT_RESPONSE() {
ohair@286 556 return localizer.localize(localizableSERVLET_TRACE_WRITING_FAULT_RESPONSE());
ohair@286 557 }
ohair@286 558
ohair@286 559 public static Localizable localizableSERVLET_ERROR_NO_IMPLEMENTOR_FOR_ENDPOINT(Object arg0) {
ohair@286 560 return messageFactory.getMessage("servlet.error.noImplementorForEndpoint", arg0);
ohair@286 561 }
ohair@286 562
ohair@286 563 /**
ohair@286 564 * WSSERVLET20: no implementor for endpoint: {0}
ohair@286 565 *
ohair@286 566 */
ohair@286 567 public static String SERVLET_ERROR_NO_IMPLEMENTOR_FOR_ENDPOINT(Object arg0) {
ohair@286 568 return localizer.localize(localizableSERVLET_ERROR_NO_IMPLEMENTOR_FOR_ENDPOINT(arg0));
ohair@286 569 }
ohair@286 570
ohair@286 571 public static Localizable localizableWSSERVLET_13_DIAG_CAUSE_1() {
ohair@286 572 return messageFactory.getMessage("WSSERVLET13.diag.cause.1");
ohair@286 573 }
ohair@286 574
ohair@286 575 /**
ohair@286 576 * Context listener shutdown
ohair@286 577 *
ohair@286 578 */
ohair@286 579 public static String WSSERVLET_13_DIAG_CAUSE_1() {
ohair@286 580 return localizer.localize(localizableWSSERVLET_13_DIAG_CAUSE_1());
ohair@286 581 }
ohair@286 582
ohair@286 583 public static Localizable localizableWSSERVLET_50_DIAG_CAUSE_3() {
ohair@286 584 return messageFactory.getMessage("WSSERVLET50.diag.cause.3");
ohair@286 585 }
ohair@286 586
ohair@286 587 /**
ohair@286 588 * There may some Application Server initialization problems
ohair@286 589 *
ohair@286 590 */
ohair@286 591 public static String WSSERVLET_50_DIAG_CAUSE_3() {
ohair@286 592 return localizer.localize(localizableWSSERVLET_50_DIAG_CAUSE_3());
ohair@286 593 }
ohair@286 594
ohair@286 595 public static Localizable localizableWSSERVLET_32_DIAG_CHECK_1() {
ohair@286 596 return messageFactory.getMessage("WSSERVLET32.diag.check.1");
ohair@286 597 }
ohair@286 598
ohair@286 599 /**
ohair@286 600 * Normal Operation.
ohair@286 601 *
ohair@286 602 */
ohair@286 603 public static String WSSERVLET_32_DIAG_CHECK_1() {
ohair@286 604 return localizer.localize(localizableWSSERVLET_32_DIAG_CHECK_1());
ohair@286 605 }
ohair@286 606
ohair@286 607 public static Localizable localizableWSSERVLET_50_DIAG_CAUSE_2() {
ohair@286 608 return messageFactory.getMessage("WSSERVLET50.diag.cause.2");
ohair@286 609 }
ohair@286 610
ohair@286 611 /**
ohair@286 612 * Application server deployment descriptors may be incorrect
ohair@286 613 *
ohair@286 614 */
ohair@286 615 public static String WSSERVLET_50_DIAG_CAUSE_2() {
ohair@286 616 return localizer.localize(localizableWSSERVLET_50_DIAG_CAUSE_2());
ohair@286 617 }
ohair@286 618
ohair@286 619 public static Localizable localizableWSSERVLET_50_DIAG_CAUSE_1() {
ohair@286 620 return messageFactory.getMessage("WSSERVLET50.diag.cause.1");
ohair@286 621 }
ohair@286 622
ohair@286 623 /**
ohair@286 624 * WS runtime sun-jaxws.xml or web.xml may be incorrect
ohair@286 625 *
ohair@286 626 */
ohair@286 627 public static String WSSERVLET_50_DIAG_CAUSE_1() {
ohair@286 628 return localizer.localize(localizableWSSERVLET_50_DIAG_CAUSE_1());
ohair@286 629 }
ohair@286 630
ohair@286 631 public static Localizable localizableWSSERVLET_25_DIAG_CHECK_1() {
ohair@286 632 return messageFactory.getMessage("WSSERVLET25.diag.check.1");
ohair@286 633 }
ohair@286 634
ohair@286 635 /**
ohair@286 636 * Tracing message, normal response.
ohair@286 637 *
ohair@286 638 */
ohair@286 639 public static String WSSERVLET_25_DIAG_CHECK_1() {
ohair@286 640 return localizer.localize(localizableWSSERVLET_25_DIAG_CHECK_1());
ohair@286 641 }
ohair@286 642
ohair@286 643 public static Localizable localizableWSSERVLET_43_DIAG_CAUSE_1() {
ohair@286 644 return messageFactory.getMessage("WSSERVLET43.diag.cause.1");
ohair@286 645 }
ohair@286 646
ohair@286 647 /**
ohair@286 648 * Instantiation of the web service failed.
ohair@286 649 *
ohair@286 650 */
ohair@286 651 public static String WSSERVLET_43_DIAG_CAUSE_1() {
ohair@286 652 return localizer.localize(localizableWSSERVLET_43_DIAG_CAUSE_1());
ohair@286 653 }
ohair@286 654
ohair@286 655 public static Localizable localizableWSSERVLET_27_DIAG_CAUSE_1() {
ohair@286 656 return messageFactory.getMessage("WSSERVLET27.diag.cause.1");
ohair@286 657 }
ohair@286 658
ohair@286 659 /**
ohair@286 660 * Implicit URLS are not supported in this release
ohair@286 661 *
ohair@286 662 */
ohair@286 663 public static String WSSERVLET_27_DIAG_CAUSE_1() {
ohair@286 664 return localizer.localize(localizableWSSERVLET_27_DIAG_CAUSE_1());
ohair@286 665 }
ohair@286 666
ohair@286 667 public static Localizable localizableERROR_SERVLET_CAUGHT_THROWABLE_IN_INIT(Object arg0) {
ohair@286 668 return messageFactory.getMessage("error.servlet.caughtThrowableInInit", arg0);
ohair@286 669 }
ohair@286 670
ohair@286 671 /**
ohair@286 672 * WSSERVLET50: caught throwable during servlet initialization: {0}
ohair@286 673 *
ohair@286 674 */
ohair@286 675 public static String ERROR_SERVLET_CAUGHT_THROWABLE_IN_INIT(Object arg0) {
ohair@286 676 return localizer.localize(localizableERROR_SERVLET_CAUGHT_THROWABLE_IN_INIT(arg0));
ohair@286 677 }
ohair@286 678
ohair@286 679 public static Localizable localizableSERVLET_HTML_ENDPOINT_TABLE(Object arg0, Object arg1) {
ohair@286 680 return messageFactory.getMessage("servlet.html.endpoint.table", arg0, arg1);
ohair@286 681 }
ohair@286 682
ohair@286 683 /**
ohair@286 684 * <table border="0"><tr><td>Service Name:</td><td>{0}</td></tr><tr><td>Port Name:</td><td>{1}</td></tr></table>
ohair@286 685 *
ohair@286 686 */
ohair@286 687 public static String SERVLET_HTML_ENDPOINT_TABLE(Object arg0, Object arg1) {
ohair@286 688 return localizer.localize(localizableSERVLET_HTML_ENDPOINT_TABLE(arg0, arg1));
ohair@286 689 }
ohair@286 690
ohair@286 691 public static Localizable localizableERROR_SERVLET_CAUGHT_THROWABLE_WHILE_RECOVERING(Object arg0) {
ohair@286 692 return messageFactory.getMessage("error.servlet.caughtThrowableWhileRecovering", arg0);
ohair@286 693 }
ohair@286 694
ohair@286 695 /**
ohair@286 696 * WSSERVLET51: caught throwable while recovering from a previous exception: {0}
ohair@286 697 *
ohair@286 698 */
ohair@286 699 public static String ERROR_SERVLET_CAUGHT_THROWABLE_WHILE_RECOVERING(Object arg0) {
ohair@286 700 return localizer.localize(localizableERROR_SERVLET_CAUGHT_THROWABLE_WHILE_RECOVERING(arg0));
ohair@286 701 }
ohair@286 702
ohair@286 703 public static Localizable localizableNO_SUNJAXWS_XML(Object arg0) {
ohair@286 704 return messageFactory.getMessage("no.sunjaxws.xml", arg0);
ohair@286 705 }
ohair@286 706
ohair@286 707 /**
ohair@286 708 * Runtime descriptor "{0}" is missing
ohair@286 709 *
ohair@286 710 */
ohair@286 711 public static String NO_SUNJAXWS_XML(Object arg0) {
ohair@286 712 return localizer.localize(localizableNO_SUNJAXWS_XML(arg0));
ohair@286 713 }
ohair@286 714
ohair@286 715 public static Localizable localizableSERVLET_HTML_TITLE_2() {
ohair@286 716 return messageFactory.getMessage("servlet.html.title2");
ohair@286 717 }
ohair@286 718
ohair@286 719 /**
ohair@286 720 * <h1>Web Services</h1>
ohair@286 721 *
ohair@286 722 */
ohair@286 723 public static String SERVLET_HTML_TITLE_2() {
ohair@286 724 return localizer.localize(localizableSERVLET_HTML_TITLE_2());
ohair@286 725 }
ohair@286 726
ohair@286 727 public static Localizable localizableLISTENER_INFO_DESTROY() {
ohair@286 728 return messageFactory.getMessage("listener.info.destroy");
ohair@286 729 }
ohair@286 730
ohair@286 731 /**
ohair@286 732 * WSSERVLET13: JAX-WS context listener destroyed
ohair@286 733 *
ohair@286 734 */
ohair@286 735 public static String LISTENER_INFO_DESTROY() {
ohair@286 736 return localizer.localize(localizableLISTENER_INFO_DESTROY());
ohair@286 737 }
ohair@286 738
ohair@286 739 public static Localizable localizableEXCEPTION_TEMPLATE_CREATION_FAILED() {
ohair@286 740 return messageFactory.getMessage("exception.templateCreationFailed");
ohair@286 741 }
ohair@286 742
ohair@286 743 /**
ohair@286 744 * WSSERVLET35: failed to create a template object
ohair@286 745 *
ohair@286 746 */
ohair@286 747 public static String EXCEPTION_TEMPLATE_CREATION_FAILED() {
ohair@286 748 return localizer.localize(localizableEXCEPTION_TEMPLATE_CREATION_FAILED());
ohair@286 749 }
ohair@286 750
ohair@286 751 public static Localizable localizableWSSERVLET_20_DIAG_CAUSE_1() {
ohair@286 752 return messageFactory.getMessage("WSSERVLET20.diag.cause.1");
ohair@286 753 }
ohair@286 754
ohair@286 755 /**
ohair@286 756 * Implementation for this service can not be found
ohair@286 757 *
ohair@286 758 */
ohair@286 759 public static String WSSERVLET_20_DIAG_CAUSE_1() {
ohair@286 760 return localizer.localize(localizableWSSERVLET_20_DIAG_CAUSE_1());
ohair@286 761 }
ohair@286 762
ohair@286 763 public static Localizable localizableTRACE_SERVLET_WRITING_FAULT_RESPONSE() {
ohair@286 764 return messageFactory.getMessage("trace.servlet.writingFaultResponse");
ohair@286 765 }
ohair@286 766
ohair@286 767 /**
ohair@286 768 * WSSERVLET61: writing fault response
ohair@286 769 *
ohair@286 770 */
ohair@286 771 public static String TRACE_SERVLET_WRITING_FAULT_RESPONSE() {
ohair@286 772 return localizer.localize(localizableTRACE_SERVLET_WRITING_FAULT_RESPONSE());
ohair@286 773 }
ohair@286 774
ohair@286 775 public static Localizable localizableWSSERVLET_23_DIAG_CHECK_2() {
ohair@286 776 return messageFactory.getMessage("WSSERVLET23.diag.check.2");
ohair@286 777 }
ohair@286 778
ohair@286 779 /**
ohair@286 780 * The request may be malformed and be accepted by the service, yet did not generate a response
ohair@286 781 *
ohair@286 782 */
ohair@286 783 public static String WSSERVLET_23_DIAG_CHECK_2() {
ohair@286 784 return localizer.localize(localizableWSSERVLET_23_DIAG_CHECK_2());
ohair@286 785 }
ohair@286 786
ohair@286 787 public static Localizable localizableWSSERVLET_23_DIAG_CHECK_1() {
ohair@286 788 return messageFactory.getMessage("WSSERVLET23.diag.check.1");
ohair@286 789 }
ohair@286 790
ohair@286 791 /**
ohair@286 792 * If a response was expected, check that a request message was actually sent
ohair@286 793 *
ohair@286 794 */
ohair@286 795 public static String WSSERVLET_23_DIAG_CHECK_1() {
ohair@286 796 return localizer.localize(localizableWSSERVLET_23_DIAG_CHECK_1());
ohair@286 797 }
ohair@286 798
ohair@286 799 public static Localizable localizableSERVLET_WARNING_MISSING_CONTEXT_INFORMATION() {
ohair@286 800 return messageFactory.getMessage("servlet.warning.missingContextInformation");
ohair@286 801 }
ohair@286 802
ohair@286 803 /**
ohair@286 804 * WSSERVLET16: missing context information
ohair@286 805 *
ohair@286 806 */
ohair@286 807 public static String SERVLET_WARNING_MISSING_CONTEXT_INFORMATION() {
ohair@286 808 return localizer.localize(localizableSERVLET_WARNING_MISSING_CONTEXT_INFORMATION());
ohair@286 809 }
ohair@286 810
ohair@286 811 public static Localizable localizableWSSERVLET_16_DIAG_CHECK_1() {
ohair@286 812 return messageFactory.getMessage("WSSERVLET16.diag.check.1");
ohair@286 813 }
ohair@286 814
ohair@286 815 /**
ohair@286 816 * Unjar the service war file; check to see that the jaxrpc-ri-runtime.xml file is present
ohair@286 817 *
ohair@286 818 */
ohair@286 819 public static String WSSERVLET_16_DIAG_CHECK_1() {
ohair@286 820 return localizer.localize(localizableWSSERVLET_16_DIAG_CHECK_1());
ohair@286 821 }
ohair@286 822
ohair@286 823 public static Localizable localizableWSSERVLET_34_DIAG_CAUSE_1() {
ohair@286 824 return messageFactory.getMessage("WSSERVLET34.diag.cause.1");
ohair@286 825 }
ohair@286 826
ohair@286 827 /**
ohair@286 828 * The location patching on the wsdl failed when attempting to transform.
ohair@286 829 *
ohair@286 830 */
ohair@286 831 public static String WSSERVLET_34_DIAG_CAUSE_1() {
ohair@286 832 return localizer.localize(localizableWSSERVLET_34_DIAG_CAUSE_1());
ohair@286 833 }
ohair@286 834
ohair@286 835 public static Localizable localizableHTML_NON_ROOT_PAGE_TITLE() {
ohair@286 836 return messageFactory.getMessage("html.nonRootPage.title");
ohair@286 837 }
ohair@286 838
ohair@286 839 /**
ohair@286 840 * Web Service
ohair@286 841 *
ohair@286 842 */
ohair@286 843 public static String HTML_NON_ROOT_PAGE_TITLE() {
ohair@286 844 return localizer.localize(localizableHTML_NON_ROOT_PAGE_TITLE());
ohair@286 845 }
ohair@286 846
ohair@286 847 public static Localizable localizableSERVLET_HTML_COLUMN_HEADER_INFORMATION() {
ohair@286 848 return messageFactory.getMessage("servlet.html.columnHeader.information");
ohair@286 849 }
ohair@286 850
ohair@286 851 /**
ohair@286 852 * Information
ohair@286 853 *
ohair@286 854 */
ohair@286 855 public static String SERVLET_HTML_COLUMN_HEADER_INFORMATION() {
ohair@286 856 return localizer.localize(localizableSERVLET_HTML_COLUMN_HEADER_INFORMATION());
ohair@286 857 }
ohair@286 858
ohair@286 859 public static Localizable localizableWSSERVLET_18_DIAG_CAUSE_1() {
ohair@286 860 return messageFactory.getMessage("WSSERVLET18.diag.cause.1");
ohair@286 861 }
ohair@286 862
ohair@286 863 /**
ohair@286 864 * Message sent by client is empty
ohair@286 865 *
ohair@286 866 */
ohair@286 867 public static String WSSERVLET_18_DIAG_CAUSE_1() {
ohair@286 868 return localizer.localize(localizableWSSERVLET_18_DIAG_CAUSE_1());
ohair@286 869 }
ohair@286 870
ohair@286 871 public static Localizable localizableWSSERVLET_64_DIAG_CAUSE_1() {
ohair@286 872 return messageFactory.getMessage("WSSERVLET64.diag.cause.1");
ohair@286 873 }
ohair@286 874
ohair@286 875 /**
ohair@286 876 * Web service requests must be a content type text/xml: WSI BP 1.0
ohair@286 877 *
ohair@286 878 */
ohair@286 879 public static String WSSERVLET_64_DIAG_CAUSE_1() {
ohair@286 880 return localizer.localize(localizableWSSERVLET_64_DIAG_CAUSE_1());
ohair@286 881 }
ohair@286 882
ohair@286 883 public static Localizable localizableINFO_SERVLET_INITIALIZING() {
ohair@286 884 return messageFactory.getMessage("info.servlet.initializing");
ohair@286 885 }
ohair@286 886
ohair@286 887 /**
ohair@286 888 * WSSERVLET56: JAX-WS servlet: init
ohair@286 889 *
ohair@286 890 */
ohair@286 891 public static String INFO_SERVLET_INITIALIZING() {
ohair@286 892 return localizer.localize(localizableINFO_SERVLET_INITIALIZING());
ohair@286 893 }
ohair@286 894
ohair@286 895 public static Localizable localizableSERVLET_INFO_EMPTY_REQUEST_MESSAGE() {
ohair@286 896 return messageFactory.getMessage("servlet.info.emptyRequestMessage");
ohair@286 897 }
ohair@286 898
ohair@286 899 /**
ohair@286 900 * WSSERVLET18: got empty request message
ohair@286 901 *
ohair@286 902 */
ohair@286 903 public static String SERVLET_INFO_EMPTY_REQUEST_MESSAGE() {
ohair@286 904 return localizer.localize(localizableSERVLET_INFO_EMPTY_REQUEST_MESSAGE());
ohair@286 905 }
ohair@286 906
ohair@286 907 public static Localizable localizableSERVLET_ERROR_NO_ENDPOINT_SPECIFIED() {
ohair@286 908 return messageFactory.getMessage("servlet.error.noEndpointSpecified");
ohair@286 909 }
ohair@286 910
ohair@286 911 /**
ohair@286 912 * WSSERVLET22: no endpoint specified
ohair@286 913 *
ohair@286 914 */
ohair@286 915 public static String SERVLET_ERROR_NO_ENDPOINT_SPECIFIED() {
ohair@286 916 return localizer.localize(localizableSERVLET_ERROR_NO_ENDPOINT_SPECIFIED());
ohair@286 917 }
ohair@286 918
ohair@286 919 public static Localizable localizableWSSERVLET_11_DIAG_CAUSE_2() {
ohair@286 920 return messageFactory.getMessage("WSSERVLET11.diag.cause.2");
ohair@286 921 }
ohair@286 922
ohair@286 923 /**
ohair@286 924 * The sun-jaxws.xml runtime deployment descriptor may be missing
ohair@286 925 *
ohair@286 926 */
ohair@286 927 public static String WSSERVLET_11_DIAG_CAUSE_2() {
ohair@286 928 return localizer.localize(localizableWSSERVLET_11_DIAG_CAUSE_2());
ohair@286 929 }
ohair@286 930
ohair@286 931 public static Localizable localizableWSSERVLET_30_DIAG_CHECK_1() {
ohair@286 932 return messageFactory.getMessage("WSSERVLET30.diag.check.1");
ohair@286 933 }
ohair@286 934
ohair@286 935 /**
ohair@286 936 * This could be due to a number of causes. Check the server log file for exceptions.
ohair@286 937 *
ohair@286 938 */
ohair@286 939 public static String WSSERVLET_30_DIAG_CHECK_1() {
ohair@286 940 return localizer.localize(localizableWSSERVLET_30_DIAG_CHECK_1());
ohair@286 941 }
ohair@286 942
ohair@286 943 public static Localizable localizableEXCEPTION_CANNOT_CREATE_TRANSFORMER() {
ohair@286 944 return messageFactory.getMessage("exception.cannotCreateTransformer");
ohair@286 945 }
ohair@286 946
ohair@286 947 /**
ohair@286 948 * WSSERVLET33: cannot create transformer
ohair@286 949 *
ohair@286 950 */
ohair@286 951 public static String EXCEPTION_CANNOT_CREATE_TRANSFORMER() {
ohair@286 952 return localizer.localize(localizableEXCEPTION_CANNOT_CREATE_TRANSFORMER());
ohair@286 953 }
ohair@286 954
ohair@286 955 public static Localizable localizableSERVLET_FAULTSTRING_INVALID_SOAP_ACTION() {
ohair@286 956 return messageFactory.getMessage("servlet.faultstring.invalidSOAPAction");
ohair@286 957 }
ohair@286 958
ohair@286 959 /**
ohair@286 960 * WSSERVLET65: Invalid Header SOAPAction required
ohair@286 961 *
ohair@286 962 */
ohair@286 963 public static String SERVLET_FAULTSTRING_INVALID_SOAP_ACTION() {
ohair@286 964 return localizer.localize(localizableSERVLET_FAULTSTRING_INVALID_SOAP_ACTION());
ohair@286 965 }
ohair@286 966
ohair@286 967 public static Localizable localizableWSSERVLET_14_DIAG_CHECK_1() {
ohair@286 968 return messageFactory.getMessage("WSSERVLET14.diag.check.1");
ohair@286 969 }
ohair@286 970
ohair@286 971 /**
ohair@286 972 * Normal Web Service deployment. Deployment of service complete.
ohair@286 973 *
ohair@286 974 */
ohair@286 975 public static String WSSERVLET_14_DIAG_CHECK_1() {
ohair@286 976 return localizer.localize(localizableWSSERVLET_14_DIAG_CHECK_1());
ohair@286 977 }
ohair@286 978
ohair@286 979 public static Localizable localizableWSSERVLET_32_DIAG_CAUSE_1() {
ohair@286 980 return messageFactory.getMessage("WSSERVLET32.diag.cause.1");
ohair@286 981 }
ohair@286 982
ohair@286 983 /**
ohair@286 984 * WSDL being generated
ohair@286 985 *
ohair@286 986 */
ohair@286 987 public static String WSSERVLET_32_DIAG_CAUSE_1() {
ohair@286 988 return localizer.localize(localizableWSSERVLET_32_DIAG_CAUSE_1());
ohair@286 989 }
ohair@286 990
ohair@286 991 public static Localizable localizableWSSERVLET_25_DIAG_CAUSE_1() {
ohair@286 992 return messageFactory.getMessage("WSSERVLET25.diag.cause.1");
ohair@286 993 }
ohair@286 994
ohair@286 995 /**
ohair@286 996 * SOAPMessage response is being returned to client
ohair@286 997 *
ohair@286 998 */
ohair@286 999 public static String WSSERVLET_25_DIAG_CAUSE_1() {
ohair@286 1000 return localizer.localize(localizableWSSERVLET_25_DIAG_CAUSE_1());
ohair@286 1001 }
ohair@286 1002
ohair@286 1003 public static Localizable localizableWSSERVLET_44_DIAG_CHECK_1() {
ohair@286 1004 return messageFactory.getMessage("WSSERVLET44.diag.check.1");
ohair@286 1005 }
ohair@286 1006
ohair@286 1007 /**
ohair@286 1008 * Check the exception for more details. Make sure all the configuration files are correct.
ohair@286 1009 *
ohair@286 1010 */
ohair@286 1011 public static String WSSERVLET_44_DIAG_CHECK_1() {
ohair@286 1012 return localizer.localize(localizableWSSERVLET_44_DIAG_CHECK_1());
ohair@286 1013 }
ohair@286 1014
ohair@286 1015 public static Localizable localizableWSSERVLET_28_DIAG_CHECK_1() {
ohair@286 1016 return messageFactory.getMessage("WSSERVLET28.diag.check.1");
ohair@286 1017 }
ohair@286 1018
ohair@286 1019 /**
ohair@286 1020 * Set target endpoint with stub.setTargetEndpoint() property.
ohair@286 1021 *
ohair@286 1022 */
ohair@286 1023 public static String WSSERVLET_28_DIAG_CHECK_1() {
ohair@286 1024 return localizer.localize(localizableWSSERVLET_28_DIAG_CHECK_1());
ohair@286 1025 }
ohair@286 1026
ohair@286 1027 public static Localizable localizableSERVLET_INFO_INITIALIZE() {
ohair@286 1028 return messageFactory.getMessage("servlet.info.initialize");
ohair@286 1029 }
ohair@286 1030
ohair@286 1031 /**
ohair@286 1032 * WSSERVLET14: JAX-WS servlet initializing
ohair@286 1033 *
ohair@286 1034 */
ohair@286 1035 public static String SERVLET_INFO_INITIALIZE() {
ohair@286 1036 return localizer.localize(localizableSERVLET_INFO_INITIALIZE());
ohair@286 1037 }
ohair@286 1038
ohair@286 1039 public static Localizable localizableERROR_SERVLET_INIT_CONFIG_FILE_NOT_FOUND(Object arg0) {
ohair@286 1040 return messageFactory.getMessage("error.servlet.init.config.fileNotFound", arg0);
ohair@286 1041 }
ohair@286 1042
ohair@286 1043 /**
ohair@286 1044 * WSSERVLET48: config file: "{0}" not found
ohair@286 1045 *
ohair@286 1046 */
ohair@286 1047 public static String ERROR_SERVLET_INIT_CONFIG_FILE_NOT_FOUND(Object arg0) {
ohair@286 1048 return localizer.localize(localizableERROR_SERVLET_INIT_CONFIG_FILE_NOT_FOUND(arg0));
ohair@286 1049 }
ohair@286 1050
ohair@286 1051 public static Localizable localizableHTML_WSDL_PAGE_TITLE() {
ohair@286 1052 return messageFactory.getMessage("html.wsdlPage.title");
ohair@286 1053 }
ohair@286 1054
ohair@286 1055 /**
ohair@286 1056 * Web Service
ohair@286 1057 *
ohair@286 1058 */
ohair@286 1059 public static String HTML_WSDL_PAGE_TITLE() {
ohair@286 1060 return localizer.localize(localizableHTML_WSDL_PAGE_TITLE());
ohair@286 1061 }
ohair@286 1062
ohair@286 1063 public static Localizable localizableSERVLET_HTML_COLUMN_HEADER_PORT_NAME() {
ohair@286 1064 return messageFactory.getMessage("servlet.html.columnHeader.portName");
ohair@286 1065 }
ohair@286 1066
ohair@286 1067 /**
ohair@286 1068 * Endpoint
ohair@286 1069 *
ohair@286 1070 */
ohair@286 1071 public static String SERVLET_HTML_COLUMN_HEADER_PORT_NAME() {
ohair@286 1072 return localizer.localize(localizableSERVLET_HTML_COLUMN_HEADER_PORT_NAME());
ohair@286 1073 }
ohair@286 1074
ohair@286 1075 public static Localizable localizableHTML_ROOT_PAGE_BODY_2_B() {
ohair@286 1076 return messageFactory.getMessage("html.rootPage.body2b");
ohair@286 1077 }
ohair@286 1078
ohair@286 1079 /**
ohair@286 1080 * </p>
ohair@286 1081 *
ohair@286 1082 */
ohair@286 1083 public static String HTML_ROOT_PAGE_BODY_2_B() {
ohair@286 1084 return localizer.localize(localizableHTML_ROOT_PAGE_BODY_2_B());
ohair@286 1085 }
ohair@286 1086
ohair@286 1087 public static Localizable localizableHTML_ROOT_PAGE_BODY_2_A() {
ohair@286 1088 return messageFactory.getMessage("html.rootPage.body2a");
ohair@286 1089 }
ohair@286 1090
ohair@286 1091 /**
ohair@286 1092 * <p>It supports the following ports:
ohair@286 1093 *
ohair@286 1094 */
ohair@286 1095 public static String HTML_ROOT_PAGE_BODY_2_A() {
ohair@286 1096 return localizer.localize(localizableHTML_ROOT_PAGE_BODY_2_A());
ohair@286 1097 }
ohair@286 1098
ohair@286 1099 public static Localizable localizableWSSERVLET_21_DIAG_CHECK_1() {
ohair@286 1100 return messageFactory.getMessage("WSSERVLET21.diag.check.1");
ohair@286 1101 }
ohair@286 1102
ohair@286 1103 /**
ohair@286 1104 * Normal web service invocation.
ohair@286 1105 *
ohair@286 1106 */
ohair@286 1107 public static String WSSERVLET_21_DIAG_CHECK_1() {
ohair@286 1108 return localizer.localize(localizableWSSERVLET_21_DIAG_CHECK_1());
ohair@286 1109 }
ohair@286 1110
ohair@286 1111 public static Localizable localizableERROR_SERVLET_NO_PORT_SPECIFIED() {
ohair@286 1112 return messageFactory.getMessage("error.servlet.noPortSpecified");
ohair@286 1113 }
ohair@286 1114
ohair@286 1115 /**
ohair@286 1116 * WSSERVLET53: no port specified in HTTP POST request URL
ohair@286 1117 *
ohair@286 1118 */
ohair@286 1119 public static String ERROR_SERVLET_NO_PORT_SPECIFIED() {
ohair@286 1120 return localizer.localize(localizableERROR_SERVLET_NO_PORT_SPECIFIED());
ohair@286 1121 }
ohair@286 1122
ohair@286 1123 public static Localizable localizableINFO_SERVLET_GOT_EMPTY_REQUEST_MESSAGE() {
ohair@286 1124 return messageFactory.getMessage("info.servlet.gotEmptyRequestMessage");
ohair@286 1125 }
ohair@286 1126
ohair@286 1127 /**
ohair@286 1128 * WSSERVLET55: got empty request message
ohair@286 1129 *
ohair@286 1130 */
ohair@286 1131 public static String INFO_SERVLET_GOT_EMPTY_REQUEST_MESSAGE() {
ohair@286 1132 return localizer.localize(localizableINFO_SERVLET_GOT_EMPTY_REQUEST_MESSAGE());
ohair@286 1133 }
ohair@286 1134
ohair@286 1135 public static Localizable localizableWSSERVLET_51_DIAG_CHECK_1() {
ohair@286 1136 return messageFactory.getMessage("WSSERVLET51.diag.check.1");
ohair@286 1137 }
ohair@286 1138
ohair@286 1139 /**
ohair@286 1140 * Check the server.xml log file for exception information
ohair@286 1141 *
ohair@286 1142 */
ohair@286 1143 public static String WSSERVLET_51_DIAG_CHECK_1() {
ohair@286 1144 return localizer.localize(localizableWSSERVLET_51_DIAG_CHECK_1());
ohair@286 1145 }
ohair@286 1146
ohair@286 1147 public static Localizable localizableWSSERVLET_23_DIAG_CAUSE_1() {
ohair@286 1148 return messageFactory.getMessage("WSSERVLET23.diag.cause.1");
ohair@286 1149 }
ohair@286 1150
ohair@286 1151 /**
ohair@286 1152 * The request generated no response from the service
ohair@286 1153 *
ohair@286 1154 */
ohair@286 1155 public static String WSSERVLET_23_DIAG_CAUSE_1() {
ohair@286 1156 return localizer.localize(localizableWSSERVLET_23_DIAG_CAUSE_1());
ohair@286 1157 }
ohair@286 1158
ohair@286 1159 public static Localizable localizableWSSERVLET_16_DIAG_CAUSE_1() {
ohair@286 1160 return messageFactory.getMessage("WSSERVLET16.diag.cause.1");
ohair@286 1161 }
ohair@286 1162
ohair@286 1163 /**
ohair@286 1164 * The jaxrpc-ri.xml file may be missing from the war file
ohair@286 1165 *
ohair@286 1166 */
ohair@286 1167 public static String WSSERVLET_16_DIAG_CAUSE_1() {
ohair@286 1168 return localizer.localize(localizableWSSERVLET_16_DIAG_CAUSE_1());
ohair@286 1169 }
ohair@286 1170
ohair@286 1171 public static Localizable localizableWSSERVLET_35_DIAG_CHECK_1() {
ohair@286 1172 return messageFactory.getMessage("WSSERVLET35.diag.check.1");
ohair@286 1173 }
ohair@286 1174
ohair@286 1175 /**
ohair@286 1176 * An exception was thrown during creation of the template. View exception and stacktrace for more details.
ohair@286 1177 *
ohair@286 1178 */
ohair@286 1179 public static String WSSERVLET_35_DIAG_CHECK_1() {
ohair@286 1180 return localizer.localize(localizableWSSERVLET_35_DIAG_CHECK_1());
ohair@286 1181 }
ohair@286 1182
ohair@286 1183 public static Localizable localizableWSSERVLET_65_DIAG_CHECK_1() {
ohair@286 1184 return messageFactory.getMessage("WSSERVLET65.diag.check.1");
ohair@286 1185 }
ohair@286 1186
ohair@286 1187 /**
ohair@286 1188 * Add SOAPAction and appropriate value
ohair@286 1189 *
ohair@286 1190 */
ohair@286 1191 public static String WSSERVLET_65_DIAG_CHECK_1() {
ohair@286 1192 return localizer.localize(localizableWSSERVLET_65_DIAG_CHECK_1());
ohair@286 1193 }
ohair@286 1194
ohair@286 1195 public static Localizable localizableTRACE_SERVLET_HANDING_REQUEST_OVER_TO_IMPLEMENTOR(Object arg0) {
ohair@286 1196 return messageFactory.getMessage("trace.servlet.handingRequestOverToImplementor", arg0);
ohair@286 1197 }
ohair@286 1198
ohair@286 1199 /**
ohair@286 1200 * WSSERVLET59: handing request over to implementor: {0}
ohair@286 1201 *
ohair@286 1202 */
ohair@286 1203 public static String TRACE_SERVLET_HANDING_REQUEST_OVER_TO_IMPLEMENTOR(Object arg0) {
ohair@286 1204 return localizer.localize(localizableTRACE_SERVLET_HANDING_REQUEST_OVER_TO_IMPLEMENTOR(arg0));
ohair@286 1205 }
ohair@286 1206
ohair@286 1207 public static Localizable localizableWSSERVLET_19_DIAG_CHECK_1() {
ohair@286 1208 return messageFactory.getMessage("WSSERVLET19.diag.check.1");
ohair@286 1209 }
ohair@286 1210
ohair@286 1211 /**
ohair@286 1212 * Informational message only. Normal operation.
ohair@286 1213 *
ohair@286 1214 */
ohair@286 1215 public static String WSSERVLET_19_DIAG_CHECK_1() {
ohair@286 1216 return localizer.localize(localizableWSSERVLET_19_DIAG_CHECK_1());
ohair@286 1217 }
ohair@286 1218
ohair@286 1219 public static Localizable localizablePUBLISHER_INFO_GENERATING_WSDL(Object arg0) {
ohair@286 1220 return messageFactory.getMessage("publisher.info.generatingWSDL", arg0);
ohair@286 1221 }
ohair@286 1222
ohair@286 1223 /**
ohair@286 1224 * WSSERVLET32: generating WSDL for endpoint: {0}
ohair@286 1225 *
ohair@286 1226 */
ohair@286 1227 public static String PUBLISHER_INFO_GENERATING_WSDL(Object arg0) {
ohair@286 1228 return localizer.localize(localizablePUBLISHER_INFO_GENERATING_WSDL(arg0));
ohair@286 1229 }
ohair@286 1230
ohair@286 1231 public static Localizable localizableSERVLET_WARNING_DUPLICATE_ENDPOINT_URL_PATTERN(Object arg0) {
ohair@286 1232 return messageFactory.getMessage("servlet.warning.duplicateEndpointUrlPattern", arg0);
ohair@286 1233 }
ohair@286 1234
ohair@286 1235 /**
ohair@286 1236 * WSSERVLET26: duplicate URL pattern in endpoint: {0}
ohair@286 1237 *
ohair@286 1238 */
ohair@286 1239 public static String SERVLET_WARNING_DUPLICATE_ENDPOINT_URL_PATTERN(Object arg0) {
ohair@286 1240 return localizer.localize(localizableSERVLET_WARNING_DUPLICATE_ENDPOINT_URL_PATTERN(arg0));
ohair@286 1241 }
ohair@286 1242
ohair@286 1243 public static Localizable localizableWSSERVLET_49_DIAG_CHECK_1() {
ohair@286 1244 return messageFactory.getMessage("WSSERVLET49.diag.check.1");
ohair@286 1245 }
ohair@286 1246
ohair@286 1247 /**
ohair@286 1248 * Check the server.xml log file for exception information
ohair@286 1249 *
ohair@286 1250 */
ohair@286 1251 public static String WSSERVLET_49_DIAG_CHECK_1() {
ohair@286 1252 return localizer.localize(localizableWSSERVLET_49_DIAG_CHECK_1());
ohair@286 1253 }
ohair@286 1254
ohair@286 1255 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_CANNOT_READ_CONFIGURATION() {
ohair@286 1256 return messageFactory.getMessage("error.implementorRegistry.cannotReadConfiguration");
ohair@286 1257 }
ohair@286 1258
ohair@286 1259 /**
ohair@286 1260 * WSSERVLET39: cannot read configuration
ohair@286 1261 *
ohair@286 1262 */
ohair@286 1263 public static String ERROR_IMPLEMENTOR_REGISTRY_CANNOT_READ_CONFIGURATION() {
ohair@286 1264 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_CANNOT_READ_CONFIGURATION());
ohair@286 1265 }
ohair@286 1266
ohair@286 1267 public static Localizable localizableTRACE_SERVLET_GOT_RESPONSE_FROM_IMPLEMENTOR(Object arg0) {
ohair@286 1268 return messageFactory.getMessage("trace.servlet.gotResponseFromImplementor", arg0);
ohair@286 1269 }
ohair@286 1270
ohair@286 1271 /**
ohair@286 1272 * WSSERVLET60: got response from implementor: {0}
ohair@286 1273 *
ohair@286 1274 */
ohair@286 1275 public static String TRACE_SERVLET_GOT_RESPONSE_FROM_IMPLEMENTOR(Object arg0) {
ohair@286 1276 return localizer.localize(localizableTRACE_SERVLET_GOT_RESPONSE_FROM_IMPLEMENTOR(arg0));
ohair@286 1277 }
ohair@286 1278
ohair@286 1279 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_INCOMPLETE_INFORMATION() {
ohair@286 1280 return messageFactory.getMessage("error.implementorRegistry.incompleteInformation");
ohair@286 1281 }
ohair@286 1282
ohair@286 1283 /**
ohair@286 1284 * WSSERVLET41: configuration information is incomplete
ohair@286 1285 *
ohair@286 1286 */
ohair@286 1287 public static String ERROR_IMPLEMENTOR_REGISTRY_INCOMPLETE_INFORMATION() {
ohair@286 1288 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_INCOMPLETE_INFORMATION());
ohair@286 1289 }
ohair@286 1290
ohair@286 1291 public static Localizable localizableWSSERVLET_12_DIAG_CHECK_1() {
ohair@286 1292 return messageFactory.getMessage("WSSERVLET12.diag.check.1");
ohair@286 1293 }
ohair@286 1294
ohair@286 1295 /**
ohair@286 1296 * Normal web service startup
ohair@286 1297 *
ohair@286 1298 */
ohair@286 1299 public static String WSSERVLET_12_DIAG_CHECK_1() {
ohair@286 1300 return localizer.localize(localizableWSSERVLET_12_DIAG_CHECK_1());
ohair@286 1301 }
ohair@286 1302
ohair@286 1303 public static Localizable localizableWSSERVLET_30_DIAG_CAUSE_1() {
ohair@286 1304 return messageFactory.getMessage("WSSERVLET30.diag.cause.1");
ohair@286 1305 }
ohair@286 1306
ohair@286 1307 /**
ohair@286 1308 * There was a server error processing the request
ohair@286 1309 *
ohair@286 1310 */
ohair@286 1311 public static String WSSERVLET_30_DIAG_CAUSE_1() {
ohair@286 1312 return localizer.localize(localizableWSSERVLET_30_DIAG_CAUSE_1());
ohair@286 1313 }
ohair@286 1314
ohair@286 1315 public static Localizable localizableHTML_WSDL_PAGE_NO_WSDL() {
ohair@286 1316 return messageFactory.getMessage("html.wsdlPage.noWsdl");
ohair@286 1317 }
ohair@286 1318
ohair@286 1319 /**
ohair@286 1320 * <p>No WSDL document available for publishing.</p><p>Please check your deployment information.</p>
ohair@286 1321 *
ohair@286 1322 */
ohair@286 1323 public static String HTML_WSDL_PAGE_NO_WSDL() {
ohair@286 1324 return localizer.localize(localizableHTML_WSDL_PAGE_NO_WSDL());
ohair@286 1325 }
ohair@286 1326
ohair@286 1327 public static Localizable localizableWSSERVLET_14_DIAG_CAUSE_1() {
ohair@286 1328 return messageFactory.getMessage("WSSERVLET14.diag.cause.1");
ohair@286 1329 }
ohair@286 1330
ohair@286 1331 /**
ohair@286 1332 * Web Services servlet starting up.
ohair@286 1333 *
ohair@286 1334 */
ohair@286 1335 public static String WSSERVLET_14_DIAG_CAUSE_1() {
ohair@286 1336 return localizer.localize(localizableWSSERVLET_14_DIAG_CAUSE_1());
ohair@286 1337 }
ohair@286 1338
ohair@286 1339 public static Localizable localizableINFO_SERVLET_DESTROYING() {
ohair@286 1340 return messageFactory.getMessage("info.servlet.destroying");
ohair@286 1341 }
ohair@286 1342
ohair@286 1343 /**
ohair@286 1344 * WSSERVLET57: JAX-WS servlet: destroy
ohair@286 1345 *
ohair@286 1346 */
ohair@286 1347 public static String INFO_SERVLET_DESTROYING() {
ohair@286 1348 return localizer.localize(localizableINFO_SERVLET_DESTROYING());
ohair@286 1349 }
ohair@286 1350
ohair@286 1351 public static Localizable localizableERROR_SERVLET_NO_RESPONSE_WAS_PRODUCED() {
ohair@286 1352 return messageFactory.getMessage("error.servlet.noResponseWasProduced");
ohair@286 1353 }
ohair@286 1354
ohair@286 1355 /**
ohair@286 1356 * WSSERVLET54: no response was produced (internal error)
ohair@286 1357 *
ohair@286 1358 */
ohair@286 1359 public static String ERROR_SERVLET_NO_RESPONSE_WAS_PRODUCED() {
ohair@286 1360 return localizer.localize(localizableERROR_SERVLET_NO_RESPONSE_WAS_PRODUCED());
ohair@286 1361 }
ohair@286 1362
ohair@286 1363 public static Localizable localizableWSSERVLET_26_DIAG_CHECK_1() {
ohair@286 1364 return messageFactory.getMessage("WSSERVLET26.diag.check.1");
ohair@286 1365 }
ohair@286 1366
ohair@286 1367 /**
ohair@286 1368 * This may cause a problem, please remove duplicate endpoints
ohair@286 1369 *
ohair@286 1370 */
ohair@286 1371 public static String WSSERVLET_26_DIAG_CHECK_1() {
ohair@286 1372 return localizer.localize(localizableWSSERVLET_26_DIAG_CHECK_1());
ohair@286 1373 }
ohair@286 1374
ohair@286 1375 public static Localizable localizableSERVLET_HTML_TITLE() {
ohair@286 1376 return messageFactory.getMessage("servlet.html.title");
ohair@286 1377 }
ohair@286 1378
ohair@286 1379 /**
ohair@286 1380 * Web Services
ohair@286 1381 *
ohair@286 1382 */
ohair@286 1383 public static String SERVLET_HTML_TITLE() {
ohair@286 1384 return localizer.localize(localizableSERVLET_HTML_TITLE());
ohair@286 1385 }
ohair@286 1386
ohair@286 1387 public static Localizable localizableWSSERVLET_44_DIAG_CAUSE_1() {
ohair@286 1388 return messageFactory.getMessage("WSSERVLET44.diag.cause.1");
ohair@286 1389 }
ohair@286 1390
ohair@286 1391 /**
ohair@286 1392 * The web service was instantiated, however, it could not be initialized
ohair@286 1393 *
ohair@286 1394 */
ohair@286 1395 public static String WSSERVLET_44_DIAG_CAUSE_1() {
ohair@286 1396 return localizer.localize(localizableWSSERVLET_44_DIAG_CAUSE_1());
ohair@286 1397 }
ohair@286 1398
ohair@286 1399 public static Localizable localizableWSSERVLET_63_DIAG_CHECK_1() {
ohair@286 1400 return messageFactory.getMessage("WSSERVLET63.diag.check.1");
ohair@286 1401 }
ohair@286 1402
ohair@286 1403 /**
ohair@286 1404 * Make sure that your HTTP client is using POST requests, not GET requests
ohair@286 1405 *
ohair@286 1406 */
ohair@286 1407 public static String WSSERVLET_63_DIAG_CHECK_1() {
ohair@286 1408 return localizer.localize(localizableWSSERVLET_63_DIAG_CHECK_1());
ohair@286 1409 }
ohair@286 1410
ohair@286 1411 public static Localizable localizableWSSERVLET_28_DIAG_CAUSE_1() {
ohair@286 1412 return messageFactory.getMessage("WSSERVLET28.diag.cause.1");
ohair@286 1413 }
ohair@286 1414
ohair@286 1415 /**
ohair@286 1416 * Target endpoint is null
ohair@286 1417 *
ohair@286 1418 */
ohair@286 1419 public static String WSSERVLET_28_DIAG_CAUSE_1() {
ohair@286 1420 return localizer.localize(localizableWSSERVLET_28_DIAG_CAUSE_1());
ohair@286 1421 }
ohair@286 1422
ohair@286 1423 public static Localizable localizableERROR_IMPLEMENTOR_FACTORY_NO_CONFIGURATION() {
ohair@286 1424 return messageFactory.getMessage("error.implementorFactory.noConfiguration");
ohair@286 1425 }
ohair@286 1426
ohair@286 1427 /**
ohair@286 1428 * WSSERVLET36: no configuration specified
ohair@286 1429 *
ohair@286 1430 */
ohair@286 1431 public static String ERROR_IMPLEMENTOR_FACTORY_NO_CONFIGURATION() {
ohair@286 1432 return localizer.localize(localizableERROR_IMPLEMENTOR_FACTORY_NO_CONFIGURATION());
ohair@286 1433 }
ohair@286 1434
ohair@286 1435 public static Localizable localizableHTML_ROOT_PAGE_BODY_4() {
ohair@286 1436 return messageFactory.getMessage("html.rootPage.body4");
ohair@286 1437 }
ohair@286 1438
ohair@286 1439 /**
ohair@286 1440 * <p>This endpoint is incorrectly configured. Please check the location and contents of the configuration file.</p>
ohair@286 1441 *
ohair@286 1442 */
ohair@286 1443 public static String HTML_ROOT_PAGE_BODY_4() {
ohair@286 1444 return localizer.localize(localizableHTML_ROOT_PAGE_BODY_4());
ohair@286 1445 }
ohair@286 1446
ohair@286 1447 public static Localizable localizableHTML_ROOT_PAGE_BODY_1() {
ohair@286 1448 return messageFactory.getMessage("html.rootPage.body1");
ohair@286 1449 }
ohair@286 1450
ohair@286 1451 /**
ohair@286 1452 * <p>A Web Service is installed at this URL.</p>
ohair@286 1453 *
ohair@286 1454 */
ohair@286 1455 public static String HTML_ROOT_PAGE_BODY_1() {
ohair@286 1456 return localizer.localize(localizableHTML_ROOT_PAGE_BODY_1());
ohair@286 1457 }
ohair@286 1458
ohair@286 1459 public static Localizable localizableEXCEPTION_TRANSFORMATION_FAILED(Object arg0) {
ohair@286 1460 return messageFactory.getMessage("exception.transformationFailed", arg0);
ohair@286 1461 }
ohair@286 1462
ohair@286 1463 /**
ohair@286 1464 * WSSERVLET34: transformation failed : {0}
ohair@286 1465 *
ohair@286 1466 */
ohair@286 1467 public static String EXCEPTION_TRANSFORMATION_FAILED(Object arg0) {
ohair@286 1468 return localizer.localize(localizableEXCEPTION_TRANSFORMATION_FAILED(arg0));
ohair@286 1469 }
ohair@286 1470
ohair@286 1471 public static Localizable localizableSERVLET_HTML_METHOD() {
ohair@286 1472 return messageFactory.getMessage("servlet.html.method");
ohair@286 1473 }
ohair@286 1474
ohair@286 1475 /**
ohair@286 1476 * WSSERVLET63: must use Post for this type of request
ohair@286 1477 *
ohair@286 1478 */
ohair@286 1479 public static String SERVLET_HTML_METHOD() {
ohair@286 1480 return localizer.localize(localizableSERVLET_HTML_METHOD());
ohair@286 1481 }
ohair@286 1482
ohair@286 1483 public static Localizable localizableSERVLET_FAULTSTRING_MISSING_PORT() {
ohair@286 1484 return messageFactory.getMessage("servlet.faultstring.missingPort");
ohair@286 1485 }
ohair@286 1486
ohair@286 1487 /**
ohair@286 1488 * WSSERVLET28: Missing port information
ohair@286 1489 *
ohair@286 1490 */
ohair@286 1491 public static String SERVLET_FAULTSTRING_MISSING_PORT() {
ohair@286 1492 return localizer.localize(localizableSERVLET_FAULTSTRING_MISSING_PORT());
ohair@286 1493 }
ohair@286 1494
ohair@286 1495 public static Localizable localizableWSSERVLET_21_DIAG_CAUSE_1() {
ohair@286 1496 return messageFactory.getMessage("WSSERVLET21.diag.cause.1");
ohair@286 1497 }
ohair@286 1498
ohair@286 1499 /**
ohair@286 1500 * The Web service is being invoked
ohair@286 1501 *
ohair@286 1502 */
ohair@286 1503 public static String WSSERVLET_21_DIAG_CAUSE_1() {
ohair@286 1504 return localizer.localize(localizableWSSERVLET_21_DIAG_CAUSE_1());
ohair@286 1505 }
ohair@286 1506
ohair@286 1507 public static Localizable localizableSERVLET_TRACE_WRITING_SUCCESS_RESPONSE() {
ohair@286 1508 return messageFactory.getMessage("servlet.trace.writingSuccessResponse");
ohair@286 1509 }
ohair@286 1510
ohair@286 1511 /**
ohair@286 1512 * WSSERVLET25: writing success response
ohair@286 1513 *
ohair@286 1514 */
ohair@286 1515 public static String SERVLET_TRACE_WRITING_SUCCESS_RESPONSE() {
ohair@286 1516 return localizer.localize(localizableSERVLET_TRACE_WRITING_SUCCESS_RESPONSE());
ohair@286 1517 }
ohair@286 1518
ohair@286 1519 public static Localizable localizableWSSERVLET_33_DIAG_CHECK_2() {
ohair@286 1520 return messageFactory.getMessage("WSSERVLET33.diag.check.2");
ohair@286 1521 }
ohair@286 1522
ohair@286 1523 /**
ohair@286 1524 * There maybe a transformation engine may not be supported or compatible. Check the server.xml file for exceptions.
ohair@286 1525 *
ohair@286 1526 */
ohair@286 1527 public static String WSSERVLET_33_DIAG_CHECK_2() {
ohair@286 1528 return localizer.localize(localizableWSSERVLET_33_DIAG_CHECK_2());
ohair@286 1529 }
ohair@286 1530
ohair@286 1531 public static Localizable localizableWSSERVLET_33_DIAG_CHECK_1() {
ohair@286 1532 return messageFactory.getMessage("WSSERVLET33.diag.check.1");
ohair@286 1533 }
ohair@286 1534
ohair@286 1535 /**
ohair@286 1536 * There maybe a transformation engine being used that is not compatible. Make sure you are using the correct transformer and version.
ohair@286 1537 *
ohair@286 1538 */
ohair@286 1539 public static String WSSERVLET_33_DIAG_CHECK_1() {
ohair@286 1540 return localizer.localize(localizableWSSERVLET_33_DIAG_CHECK_1());
ohair@286 1541 }
ohair@286 1542
ohair@286 1543 public static Localizable localizableWSSERVLET_51_DIAG_CAUSE_1() {
ohair@286 1544 return messageFactory.getMessage("WSSERVLET51.diag.cause.1");
ohair@286 1545 }
ohair@286 1546
ohair@286 1547 /**
ohair@286 1548 * Service processing of the request generated an exception; while attempting to return a SOAPPFaultMessage a throwable was again generated
ohair@286 1549 *
ohair@286 1550 */
ohair@286 1551 public static String WSSERVLET_51_DIAG_CAUSE_1() {
ohair@286 1552 return localizer.localize(localizableWSSERVLET_51_DIAG_CAUSE_1());
ohair@286 1553 }
ohair@286 1554
ohair@286 1555 public static Localizable localizableWSSERVLET_24_DIAG_CHECK_1() {
ohair@286 1556 return messageFactory.getMessage("WSSERVLET24.diag.check.1");
ohair@286 1557 }
ohair@286 1558
ohair@286 1559 /**
ohair@286 1560 * Tracing message fault recorded.
ohair@286 1561 *
ohair@286 1562 */
ohair@286 1563 public static String WSSERVLET_24_DIAG_CHECK_1() {
ohair@286 1564 return localizer.localize(localizableWSSERVLET_24_DIAG_CHECK_1());
ohair@286 1565 }
ohair@286 1566
ohair@286 1567 public static Localizable localizableWSSERVLET_17_DIAG_CHECK_1() {
ohair@286 1568 return messageFactory.getMessage("WSSERVLET17.diag.check.1");
ohair@286 1569 }
ohair@286 1570
ohair@286 1571 /**
ohair@286 1572 * Note that this may cause problems with service deployment
ohair@286 1573 *
ohair@286 1574 */
ohair@286 1575 public static String WSSERVLET_17_DIAG_CHECK_1() {
ohair@286 1576 return localizer.localize(localizableWSSERVLET_17_DIAG_CHECK_1());
ohair@286 1577 }
ohair@286 1578
ohair@286 1579 public static Localizable localizableWSSERVLET_35_DIAG_CAUSE_1() {
ohair@286 1580 return messageFactory.getMessage("WSSERVLET35.diag.cause.1");
ohair@286 1581 }
ohair@286 1582
ohair@286 1583 /**
ohair@286 1584 * A XSLT stylesheet template is create for the wsdl location patching using transformation. Template create failed.
ohair@286 1585 *
ohair@286 1586 */
ohair@286 1587 public static String WSSERVLET_35_DIAG_CAUSE_1() {
ohair@286 1588 return localizer.localize(localizableWSSERVLET_35_DIAG_CAUSE_1());
ohair@286 1589 }
ohair@286 1590
ohair@286 1591 public static Localizable localizableWSSERVLET_19_DIAG_CAUSE_1() {
ohair@286 1592 return messageFactory.getMessage("WSSERVLET19.diag.cause.1");
ohair@286 1593 }
ohair@286 1594
ohair@286 1595 /**
ohair@286 1596 * Client request for this endpoint arrived
ohair@286 1597 *
ohair@286 1598 */
ohair@286 1599 public static String WSSERVLET_19_DIAG_CAUSE_1() {
ohair@286 1600 return localizer.localize(localizableWSSERVLET_19_DIAG_CAUSE_1());
ohair@286 1601 }
ohair@286 1602
ohair@286 1603 public static Localizable localizableWSSERVLET_65_DIAG_CAUSE_1() {
ohair@286 1604 return messageFactory.getMessage("WSSERVLET65.diag.cause.1");
ohair@286 1605 }
ohair@286 1606
ohair@286 1607 /**
ohair@286 1608 * SOAP Action is required
ohair@286 1609 *
ohair@286 1610 */
ohair@286 1611 public static String WSSERVLET_65_DIAG_CAUSE_1() {
ohair@286 1612 return localizer.localize(localizableWSSERVLET_65_DIAG_CAUSE_1());
ohair@286 1613 }
ohair@286 1614
ohair@286 1615 public static Localizable localizableLISTENER_PARSING_FAILED(Object arg0) {
ohair@286 1616 return messageFactory.getMessage("listener.parsingFailed", arg0);
ohair@286 1617 }
ohair@286 1618
ohair@286 1619 /**
ohair@286 1620 * WSSERVLET11: failed to parse runtime descriptor: {0}
ohair@286 1621 *
ohair@286 1622 */
ohair@286 1623 public static String LISTENER_PARSING_FAILED(Object arg0) {
ohair@286 1624 return localizer.localize(localizableLISTENER_PARSING_FAILED(arg0));
ohair@286 1625 }
ohair@286 1626
ohair@286 1627 public static Localizable localizableSERVLET_WARNING_IGNORING_IMPLICIT_URL_PATTERN(Object arg0) {
ohair@286 1628 return messageFactory.getMessage("servlet.warning.ignoringImplicitUrlPattern", arg0);
ohair@286 1629 }
ohair@286 1630
ohair@286 1631 /**
ohair@286 1632 * WSSERVLET27: unsupported implicit URL pattern in endpoint: {0}
ohair@286 1633 *
ohair@286 1634 */
ohair@286 1635 public static String SERVLET_WARNING_IGNORING_IMPLICIT_URL_PATTERN(Object arg0) {
ohair@286 1636 return localizer.localize(localizableSERVLET_WARNING_IGNORING_IMPLICIT_URL_PATTERN(arg0));
ohair@286 1637 }
ohair@286 1638
ohair@286 1639 public static Localizable localizableWSSERVLET_49_DIAG_CAUSE_1() {
ohair@286 1640 return messageFactory.getMessage("WSSERVLET49.diag.cause.1");
ohair@286 1641 }
ohair@286 1642
ohair@286 1643 /**
ohair@286 1644 * Service processing of the request generated an exception; while attempting to return a SOAPFaultMessage a throwable was again generated
ohair@286 1645 *
ohair@286 1646 */
ohair@286 1647 public static String WSSERVLET_49_DIAG_CAUSE_1() {
ohair@286 1648 return localizer.localize(localizableWSSERVLET_49_DIAG_CAUSE_1());
ohair@286 1649 }
ohair@286 1650
ohair@286 1651 public static Localizable localizableERROR_IMPLEMENTOR_FACTORY_NEW_INSTANCE_FAILED(Object arg0) {
ohair@286 1652 return messageFactory.getMessage("error.implementorFactory.newInstanceFailed", arg0);
ohair@286 1653 }
ohair@286 1654
ohair@286 1655 /**
ohair@286 1656 * WSSERVLET43: failed to instantiate service implementor for port "{0}"
ohair@286 1657 *
ohair@286 1658 */
ohair@286 1659 public static String ERROR_IMPLEMENTOR_FACTORY_NEW_INSTANCE_FAILED(Object arg0) {
ohair@286 1660 return localizer.localize(localizableERROR_IMPLEMENTOR_FACTORY_NEW_INSTANCE_FAILED(arg0));
ohair@286 1661 }
ohair@286 1662
ohair@286 1663 public static Localizable localizableWSSERVLET_12_DIAG_CAUSE_1() {
ohair@286 1664 return messageFactory.getMessage("WSSERVLET12.diag.cause.1");
ohair@286 1665 }
ohair@286 1666
ohair@286 1667 /**
ohair@286 1668 * Context listener starting
ohair@286 1669 *
ohair@286 1670 */
ohair@286 1671 public static String WSSERVLET_12_DIAG_CAUSE_1() {
ohair@286 1672 return localizer.localize(localizableWSSERVLET_12_DIAG_CAUSE_1());
ohair@286 1673 }
ohair@286 1674
ohair@286 1675 public static Localizable localizableWSSERVLET_31_DIAG_CHECK_1() {
ohair@286 1676 return messageFactory.getMessage("WSSERVLET31.diag.check.1");
ohair@286 1677 }
ohair@286 1678
ohair@286 1679 /**
ohair@286 1680 * Normal operation
ohair@286 1681 *
ohair@286 1682 */
ohair@286 1683 public static String WSSERVLET_31_DIAG_CHECK_1() {
ohair@286 1684 return localizer.localize(localizableWSSERVLET_31_DIAG_CHECK_1());
ohair@286 1685 }
ohair@286 1686
ohair@286 1687 public static Localizable localizableSERVLET_FAULTSTRING_INVALID_CONTENT_TYPE() {
ohair@286 1688 return messageFactory.getMessage("servlet.faultstring.invalidContentType");
ohair@286 1689 }
ohair@286 1690
ohair@286 1691 /**
ohair@286 1692 * WSSERVLET64: Invalid Content-Type, text/xml required
ohair@286 1693 *
ohair@286 1694 */
ohair@286 1695 public static String SERVLET_FAULTSTRING_INVALID_CONTENT_TYPE() {
ohair@286 1696 return localizer.localize(localizableSERVLET_FAULTSTRING_INVALID_CONTENT_TYPE());
ohair@286 1697 }
ohair@286 1698
ohair@286 1699 public static Localizable localizableERROR_SERVLET_CAUGHT_THROWABLE(Object arg0) {
ohair@286 1700 return messageFactory.getMessage("error.servlet.caughtThrowable", arg0);
ohair@286 1701 }
ohair@286 1702
ohair@286 1703 /**
ohair@286 1704 * WSSERVLET49: caught throwable: {0}
ohair@286 1705 *
ohair@286 1706 */
ohair@286 1707 public static String ERROR_SERVLET_CAUGHT_THROWABLE(Object arg0) {
ohair@286 1708 return localizer.localize(localizableERROR_SERVLET_CAUGHT_THROWABLE(arg0));
ohair@286 1709 }
ohair@286 1710
ohair@286 1711 public static Localizable localizableTRACE_SERVLET_WRITING_SUCCESS_RESPONSE() {
ohair@286 1712 return messageFactory.getMessage("trace.servlet.writingSuccessResponse");
ohair@286 1713 }
ohair@286 1714
ohair@286 1715 /**
ohair@286 1716 * WSSERVLET62: writing success response
ohair@286 1717 *
ohair@286 1718 */
ohair@286 1719 public static String TRACE_SERVLET_WRITING_SUCCESS_RESPONSE() {
ohair@286 1720 return localizer.localize(localizableTRACE_SERVLET_WRITING_SUCCESS_RESPONSE());
ohair@286 1721 }
ohair@286 1722
ohair@286 1723 public static Localizable localizableERROR_IMPLEMENTOR_REGISTRY_CLASS_NOT_FOUND(Object arg0) {
ohair@286 1724 return messageFactory.getMessage("error.implementorRegistry.classNotFound", arg0);
ohair@286 1725 }
ohair@286 1726
ohair@286 1727 /**
ohair@286 1728 * WSSERVLET40: class not found: {0}
ohair@286 1729 *
ohair@286 1730 */
ohair@286 1731 public static String ERROR_IMPLEMENTOR_REGISTRY_CLASS_NOT_FOUND(Object arg0) {
ohair@286 1732 return localizer.localize(localizableERROR_IMPLEMENTOR_REGISTRY_CLASS_NOT_FOUND(arg0));
ohair@286 1733 }
ohair@286 1734
ohair@286 1735 public static Localizable localizableWSSERVLET_15_DIAG_CHECK_1() {
ohair@286 1736 return messageFactory.getMessage("WSSERVLET15.diag.check.1");
ohair@286 1737 }
ohair@286 1738
ohair@286 1739 /**
ohair@286 1740 * Normal Web service undeployment. Undeployment complete.
ohair@286 1741 *
ohair@286 1742 */
ohair@286 1743 public static String WSSERVLET_15_DIAG_CHECK_1() {
ohair@286 1744 return localizer.localize(localizableWSSERVLET_15_DIAG_CHECK_1());
ohair@286 1745 }
ohair@286 1746
ohair@286 1747 public static Localizable localizableSERVLET_FAULTSTRING_PORT_NOT_FOUND(Object arg0) {
ohair@286 1748 return messageFactory.getMessage("servlet.faultstring.portNotFound", arg0);
ohair@286 1749 }
ohair@286 1750
ohair@286 1751 /**
ohair@286 1752 * WSSERVLET29: Port not found ({0})
ohair@286 1753 *
ohair@286 1754 */
ohair@286 1755 public static String SERVLET_FAULTSTRING_PORT_NOT_FOUND(Object arg0) {
ohair@286 1756 return localizer.localize(localizableSERVLET_FAULTSTRING_PORT_NOT_FOUND(arg0));
ohair@286 1757 }
ohair@286 1758
ohair@286 1759 public static Localizable localizableSERVLET_INFO_DESTROY() {
ohair@286 1760 return messageFactory.getMessage("servlet.info.destroy");
ohair@286 1761 }
ohair@286 1762
ohair@286 1763 /**
ohair@286 1764 * WSSERVLET15: JAX-WS servlet destroyed
ohair@286 1765 *
ohair@286 1766 */
ohair@286 1767 public static String SERVLET_INFO_DESTROY() {
ohair@286 1768 return localizer.localize(localizableSERVLET_INFO_DESTROY());
ohair@286 1769 }
ohair@286 1770
ohair@286 1771 public static Localizable localizableSERVLET_FAULTSTRING_INTERNAL_SERVER_ERROR(Object arg0) {
ohair@286 1772 return messageFactory.getMessage("servlet.faultstring.internalServerError", arg0);
ohair@286 1773 }
ohair@286 1774
ohair@286 1775 /**
ohair@286 1776 * WSSERVLET30: Internal server error ({0})
ohair@286 1777 *
ohair@286 1778 */
ohair@286 1779 public static String SERVLET_FAULTSTRING_INTERNAL_SERVER_ERROR(Object arg0) {
ohair@286 1780 return localizer.localize(localizableSERVLET_FAULTSTRING_INTERNAL_SERVER_ERROR(arg0));
ohair@286 1781 }
ohair@286 1782
ohair@286 1783 public static Localizable localizableWSSERVLET_26_DIAG_CAUSE_1() {
ohair@286 1784 return messageFactory.getMessage("WSSERVLET26.diag.cause.1");
ohair@286 1785 }
ohair@286 1786
ohair@286 1787 /**
ohair@286 1788 * The endpoint URL is a duplicate
ohair@286 1789 *
ohair@286 1790 */
ohair@286 1791 public static String WSSERVLET_26_DIAG_CAUSE_1() {
ohair@286 1792 return localizer.localize(localizableWSSERVLET_26_DIAG_CAUSE_1());
ohair@286 1793 }
ohair@286 1794
ohair@286 1795 public static Localizable localizableSERVLET_HTML_COLUMN_HEADER_STATUS() {
ohair@286 1796 return messageFactory.getMessage("servlet.html.columnHeader.status");
ohair@286 1797 }
ohair@286 1798
ohair@286 1799 /**
ohair@286 1800 * Status
ohair@286 1801 *
ohair@286 1802 */
ohair@286 1803 public static String SERVLET_HTML_COLUMN_HEADER_STATUS() {
ohair@286 1804 return localizer.localize(localizableSERVLET_HTML_COLUMN_HEADER_STATUS());
ohair@286 1805 }
ohair@286 1806
ohair@286 1807 public static Localizable localizableWSSERVLET_63_DIAG_CAUSE_1() {
ohair@286 1808 return messageFactory.getMessage("WSSERVLET63.diag.cause.1");
ohair@286 1809 }
ohair@286 1810
ohair@286 1811 /**
ohair@286 1812 * Web service requests must use HTTP POST method: WSI BP 1.0
ohair@286 1813 *
ohair@286 1814 */
ohair@286 1815 public static String WSSERVLET_63_DIAG_CAUSE_1() {
ohair@286 1816 return localizer.localize(localizableWSSERVLET_63_DIAG_CAUSE_1());
ohair@286 1817 }
ohair@286 1818
ohair@286 1819 public static Localizable localizableSERVLET_WARNING_DUPLICATE_ENDPOINT_NAME() {
ohair@286 1820 return messageFactory.getMessage("servlet.warning.duplicateEndpointName");
ohair@286 1821 }
ohair@286 1822
ohair@286 1823 /**
ohair@286 1824 * WSSERVLET17: duplicate endpoint name
ohair@286 1825 *
ohair@286 1826 */
ohair@286 1827 public static String SERVLET_WARNING_DUPLICATE_ENDPOINT_NAME() {
ohair@286 1828 return localizer.localize(localizableSERVLET_WARNING_DUPLICATE_ENDPOINT_NAME());
ohair@286 1829 }
ohair@286 1830
ohair@286 1831 public static Localizable localizableTRACE_SERVLET_REQUEST_FOR_PORT_NAMED(Object arg0) {
ohair@286 1832 return messageFactory.getMessage("trace.servlet.requestForPortNamed", arg0);
ohair@286 1833 }
ohair@286 1834
ohair@286 1835 /**
ohair@286 1836 * WSSERVLET58: got request for port: {0}
ohair@286 1837 *
ohair@286 1838 */
ohair@286 1839 public static String TRACE_SERVLET_REQUEST_FOR_PORT_NAMED(Object arg0) {
ohair@286 1840 return localizer.localize(localizableTRACE_SERVLET_REQUEST_FOR_PORT_NAMED(arg0));
ohair@286 1841 }
ohair@286 1842
ohair@286 1843 public static Localizable localizableSERVLET_NO_ADDRESS_AVAILABLE(Object arg0) {
ohair@286 1844 return messageFactory.getMessage("servlet.no.address.available", arg0);
ohair@286 1845 }
ohair@286 1846
ohair@286 1847 /**
ohair@286 1848 * No address is available for {0}
ohair@286 1849 *
ohair@286 1850 */
ohair@286 1851 public static String SERVLET_NO_ADDRESS_AVAILABLE(Object arg0) {
ohair@286 1852 return localizer.localize(localizableSERVLET_NO_ADDRESS_AVAILABLE(arg0));
ohair@286 1853 }
ohair@286 1854
ohair@286 1855 }

mercurial