Created
August 12, 2011 08:38
-
-
Save marharrUK/1141708 to your computer and use it in GitHub Desktop.
Transport KSOAP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Copyright (c) 2006, James Seigel, Calgary, AB., Canada | |
| * Copyright (c) 2003,2004, Stefan Haustein, Oberhausen, Rhld., Germany | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| * sell copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: | |
| * | |
| * The above copyright notice and this permission notice shall be included in | |
| * all copies or substantial portions of the Software. | |
| * | |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
| * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
| * IN THE SOFTWARE. | |
| */ | |
| package org.ksoap2.transport; | |
| import java.io.*; | |
| import org.ksoap2.*; | |
| import org.kxml2.io.*; | |
| import org.xmlpull.v1.*; | |
| /** | |
| * Abstract class which holds common methods and members that are used by the | |
| * transport layers. This class encapsulates the serialization and | |
| * deserialization of the soap messages, leaving the basic communication | |
| * routines to the subclasses. | |
| */ | |
| abstract public class Transport { | |
| protected String url; | |
| /** Set to true if debugging */ | |
| public boolean debug; | |
| /** String dump of request for debugging. */ | |
| public String requestDump; | |
| /** String dump of response for debugging */ | |
| public String responseDump; | |
| private String xmlVersionTag = ""; | |
| public Transport() { | |
| } | |
| public Transport(String url) { | |
| this.url = url; | |
| } | |
| /** | |
| * Sets up the parsing to hand over to the envelope to deserialize. | |
| */ | |
| protected void parseResponse(SoapEnvelope envelope, InputStream is) throws XmlPullParserException, IOException { | |
| XmlPullParser xp = new KXmlParser(); | |
| xp.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true); | |
| xp.setInput(is, null); | |
| envelope.parse(xp); | |
| } | |
| /** | |
| * Serializes the request. | |
| */ | |
| protected byte[] createRequestData(SoapEnvelope envelope) throws IOException { | |
| ByteArrayOutputStream bos = new ByteArrayOutputStream(); | |
| bos.write(xmlVersionTag.getBytes()); | |
| XmlSerializer xw = new KXmlSerializer(); | |
| xw.setOutput(bos, null); | |
| envelope.write(xw); | |
| xw.flush(); | |
| bos.write('\r'); | |
| bos.write('\n'); | |
| bos.flush(); | |
| return bos.toByteArray(); | |
| } | |
| /** | |
| * Set the target url. | |
| * | |
| * @param url | |
| * the target url. | |
| */ | |
| public void setUrl(String url) { | |
| this.url = url; | |
| } | |
| /** | |
| * Sets the version tag for the outgoing soap call. Example <?xml | |
| * version=\"1.0\" encoding=\"UTF-8\"?> | |
| * | |
| * @param tag | |
| * the xml string to set at the top of the soap message. | |
| */ | |
| public void setXmlVersionTag(String tag) { | |
| xmlVersionTag = tag; | |
| } | |
| /** | |
| * Attempts to reset the connection. | |
| */ | |
| public void reset() { | |
| } | |
| /** | |
| * Perform a soap call with a given namespace and the given envelope. | |
| * | |
| * @param targetNamespace | |
| * the namespace with which to perform the call in. | |
| * @param envelope | |
| * the envelope the contains the information for the call. | |
| */ | |
| abstract public void call(String targetNamespace, SoapEnvelope envelope) throws IOException, XmlPullParserException; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment