I am trying to use Ignite to store the table in cache using C++. We are using REST API for requesting the data. I have configured the xml like this
<property name="connectorConfiguration">
<bean class="org.apache.ignite.configuration.ConnectorConfiguration">
<property name="host" value="localhost"/>
<property name="port" value="8085"/>
</bean>
</property>
And send a request using curl
curl -X POST http://localhost:8085/ignite?cmd=version
But the response i got like this curl: (52) Empty reply from server .How can i cache the data using REST POST request?