Tabnine Logo
WsdlMessages.INTERNALIZER_INCORRECT_VERSION
Code IndexAdd Tabnine to your IDE (free)

How to use
INTERNALIZER_INCORRECT_VERSION
method
in
com.sun.tools.ws.resources.WsdlMessages

Best Java code snippets using com.sun.tools.ws.resources.WsdlMessages.INTERNALIZER_INCORRECT_VERSION (Showing top 4 results out of 315)

origin: com.sun.xml.ws/jaxws-tools

public void endDocument() throws SAXException {
  super.endDocument();
  if( seenBindings && version==null ) {
    // if we see a binding declaration but not version attribute
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_VERSION_NOT_PRESENT(), rootTagStart);
    getErrorHandler().error(e);
  }
  // if present, the value must be >= 2.0
  if( version!=null && !VERSIONS.contains(version) ) {
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_INCORRECT_VERSION(), rootTagStart);
    getErrorHandler().error(e);
  }
}
origin: javaee/metro-jax-ws

public void endDocument() throws SAXException {
  super.endDocument();
  if( seenBindings && version==null ) {
    // if we see a binding declaration but not version attribute
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_VERSION_NOT_PRESENT(), rootTagStart);
    getErrorHandler().error(e);
  }
  // if present, the value must be >= 2.0
  if( version!=null && !VERSIONS.contains(version) ) {
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_INCORRECT_VERSION(), rootTagStart);
    getErrorHandler().error(e);
  }
}
origin: org.glassfish.metro/webservices-tools

public void endDocument() throws SAXException {
  super.endDocument();
  if( seenBindings && version==null ) {
    // if we see a binding declaration but not version attribute
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_VERSION_NOT_PRESENT(), rootTagStart);
    getErrorHandler().error(e);
  }
  // if present, the value must be >= 2.0
  if( version!=null && !VERSIONS.contains(version) ) {
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_INCORRECT_VERSION(), rootTagStart);
    getErrorHandler().error(e);
  }
}
origin: javaee/metro-jax-ws

public void endDocument() throws SAXException {
  super.endDocument();
  if( seenBindings && version==null ) {
    // if we see a binding declaration but not version attribute
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_VERSION_NOT_PRESENT(), rootTagStart);
    getErrorHandler().error(e);
  }
  // if present, the value must be >= 2.0
  if( version!=null && !VERSIONS.contains(version) ) {
    SAXParseException e = new SAXParseException(WsdlMessages.INTERNALIZER_INCORRECT_VERSION(), rootTagStart);
    getErrorHandler().error(e);
  }
}
com.sun.tools.ws.resourcesWsdlMessagesINTERNALIZER_INCORRECT_VERSION

Javadoc

JAXWS version attribute must be "2.0"

Popular methods of WsdlMessages

  • ABSTRACT_REFERENCE_FINDER_IMPL_UNABLE_TO_PARSE
    Unable to parse "{0}" : {1}
  • ENTITY_DUPLICATE_WITH_TYPE
    duplicate "{0}" entity: "{1}"
  • ENTITY_NOT_FOUND_BINDING
    wsdl:binding "{0}" referenced by wsdl:port "{1}", but it's not found in the wsdl
  • ENTITY_NOT_FOUND_BY_Q_NAME
    {0} "{1}" not found in the wsdl: {2}
  • ENTITY_NOT_FOUND_PORT_TYPE
    wsdl:portType "{0}" referenced by wsdl:binding "{1}", but it's not found in the wsdl
  • FAILED_NOSERVICE
    Could not find wsdl:service in the provided WSDL(s): {0} At least one WSDL with at least one service
  • FILE_NOT_FOUND
    {0} is unreachable
  • INTERNALIZER_INCORRECT_SCHEMA_REFERENCE
    "{0}" is not a part of this compilation. Is this a mistake for "{1}"?
  • INTERNALIZER_TWO_VERSION_ATTRIBUTES
    Both jaxws:version and version are present
  • INTERNALIZER_VERSION_NOT_PRESENT
    JAXWS version attribute must be present
  • INTERNALIZER_X_PATH_EVALUATES_TO_NO_TARGET
    XPath evaluation of "{0}" results in an empty target node
  • INTERNALIZER_X_PATH_EVALUATION_ERROR
    XPath error: {0}
  • INTERNALIZER_X_PATH_EVALUATES_TO_NO_TARGET,
  • INTERNALIZER_X_PATH_EVALUATION_ERROR,
  • INVALID_CUSTOMIZATION_NAMESPACE,
  • INVALID_WSDL,
  • PARSER_NOT_A_BINDING_FILE,
  • PARSING_ELEMENT_OR_TYPE_REQUIRED,
  • PARSING_INVALID_ELEMENT,
  • PARSING_INVALID_OPERATION_STYLE,
  • PARSING_INVALID_WSDL_ELEMENT

Popular in Java

  • Reading from database using SQL prepared statement
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now