Unable to configure target server for an HTTPS endpoint.

I configured a Target Server by following the steps described here. But this approach does not seem to work for me as the requests are not reaching this endpoint. However I am able to use this approach to configure a target server with HTTP endpoint. Do we need to make any changes other than those which are mentioned in the documentation. Please suggest.

Thanks in advance!!

Solved Solved
0 2 1,299
1 ACCEPTED SOLUTION

@onkaar_singh

If its for one way ssl, then add SSL info. Refer sample configuration below:

<TargetServer name="TargetServer 1">

<IsEnabled>true</IsEnabled>

<Host>www.example.com</Host>

<Port>xxx</Port>

<SSLInfo>

<Ciphers/>

<ClientAuthEnabled>false</ClientAuthEnabled>

<Enabled>true</Enabled>

<IgnoreValidationErrors>false</IgnoreValidationErrors>

</SSLInfo>

</TargetServer>

Port information would be as per target. Let me know if this works.

View solution in original post

2 REPLIES 2

@onkaar_singh

If its for one way ssl, then add SSL info. Refer sample configuration below:

<TargetServer name="TargetServer 1">

<IsEnabled>true</IsEnabled>

<Host>www.example.com</Host>

<Port>xxx</Port>

<SSLInfo>

<Ciphers/>

<ClientAuthEnabled>false</ClientAuthEnabled>

<Enabled>true</Enabled>

<IgnoreValidationErrors>false</IgnoreValidationErrors>

</SSLInfo>

</TargetServer>

Port information would be as per target. Let me know if this works.

Thanks This Worked!!