question

Upvotes
Accepted
588 14 21 19

Proxy server configuration for TRKD API apps in Java platform

I need to configure my proxy server for a Java application for a TRKD application. Can you show me the best way how? Specifically, how I can set up for HTTP and HTTPS traffic?

rkd-apirkdproxyhttp
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
488 16 20 29

For HTTP Traffic:

http.proxyHost (default: <none>)

The host name, or address, of the proxy server

http.proxyPort (default: 80) The port number of the proxy server.

http.nonProxyHosts (default: localhost|127.*|[::1])

Indicates the hosts that should be accessed without going through the proxy. Typically this defines internal hosts. The value of this property is a list of hosts, separated by the '|' character. In addition the wildcard character '*' can be used for pattern matching. For example -Dhttp.nonProxyHosts=”*.foo.com|localhost” will indicate that every hosts in the foo.com domain and the localhost should be accessed directly even if a proxy server is specified.

For HTTPS Traffic:

https.proxyHost(default: <none>)

The host name, or address, of the proxy server

https.proxyPort (default: 443)

The port number of the proxy server.

Note: The HTTPS protocol handler will use the same nonProxyHosts property as the HTTP protocol.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi,

The same I've tried and it is not working.

It is loading for a long time and always throwing error below mentioned.

2 counts of InaccessibleWSDLException

Please help me on this

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.