org.apache.axiom.soap.SOAP11Constants Java Examples
The following examples show how to use
org.apache.axiom.soap.SOAP11Constants.
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: WSXACMLMessageReceiver.java From carbon-identity-framework with Apache License 2.0 | 6 votes |
private SOAPEnvelope createDefaultSOAPEnvelope(MessageContext inMsgCtx) { String soapNamespace = inMsgCtx.getEnvelope().getNamespace() .getNamespaceURI(); SOAPFactory soapFactory = null; if (soapNamespace.equals(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP11Factory(); } else if (soapNamespace .equals(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP12Factory(); } else { log.error("Unknown SOAP Envelope"); } if (soapFactory != null) { return soapFactory.getDefaultEnvelope(); } return null; }
Example #2
Source File: WSXACMLMessageReceiver.java From carbon-identity with Apache License 2.0 | 6 votes |
private SOAPEnvelope createDefaultSOAPEnvelope(MessageContext inMsgCtx) { String soapNamespace = inMsgCtx.getEnvelope().getNamespace() .getNamespaceURI(); SOAPFactory soapFactory = null; if (soapNamespace.equals(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP11Factory(); } else if (soapNamespace .equals(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP12Factory(); } else { log.error("Unknown SOAP Envelope"); } if (soapFactory != null) { return soapFactory.getDefaultEnvelope(); } return null; }
Example #3
Source File: DBDeployer.java From micro-integrator with Apache License 2.0 | 5 votes |
/** * Creates a AxisBinding and populates it with default SOAP 1.1 properties */ private AxisBinding createDefaultSOAP11Binding(String name, String interfaceName) { AxisBinding soap11Binding = new AxisBinding(); soap11Binding.setName(new QName(name + Java2WSDLConstants.BINDING_NAME_SUFFIX)); soap11Binding.setType(WSDL2Constants.URI_WSDL2_SOAP); soap11Binding.setProperty(WSDL2Constants.ATTR_WSOAP_PROTOCOL, WSDL2Constants.HTTP_PROTOCAL); soap11Binding.setProperty(WSDL2Constants.ATTR_WSOAP_VERSION, SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI); soap11Binding.setProperty(WSDL2Constants.INTERFACE_LOCAL_NAME, interfaceName); soap11Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE, httpLocationTable); soap11Binding.setProperty(WSDL2Constants.HTTP_LOCATION_TABLE_FOR_RESOURCE, httpLocationTableForResource); return soap11Binding; }
Example #4
Source File: EntitlementMediator.java From micro-integrator with Apache License 2.0 | 5 votes |
private SOAPEnvelope createDefaultSOAPEnvelope(MessageContext inMsgCtx) { String soapNamespace = inMsgCtx.getEnvelope().getNamespace().getNamespaceURI(); SOAPFactory soapFactory = null; if (soapNamespace.equals(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP11Factory(); } else if (soapNamespace.equals(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP12Factory(); } else { log.error("Unknown SOAP Envelope"); } return soapFactory.getDefaultEnvelope(); }
Example #5
Source File: DataServiceCallMediator.java From micro-integrator with Apache License 2.0 | 5 votes |
private SOAPEnvelope createDefaultSOAPEnvelope(MessageContext inMsgCtx) { String soapNamespace = inMsgCtx.getEnvelope().getNamespace().getNamespaceURI(); SOAPFactory soapFactory = null; if (soapNamespace.equals(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP11Factory(); } else if (soapNamespace.equals(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI)) { soapFactory = OMAbstractFactory.getSOAP12Factory(); } else { log.error("Unknown SOAP Envelope"); } return soapFactory.getDefaultEnvelope(); }
Example #6
Source File: TestMessageContext.java From micro-integrator with Apache License 2.0 | 4 votes |
public boolean isSOAP11() { return envelope.getNamespace().getNamespaceURI().equals( SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI); }
Example #7
Source File: RequestExecutor.java From carbon-identity with Apache License 2.0 | 4 votes |
private void callService(OMElement messagePayload) throws AxisFault { ServiceClient client = new ServiceClient(WorkflowImplServiceDataHolder.getInstance() .getConfigurationContextService() .getClientConfigContext(), null); Options options = new Options(); options.setAction(WFImplConstant.DEFAULT_APPROVAL_BPEL_SOAP_ACTION); String tenantDomain = CarbonContext.getThreadLocalCarbonContext().getTenantDomain(); String host = bpsProfile.getWorkerHostURL(); String serviceName = StringUtils.deleteWhitespace(WorkflowManagementUtil .getParameter(parameterList, WFConstant .ParameterName.WORKFLOW_NAME, WFConstant .ParameterHolder.WORKFLOW_IMPL) .getParamValue()); serviceName = StringUtils.deleteWhitespace(serviceName); if (host.endsWith("/")) { host = host.substring(0,host.lastIndexOf("/")); } String endpoint; if (tenantDomain != null && !tenantDomain.equals(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME)) { endpoint = host + "/t/" + tenantDomain + "/" + serviceName + WFConstant.TemplateConstants.SERVICE_SUFFIX; } else { endpoint = host + "/" + serviceName + WFConstant.TemplateConstants.SERVICE_SUFFIX; } options.setTo(new EndpointReference(endpoint)); options.setProperty(org.apache.axis2.Constants.Configuration.MESSAGE_TYPE, SOAP11Constants .SOAP_11_CONTENT_TYPE); HttpTransportProperties.Authenticator auth = new HttpTransportProperties.Authenticator(); auth.setUsername(bpsProfile.getUsername()); auth.setPassword(String.valueOf(bpsProfile.getPassword())); auth.setPreemptiveAuthentication(true); List<String> authSchemes = new ArrayList<>(); authSchemes.add(HttpTransportProperties.Authenticator.BASIC); auth.setAuthSchemes(authSchemes); options.setProperty(HTTPConstants.AUTHENTICATE, auth); options.setManageSession(true); client.setOptions(options); client.fireAndForget(messagePayload); }