Lines Matching refs:envelope

76      /** Parses the SOAP envelope from the given parser */
575 SoapSerializationEnvelope envelope;
587 - envelope.writeObjectBody(writer, item);
588 + envelope.writeObjectBodyWithAttributes(writer, item);
1162 …* Set to true to add and ID and ROOT label to the envelope. Change to false for compatibility with…
1928 envelope.parse(xp);
1938 - protected byte[] createRequestData(SoapEnvelope envelope, String encoding) throws IOException {
1940 + protected byte[] createRequestData(SoapEnvelope envelope, String encoding)
1957 envelope.write(xw);
1958 - System.out.println("envelope.write");
1973 - protected byte[] createRequestData(SoapEnvelope envelope) throws IOException {
1974 + protected byte[] createRequestData(SoapEnvelope envelope)
1976 return createRequestData(envelope, null);
1996 - * Perform a soap call with a given namespace and the given envelope providing
2000 + * Perform a soap call with a given namespace and the given envelope
2008 + * @param envelope
2009 + * the envelope the contains the information for the call.
2017 + abstract public List call(String soapAction, SoapEnvelope envelope,
2021 + * Perform a soap call with a given namespace and the given envelope
2030 * @param envelope
2031 * the envelope the contains the information for the call.
2044 - abstract public List call(String targetNamespace, SoapEnvelope envelope, List headers)
2046 + abstract public List call(String soapAction, SoapEnvelope envelope,
2051 * Perform a soap call with a given namespace and the given envelope.
2056 * @param envelope
2057 * the envelope the contains the information for the call.
2059 - public void call(String targetNamespace, SoapEnvelope envelope) throws IOException,
2061 - call(targetNamespace, envelope, null);
2062 + public void call(String soapAction, SoapEnvelope envelope)
2064 + call(soapAction, envelope, null);
2225 * @param envelope
2226 * the envelope containing the information for the soap call.
2231 - public void call(String soapAction, SoapEnvelope envelope) throws IOException,
2234 + public void call(String soapAction, SoapEnvelope envelope)
2237 call(soapAction, envelope, null);
2240 + public List call(String soapAction, SoapEnvelope envelope, List headers)
2242 + return call(soapAction, envelope, headers, null);
2249 + * Perform a soap call with a given namespace and the given envelope providing
2257 * @param envelope
2258 - * the envelope containing the information for the soap call.
2259 + * the envelope the contains the information for the call.
2275 - public List call(String soapAction, SoapEnvelope envelope, List headers)
2277 + public List call(String soapAction, SoapEnvelope envelope, List headers, File outputFile)
2285 byte[] requestData = createRequestData(envelope, "UTF-8");
2305 - System.out.println("envelope:" + envelope);
2306 - if (envelope != null) {
2307 - if (envelope.version != SoapSerializationEnvelope.VER12) {
2310 + if (envelope.version != SoapSerializationEnvelope.VER12) {
2314 - if (envelope.version == SoapSerializationEnvelope.VER12) {
2319 + if (envelope.version == SoapSerializationEnvelope.VER12) {
2367 + sendData(requestData, connection,envelope);
2491 - if (envelope != null) {
2492 - parseResponse(envelope, is);
2495 + parseResponse(envelope, is,retHeaders);
2518 … protected void sendData(byte[] requestData, ServiceConnection connection, SoapEnvelope envelope)
2547 + protected void parseResponse(SoapEnvelope envelope, InputStream is,List returnedHeaders)
2550 + parseResponse(envelope, is);
2621 - public byte[] getRequestData(SoapEnvelope envelope, String encoding) {
2627 - return createRequestData(envelope, encoding);