Submit and vote on feature ideas.

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")

Options
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: 645 ✭✭✭
    edited May 2023
    Options

    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
    Options

    Yep, does the trick. Thanks JT

  • williammccusker
    williammccusker Posts: 645 ✭✭✭
    Options

    Great!

  • jefftuckerbofa
    jefftuckerbofa Posts: 234
    Options

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