Java Code Examples for com.sun.xml.internal.ws.model.JavaMethodImpl#getCheckedExceptions()
The following examples show how to use
com.sun.xml.internal.ws.model.JavaMethodImpl#getCheckedExceptions() .
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: WSDLGenerator.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 2
Source File: WSDLGenerator.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 3
Source File: WSDLGenerator.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 4
Source File: WSDLGenerator.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 5
Source File: WSDLGenerator.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 6
Source File: WSDLGenerator.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Generates the WSDL portType */ protected void generatePortType() { PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart()); extension.addPortTypeExtension(portType); for (JavaMethodImpl method : model.getJavaMethods()) { Operation operation = portType.operation().name(method.getOperationName()); generateParameterOrder(operation, method); extension.addOperationExtension(operation, method); switch (method.getMEP()) { case REQUEST_RESPONSE: // input message generateInputMessage(operation, method); // output message generateOutputMessage(operation, method); break; case ONE_WAY: generateInputMessage(operation, method); break; default: break; } // faults for (CheckedExceptionImpl exception : method.getCheckedExceptions()) { QName messageName = new QName(model.getTargetNamespace(), exception.getMessageName()); FaultType paramType = operation.fault().message(messageName).name(exception.getMessageName()); extension.addOperationFaultExtension(paramType, method, exception); } } }
Example 7
Source File: StubHandler.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public StubHandler(JavaMethodImpl method, MessageContextFactory mcf) { //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction String soapActionFromBinding = method.getBinding().getSOAPAction(); if(method.getInputAction() != null && soapActionFromBinding != null && !soapActionFromBinding.equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = soapActionFromBinding; } this.javaMethod = method; packetFactory = mcf; soapVersion = javaMethod.getBinding().getSOAPVersion(); {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder bodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); else bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); } else { bodyBuilder = new BodyBuilder.Bare(param, soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(bodyBuilder==null) { // no parameter binds to body. we create an empty message switch(soapVersion) { case SOAP_11: bodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: bodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = bodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); responseBuilder = buildResponseBuilder(method, ValueSetterFactory.SYNC); }
Example 8
Source File: SEIMethodHandler.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { super(owner, null); //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction if(method.getInputAction() != null && !method.getBinding().getSOAPAction().equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = method.getBinding().getSOAPAction(); } this.javaMethod = method; {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder tmpBodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) tmpBodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); else tmpBodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); } else { tmpBodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(tmpBodyBuilder==null) { // no parameter binds to body. we create an empty message switch(owner.soapVersion) { case SOAP_11: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = tmpBodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); }
Example 9
Source File: WsaTubeHelper.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
String getFaultActionFromSEIModel(Packet requestPacket, Packet responsePacket) { String action = null; if (seiModel == null || wsdlPort == null) { return action; } try { SOAPMessage sm = responsePacket.getMessage().copy().readAsSOAPMessage(); if (sm == null) { return action; } if (sm.getSOAPBody() == null) { return action; } if (sm.getSOAPBody().getFault() == null) { return action; } Detail detail = sm.getSOAPBody().getFault().getDetail(); if (detail == null) { return action; } String ns = detail.getFirstChild().getNamespaceURI(); String name = detail.getFirstChild().getLocalName(); WSDLOperationMapping wsdlOp = requestPacket.getWSDLOperationMapping(); JavaMethodImpl jm = (wsdlOp != null) ? (JavaMethodImpl)wsdlOp.getJavaMethod() : null; if (jm != null) { for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) { if (ce.getDetailType().tagName.getLocalPart().equals(name) && ce.getDetailType().tagName.getNamespaceURI().equals(ns)) { return ce.getFaultAction(); } } } return action; } catch (SOAPException e) { throw new WebServiceException(e); } }
Example 10
Source File: StubHandler.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public StubHandler(JavaMethodImpl method, MessageContextFactory mcf) { //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction String soapActionFromBinding = method.getBinding().getSOAPAction(); if(method.getInputAction() != null && soapActionFromBinding != null && !soapActionFromBinding.equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = soapActionFromBinding; } this.javaMethod = method; packetFactory = mcf; soapVersion = javaMethod.getBinding().getSOAPVersion(); {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder bodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); else bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); } else { bodyBuilder = new BodyBuilder.Bare(param, soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(bodyBuilder==null) { // no parameter binds to body. we create an empty message switch(soapVersion) { case SOAP_11: bodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: bodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = bodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); responseBuilder = buildResponseBuilder(method, ValueSetterFactory.SYNC); }
Example 11
Source File: StubHandler.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public StubHandler(JavaMethodImpl method, MessageContextFactory mcf) { //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction String soapActionFromBinding = method.getBinding().getSOAPAction(); if(method.getInputAction() != null && soapActionFromBinding != null && !soapActionFromBinding.equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = soapActionFromBinding; } this.javaMethod = method; packetFactory = mcf; soapVersion = javaMethod.getBinding().getSOAPVersion(); {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder bodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); else bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); } else { bodyBuilder = new BodyBuilder.Bare(param, soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(bodyBuilder==null) { // no parameter binds to body. we create an empty message switch(soapVersion) { case SOAP_11: bodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: bodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = bodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); responseBuilder = buildResponseBuilder(method, ValueSetterFactory.SYNC); }
Example 12
Source File: SEIMethodHandler.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { super(owner, null); //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction if(method.getInputAction() != null && !method.getBinding().getSOAPAction().equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = method.getBinding().getSOAPAction(); } this.javaMethod = method; {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder tmpBodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) tmpBodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); else tmpBodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); } else { tmpBodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(tmpBodyBuilder==null) { // no parameter binds to body. we create an empty message switch(owner.soapVersion) { case SOAP_11: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = tmpBodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); }
Example 13
Source File: WsaTubeHelper.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
String getFaultActionFromSEIModel(Packet requestPacket, Packet responsePacket) { String action = null; if (seiModel == null || wsdlPort == null) { return action; } try { SOAPMessage sm = responsePacket.getMessage().copy().readAsSOAPMessage(); if (sm == null) { return action; } if (sm.getSOAPBody() == null) { return action; } if (sm.getSOAPBody().getFault() == null) { return action; } Detail detail = sm.getSOAPBody().getFault().getDetail(); if (detail == null) { return action; } String ns = detail.getFirstChild().getNamespaceURI(); String name = detail.getFirstChild().getLocalName(); WSDLOperationMapping wsdlOp = requestPacket.getWSDLOperationMapping(); JavaMethodImpl jm = (wsdlOp != null) ? (JavaMethodImpl)wsdlOp.getJavaMethod() : null; if (jm != null) { for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) { if (ce.getDetailType().tagName.getLocalPart().equals(name) && ce.getDetailType().tagName.getNamespaceURI().equals(ns)) { return ce.getFaultAction(); } } } return action; } catch (SOAPException e) { throw new WebServiceException(e); } }
Example 14
Source File: SEIMethodHandler.java From hottub with GNU General Public License v2.0 | 4 votes |
SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { super(owner, null); //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction if(method.getInputAction() != null && !method.getBinding().getSOAPAction().equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = method.getBinding().getSOAPAction(); } this.javaMethod = method; {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder tmpBodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) tmpBodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); else tmpBodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); } else { tmpBodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(tmpBodyBuilder==null) { // no parameter binds to body. we create an empty message switch(owner.soapVersion) { case SOAP_11: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = tmpBodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); }
Example 15
Source File: SEIMethodHandler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
SEIMethodHandler(SEIStub owner, JavaMethodImpl method) { super(owner, null); //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction if(method.getInputAction() != null && !method.getBinding().getSOAPAction().equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = method.getBinding().getSOAPAction(); } this.javaMethod = method; {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder tmpBodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) tmpBodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); else tmpBodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, owner.soapVersion, getValueGetterFactory()); } else { tmpBodyBuilder = new BodyBuilder.Bare(param, owner.soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(tmpBodyBuilder==null) { // no parameter binds to body. we create an empty message switch(owner.soapVersion) { case SOAP_11: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: tmpBodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = tmpBodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); }
Example 16
Source File: WsaTubeHelper.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
String getFaultActionFromSEIModel(Packet requestPacket, Packet responsePacket) { String action = null; if (seiModel == null || wsdlPort == null) { return action; } try { SOAPMessage sm = responsePacket.getMessage().copy().readAsSOAPMessage(); if (sm == null) { return action; } if (sm.getSOAPBody() == null) { return action; } if (sm.getSOAPBody().getFault() == null) { return action; } Detail detail = sm.getSOAPBody().getFault().getDetail(); if (detail == null) { return action; } String ns = detail.getFirstChild().getNamespaceURI(); String name = detail.getFirstChild().getLocalName(); WSDLOperationMapping wsdlOp = requestPacket.getWSDLOperationMapping(); JavaMethodImpl jm = (wsdlOp != null) ? (JavaMethodImpl)wsdlOp.getJavaMethod() : null; if (jm != null) { for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) { if (ce.getDetailType().tagName.getLocalPart().equals(name) && ce.getDetailType().tagName.getNamespaceURI().equals(ns)) { return ce.getFaultAction(); } } } return action; } catch (SOAPException e) { throw new WebServiceException(e); } }
Example 17
Source File: WsaTubeHelper.java From hottub with GNU General Public License v2.0 | 4 votes |
String getFaultActionFromSEIModel(Packet requestPacket, Packet responsePacket) { String action = null; if (seiModel == null || wsdlPort == null) { return action; } try { SOAPMessage sm = responsePacket.getMessage().copy().readAsSOAPMessage(); if (sm == null) { return action; } if (sm.getSOAPBody() == null) { return action; } if (sm.getSOAPBody().getFault() == null) { return action; } Detail detail = sm.getSOAPBody().getFault().getDetail(); if (detail == null) { return action; } String ns = detail.getFirstChild().getNamespaceURI(); String name = detail.getFirstChild().getLocalName(); WSDLOperationMapping wsdlOp = requestPacket.getWSDLOperationMapping(); JavaMethodImpl jm = (wsdlOp != null) ? (JavaMethodImpl)wsdlOp.getJavaMethod() : null; if (jm != null) { for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) { if (ce.getDetailType().tagName.getLocalPart().equals(name) && ce.getDetailType().tagName.getNamespaceURI().equals(ns)) { return ce.getFaultAction(); } } } return action; } catch (SOAPException e) { throw new WebServiceException(e); } }
Example 18
Source File: StubHandler.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public StubHandler(JavaMethodImpl method, MessageContextFactory mcf) { //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction String soapActionFromBinding = method.getBinding().getSOAPAction(); if(method.getInputAction() != null && soapActionFromBinding != null && !soapActionFromBinding.equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = soapActionFromBinding; } this.javaMethod = method; packetFactory = mcf; soapVersion = javaMethod.getBinding().getSOAPVersion(); {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder bodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); else bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); } else { bodyBuilder = new BodyBuilder.Bare(param, soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(bodyBuilder==null) { // no parameter binds to body. we create an empty message switch(soapVersion) { case SOAP_11: bodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: bodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = bodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); responseBuilder = buildResponseBuilder(method, ValueSetterFactory.SYNC); }
Example 19
Source File: WsaTubeHelper.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
String getFaultActionFromSEIModel(Packet requestPacket, Packet responsePacket) { String action = null; if (seiModel == null || wsdlPort == null) { return action; } try { SOAPMessage sm = responsePacket.getMessage().copy().readAsSOAPMessage(); if (sm == null) { return action; } if (sm.getSOAPBody() == null) { return action; } if (sm.getSOAPBody().getFault() == null) { return action; } Detail detail = sm.getSOAPBody().getFault().getDetail(); if (detail == null) { return action; } String ns = detail.getFirstChild().getNamespaceURI(); String name = detail.getFirstChild().getLocalName(); WSDLOperationMapping wsdlOp = requestPacket.getWSDLOperationMapping(); JavaMethodImpl jm = (wsdlOp != null) ? (JavaMethodImpl)wsdlOp.getJavaMethod() : null; if (jm != null) { for (CheckedExceptionImpl ce : jm.getCheckedExceptions()) { if (ce.getDetailType().tagName.getLocalPart().equals(name) && ce.getDetailType().tagName.getNamespaceURI().equals(ns)) { return ce.getFaultAction(); } } } return action; } catch (SOAPException e) { throw new WebServiceException(e); } }
Example 20
Source File: StubHandler.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public StubHandler(JavaMethodImpl method, MessageContextFactory mcf) { //keep all the CheckedException model for the detail qname this.checkedExceptions = new HashMap<QName, CheckedExceptionImpl>(); for(CheckedExceptionImpl ce : method.getCheckedExceptions()){ checkedExceptions.put(ce.getBond().getTypeInfo().tagName, ce); } //If a non-"" soapAction is specified, wsa:action the SOAPAction String soapActionFromBinding = method.getBinding().getSOAPAction(); if(method.getInputAction() != null && soapActionFromBinding != null && !soapActionFromBinding.equals("") ) { this.soapAction = method.getInputAction(); } else { this.soapAction = soapActionFromBinding; } this.javaMethod = method; packetFactory = mcf; soapVersion = javaMethod.getBinding().getSOAPVersion(); {// prepare objects for creating messages List<ParameterImpl> rp = method.getRequestParameters(); BodyBuilder bodyBuilder = null; List<MessageFiller> fillers = new ArrayList<MessageFiller>(); for (ParameterImpl param : rp) { ValueGetter getter = getValueGetterFactory().get(param); switch(param.getInBinding().kind) { case BODY: if(param.isWrapperStyle()) { if(param.getParent().getBinding().isRpcLit()) bodyBuilder = new BodyBuilder.RpcLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); else bodyBuilder = new BodyBuilder.DocLit((WrapperParameter)param, soapVersion, getValueGetterFactory()); } else { bodyBuilder = new BodyBuilder.Bare(param, soapVersion, getter); } break; case HEADER: fillers.add(new MessageFiller.Header( param.getIndex(), param.getXMLBridge(), getter )); break; case ATTACHMENT: fillers.add(MessageFiller.AttachmentFiller.createAttachmentFiller(param, getter)); break; case UNBOUND: break; default: throw new AssertionError(); // impossible } } if(bodyBuilder==null) { // no parameter binds to body. we create an empty message switch(soapVersion) { case SOAP_11: bodyBuilder = BodyBuilder.EMPTY_SOAP11; break; case SOAP_12: bodyBuilder = BodyBuilder.EMPTY_SOAP12; break; default: throw new AssertionError(); } } this.bodyBuilder = bodyBuilder; this.inFillers = fillers.toArray(new MessageFiller[fillers.size()]); } this.isOneWay = method.getMEP().isOneWay(); responseBuilder = buildResponseBuilder(method, ValueSetterFactory.SYNC); }