com.sun.xml.internal.ws.api.message.MessageContextFactory Java Examples
The following examples show how to use
com.sun.xml.internal.ws.api.message.MessageContextFactory.
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: TieHandler.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #2
Source File: DatabindingImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); Object facProp = config.properties().get("com.sun.xml.internal.ws.api.message.MessageContextFactory"); packetFactory = (facProp != null && facProp instanceof MessageContextFactory)? (MessageContextFactory)facProp : new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #3
Source File: TieHandler.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #4
Source File: TieHandler.java From hottub with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #5
Source File: DatabindingImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #6
Source File: TieHandler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #7
Source File: DatabindingImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #8
Source File: DatabindingImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #9
Source File: TieHandler.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #10
Source File: DatabindingImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #11
Source File: DatabindingImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #12
Source File: TieHandler.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #13
Source File: TieHandler.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #14
Source File: DatabindingImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #15
Source File: DatabindingImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public DatabindingImpl(DatabindingProviderImpl p, DatabindingConfig config) { RuntimeModeler modeler = new RuntimeModeler(config); modeler.setClassLoader(config.getClassLoader()); seiModel = modeler.buildRuntimeModel(); WSDLPort wsdlport = config.getWsdlPort(); packetFactory = new MessageContextFactory(seiModel.getWSBinding().getFeatures()); clientConfig = isClientConfig(config); if (clientConfig) { initStubHandlers(); } seiModel.setDatabinding(this); if (wsdlport != null) { freeze(wsdlport); } if (operationDispatcher == null) { operationDispatcherNoWsdl = new OperationDispatcher(null, seiModel.getWSBinding(), seiModel); } // if(!clientConfig) { for (JavaMethodImpl jm : seiModel.getJavaMethods()) { if (!jm.isAsync()) { TieHandler th = new TieHandler(jm, seiModel.getWSBinding(), packetFactory); wsdlOpMap.put(jm, th); tieHandlers.put(th.getMethod(), th); } } // } }
Example #16
Source File: TieHandler.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public TieHandler(JavaMethodImpl method, WSBinding binding, MessageContextFactory mcf) { this.soapVersion = binding.getSOAPVersion(); this.method = method.getMethod(); this.javaMethodModel = method; argumentsBuilder = createArgumentsBuilder(); List<MessageFiller> fillers = new ArrayList<MessageFiller>(); bodyBuilder = createResponseMessageBuilder(fillers); this.outFillers = fillers.toArray(new MessageFiller[fillers.size()]); this.isOneWay = method.getMEP().isOneWay(); this.noOfArgs = this.method.getParameterTypes().length; packetFactory = mcf; }
Example #17
Source File: DatabindingImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #18
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); }
Example #19
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 #20
Source File: DatabindingImpl.java From hottub with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #21
Source File: StubHandler.java From openjdk-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); }
Example #22
Source File: StubHandler.java From hottub 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 #23
Source File: DatabindingImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #24
Source File: DatabindingImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #25
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 #26
Source File: DatabindingImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #27
Source File: StubHandler.java From openjdk-jdk8u-backup 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 #28
Source File: DatabindingImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }
Example #29
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 #30
Source File: DatabindingImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
@Override public MessageContextFactory getMessageContextFactory() { return packetFactory; }