com.sun.xml.internal.ws.util.exception.LocatableWebServiceException Java Examples
The following examples show how to use
com.sun.xml.internal.ws.util.exception.LocatableWebServiceException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WSDLBoundPortTypeImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #2
Source File: DeploymentDescriptorParser.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #3
Source File: WSDLBoundPortTypeImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #4
Source File: DeploymentDescriptorParser.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #5
Source File: WSDLBoundPortTypeImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #6
Source File: DeploymentDescriptorParser.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #7
Source File: WSDLBoundPortTypeImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #8
Source File: DeploymentDescriptorParser.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #9
Source File: WSDLBoundPortTypeImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #10
Source File: DeploymentDescriptorParser.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #11
Source File: WSDLBoundPortTypeImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #12
Source File: DeploymentDescriptorParser.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #13
Source File: WSDLBoundPortTypeImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #14
Source File: DeploymentDescriptorParser.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }
Example #15
Source File: WSDLBoundPortTypeImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public void freeze() { portType = owner.getPortType(portTypeName); if(portType == null){ throw new LocatableWebServiceException( ClientMessages.UNDEFINED_PORT_TYPE(portTypeName), getLocation()); } portType.freeze(); for (EditableWSDLBoundOperation op : bindingOperations.values()) { op.freeze(owner); } freezePayloadMap(); owner.finalizeRpcLitBinding(this); }
Example #16
Source File: DeploymentDescriptorParser.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Loads the class of the given name. * * @param xsr Used to report the source location information if there's any error. */ private Class getImplementorClass(String name, XMLStreamReader xsr) { try { return Class.forName(name, true, classLoader); } catch (ClassNotFoundException e) { logger.log(Level.SEVERE, e.getMessage(), e); throw new LocatableWebServiceException( ServerMessages.RUNTIME_PARSER_CLASS_NOT_FOUND(name), e, xsr); } }