Skip to content

Commit ab51a74

Browse files
author
Sean Osterberg
committed
2 parents ee7bc61 + 041531b commit ab51a74

File tree

7 files changed

+124
-115
lines changed

7 files changed

+124
-115
lines changed

index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Welcome to the new MuleSoft documentation site. The following pages help you sta
99
1010
== Making a Contribution
1111

12-
MuleSoft welcomes community contributions to our documentation! To make a contribution, simply click any page’s "Edit on GitHub" link, which takes you to the source page on GitHub. To provide your change as a Git pull request, *first* accept our contributor’s agreement so that we can acknowledge your contribution. The repository’s link:https://github.com/mulesoft/mulesoft-docs/blob/master/README.adoc[readme file] provides more information about how you can make a positive difference in improving MuleSoft documentation, and be recognized for your contribution.
12+
MuleSoft welcomes community contributions to our documentation! To make a contribution, simply click any page’s "Edit on GitHub" link, which takes you to the source page on GitHub. To provide your change as a Git pull request, *first* accept our link:http://www.mulesoft.org/legal/contributor-agreement.html[contributor’s agreement] so that we can acknowledge your contribution. The repository’s link:https://github.com/mulesoft/mulesoft-docs/blob/master/README.adoc[readme file] provides more information about how you can make a positive difference in improving MuleSoft documentation, and be recognized for your contribution.

mule-agent/v/1.1.1/index.adoc

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
= The Mule Agent
22
:keywords: agent, mule, esb, servers, monitor, notifications, external systems, third party, get status, metrics
33

4-
*_Enterprise Edition_*
5-
6-
*_Mule 3.7.0_*
7-
8-
*_Agent version 1.1.0_*
4+
*_Enterprise Edition_*, *_Mule 3.7.0_*
95

106
The Mule agent is a plugin extension for Mule which exposes the Mule API. Using the Mule agent, you can monitor and control your Mule ESB servers by calling APIs from external systems, and/or have Mule publish its own data to external systems. The agent has many features, including:
117

@@ -23,18 +19,14 @@ Additionally, MuleSoft provides several open source agent modules. These are pro
2319
* https://github.com/mulesoft/mule-agent-modules[Agent modules (general)]
2420
* https://github.com/mulesoft/mule-agent-modules/tree/master/mule-agent-monitoring-publishers[JMX publisher modules]
2521
26-
[cols=",",]
27-
|===
28-
|image:information.png[information] |The Mule agent is only available for Mule Enterprise Edition (EE). Currently, the Mule agent supports Mule 3.6.0 or later.
29-
30-
|===
31-
22+
[NOTE]
23+
The Mule agent is only available for Mule Enterprise Edition (EE). Currently, the Mule agent supports Mule 3.6.0 or later.
3224

3325
== Assumptions
3426

3527
The pages listed below assume that you have the current version of Mule Enterprise already installed. Download it from the http://www.mulesoft.com/support-login[customer portal] if you need to upgrade to this version.
3628

37-
Additionally, it is assumed that your enterprise license is current. Please see http://www.mulesoft.org/documentation/display/current/Installing+an+Enterprise+License[Installing an Enterprise License] for information on obtaining and installing an enterprise license.
29+
Additionally, it is assumed that your enterprise license is current. Please see link:mule-user-guide/v/3.7/installing-an-enterprise-license[Installing an Enterprise License] for information on obtaining and installing an enterprise license.
3830

3931
== Mule Agent Documentation Pages
4032

mule-user-guide/v/3.7/http-connector.adoc

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,36 +42,48 @@ When writing Mule projects in XML, the HTTP Connector can work in one of two way
4242
4343
To instance the connector as an HTTP Listener Connector, add the following XML tag at the start of a flow:
4444
45-
`<``http:listener` `config-ref``=``"HTTP_Listener_Configuration"` `path``=``"/"``/>`
45+
[source,xml]
46+
----
47+
<http:listener config-ref="HTTP_Listener_Configuration" path="/" />
48+
----
4649

4750
This element must reference a global configuration element of the following type:
4851

49-
`<http:listener-config` `name``=``"HTTP_Listener_Configuration"` `host``=``"localhost"` `port``=``"8081"``/>`
52+
[source,xml]
53+
----
54+
<http:listener-config name="HTTP_Listener_Configuration" host="localhost" port="8081" />
55+
----
5056

5157
To instance the connector as an HTTP Listener Connector, add the following XML tag in any part of a flow:
5258

53-
 `<``http:request` `config-ref``=``"HTTP_Request_Configuration"` `path``=``"/"` `method``=``"GET"``/>`
59+
[source,xml]
60+
----
61+
<http:request config-ref="HTTP_Request_Configuration" path="/" method="GET" />
62+
----
5463

5564
This element must reference a global configuration element of the following type:
5665

5766

58-
[source,xml, linenums]
67+
[source,xml]
5968
----
6069
<http:request-config name="HTTP_Request_Configuration" host="example.com" port="8081"/>
6170
----
6271

6372

6473
== See Also
6574

66-
* See a link:/developer.mulesoft.com/docs/display/current/HTTP+Connector+Reference[full Reference] of the available XML configurable options in this connector
75+
* See the link:/mule-user-guide/v/3.7/http-connector-reference[full Reference] for the available XML configurable options in this connector.
6776
=======
68-
`<``http:request-config` `name``=``"HTTP_Request_Configuration"` `host``=``"example.com"` `port``=``"8081"``/>`
6977
78+
[source,xml]
79+
----
80+
<http:request-config name="HTTP_Request_Configuration" host="example.com" port="8081" />
81+
----
7082
....
7183
------
7284
7385
[TIP]
74-
To migrate a project that users instances of the old http://www.mulesoft.org/documentation/display/current/HTTP+Transport+Reference[HTTP endpoint-based Connector] to the new HTTP operation-based Connector, see link:/mule-user-guide/v/3.7/migrating-to-the-new-http-connector[Migrating to the New HTTP Connector]. The old HTTP endpoint-based Connector still does work with Mule 3.6 Runtime, but it's deprecated and will be eventually removed.
86+
To migrate a project that uses instances of the old link:/mule-user-guide/v/3.7/http-transport-reference[HTTP endpoint-based connector] to the new HTTP operation-based connector, see link:/mule-user-guide/v/3.7/migrating-to-the-new-http-connector[Migrating to the New HTTP Connector]. The old HTTP endpoint-based Connector still works with Mule 3.6 Runtime, but it's deprecated and will eventually be removed.
7587
7688
[TIP]
7789
You can edit the log4j2 configuration file to make the logging of the HTTP connector's activity a lot more verbose, if you need to. See link:/mule-user-guide/v/3.7/logging-in-mule[Logging in Mule] for instructions.

0 commit comments

Comments
 (0)