I'm learning about mod_xml_curl. My application appears to be working but the fs_cli view is showing a lot of 404 errors. My app logs a request with no destination number, cannot fulfil it's request and returns a 404.
fs_cli shows that it's looking for configuration data, as near as I can tell from the log, but when I configured xml_curl.conf.xml I asked for only dialplan requests:
<configuration name="xml_curl.conf" description="cURL XML Gateway">
<bindings>
<binding name="dialplan">
<param name="timeout" value="10"/>
</binding>
</bindings>
</configuration>
This is an example error:
data: [hostname=park01§ion=directory&tag_name=domain&key_name=name&key_value=192.168.1.122&Event-Name=REQUEST_PARAMS&Core-UUID=f62f3a72-c1fe-4bee-9eb0-c1903b6a7621&FreeSWITCH-Hostname=park01&FreeSWITCH-Switchname=park01&FreeSWITCH-IPv4=192.168.1.122&FreeSWITCH-IPv6=%3A%3A1&Event-Date-Local=2025-07-26%2016%3A43%3A56&Event-Date-GMT=Sat,%2026%20Jul%202025%2023%3A43%3A56%20GMT&Event-Date-Timestamp=1753573436244255&Event-Calling-File=sofia_reg.c&Event-Calling-Function=sofia_reg_parse_auth&Event-Calling-Line-Number=3124&Event-Sequence=985&action=sip_auth&sip_profile=internal&sip_user_agent=FreeSWITCH-mod_sofia/1.10.12-release-1-a88d069d6f~64bit&sip_auth_username=led_trunk&sip_auth_realm=192.168.1.122&sip_auth_nonce=dcff8e95-d6b9-4af9-8a5d-b5bf026f56b0&sip_auth_uri=sip%3A192.168.1.122%3A5060%3Btransport%3Dudp&sip_contact_user=gw%2Bled_park01&sip_contact_host=192.168.1.10&sip_to_user=led_trunk&sip_to_host=192.168.1.122&sip_to_port=5060&sip_via_protocol=udp&sip_from_user=led_trunk&sip_from_host=192.168.1.122&sip_from_port=5060&sip_call_id=fbf7e28c-185b-4c26-8bd1-c94b34da796a&sip_request_host=192.168.1.122&sip_request_port=5060&sip_auth_qop=auth&sip_auth_cnonce=PI68ROUdEj6rr7gn68kebA&sip_auth_nc=00000001&sip_auth_response=bc12d37a21ef8d589b121ce58d482383&sip_auth_method=REGISTER&client_port=5060&key=id&user=led_trunk&domain=192.168.1.122&ip=192.168.1.10]
It looks like an authorizaton request on the sip trunk I have connecting two freeswitch instances.
Any help is appreciated. I'd like to service only dialplan requests from my app.