Get IPv4 URL
post
/management/weblogic/{version}/serverRuntime/getIPv4URL
The URL that clients use when connecting to this server using the specified protocol.
Note: The listen address and listen port for a given protocol are persisted in the domain's config.xml
file, however when a server instance is started, command-line options can override these persisted values. This getURL
method returns the URL values that are currently being used, not necessarily the values that are specified in config.xml
Request
Supported Media Types
- application/json
Path Parameters
-
version(required): string
The version of the WebLogic REST interface.
Header Parameters
-
X-Requested-By(required): string
The 'X-Requested-By' header is used to protect against Cross-Site Request Forgery (CSRF) attacks. The value is an arbitrary name such as 'MyClient'.
Must contain the following fields:
Root Schema : Arguments
Type:
object
Title:
Show Source
Arguments
-
protocol:
string
the desired protocol
Security
-
Admin: basic
Type:
basic
Description:A user in the Admin security role.
Response
Supported Media Types
- application/json
200 Response
Returns the following fields:
Root Schema : Return
Type:
object
Title:
Show Source
Return
-
return:
string
Returns the action's result.
Examples
Invoke the getIPv4URL action.
This example uses the POST method to invoke the getIPv4URL action.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ protocol: 'http' }" \ -X POST http://localhost:7001/management/weblogic/latest/serverRuntime/getIPv4URL
Example Response
HTTP/1.1 200 OK Response Body: { "return": "http:\//localhost:7001" }Back to Top