Http Transport.
A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation..
Here is the list of declaration for mule-transport-http. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-http</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for mule-transport-http is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The mule-transport-http-1.3 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-codec 1.3 The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities. | 348 |
Http | commons-httpclient 3.0.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 77 |
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
The following table lists the most popular artifacts which are depending on mule-transport-http-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | mule-module-client 1.3 MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers. | 7 |
The following packages are defined in the mule-transport-http-1.3.jar
org.mule.providers.http org.mule.providers.http.filters org.mule.providers.http.jetty org.mule.providers.http.servlet org.mule.providers.http.transformers
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>mule-transports</artifactId> <groupId>org.mule.transports</groupId> <version>1.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mule-transport-http</artifactId> <name>Http Transport</name> <version>1.3</version> <description>A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation.</description> <dependencies> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-tcp</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>jetty</groupId> <artifactId>org.mortbay.jetty</artifactId> <version>5.1.10</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-servlet_2.4_spec</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>