Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

POST /soavirt/api/v6/messageProxies - Does this support "http" (not just "https")

jefftuckerbofa
jefftuckerbofa Posts: 234

POST /soavirt/api/v6/messageProxies - Does this support "http" (not just "https")

serviceHost seems to be the only option and it defaults to "https"

Thanks,

JT

Comments

  • williammccusker
    williammccusker Posts: 673 ✭✭✭
    edited May 2023

    Hi,

    Yes, it does support "http" what is probably happening is that in the example payload it has SSL enabled in this section

    security": {
    "sslSettings": {
    "useSsl": {
    "enabled": true,

    To make the connection be 'http' either remove the security section or change enabled to false.

  • jefftuckerbofa
    jefftuckerbofa Posts: 234

    Yep, does the trick. Thanks JT

  • williammccusker
    williammccusker Posts: 673 ✭✭✭

    Great!

  • jefftuckerbofa
    jefftuckerbofa Posts: 234

    I had noticed that setting but didn't realize it was associated with the connection URLs. Makes sense now. JT