HttpResponseException 405 Method Not Allowed when updating Business Card in Peppol Directory #495
Answered
by
phax
nabil-mokhtar
asked this question in
Q&A
|
Issue Description:
Our Peppol Directory configuration is currently using the following target URL: |
Answered by
phax
Aug 6, 2026
Replies: 2 comments 11 replies
|
Remove the |
0 replies
|
updated the Directory URL and still the same error : |
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Thanks for the follow-up — I found the actual cause, and it wasn't the missing property.
phoss-SMP creates the Directory client once at startup and keeps it in memory. When you change
the Directory URL in the UI, the new value is stored correctly in the database — but on the SQL
backend the running instance was not told about the change, so it kept talking to the old URL
(the one with
/public), which is why you still got the 405.Adding the property to
application.propertiesmade you restart the container, and that restartpicked up the corrected URL. So the restart fixed it, not the property.
This is fixed for v8.1.8 — changing the SMP settings now takes effect immediately, without a
res…