I would like to know if there is some way of setting a domain root as the endpoint URL in the "ws.ident.url" entry, so i will be able to set a single security identifier to be used in all services of that domain.
To clarify, today i use multiple web services of a single domain, so my FGLPROFILE is like:
ws.service1.url = "https://mdfe.sefaz.rs.gov.br/ws/MDFerecepcao/MDFeRecepcao.asmx"
ws.service1.security = "certificate"
ws.service2.url = "https://mdfe.sefaz.rs.gov.br/ws/MDFeRetRecepcao/MDFeRetRecepcao.asmx"
ws.service2.security = "certificate"
ws.service3.url = "https://mdfe.sefaz.rs.gov.br/ws/MDFeRecepcaoEvento/MDFeRecepcaoEvento.asmx"
ws.service3.security = "certificate"
...and for each new service i have do make a new entry in FGLPROFILE.
Isn't there a way to make my configuration like this:
ws.service1.url = "https://mdfe.sefaz.rs.gov.br/ws/*"
ws.service1.security = "certificate"
...so all services hosted in the domain "
https://mdfe.sefaz.rs.gov.br/ws/" will use the same default certificate.
Thanks for your attention.