I send data over post request to path which mount to:
public class AJAXPostPort extends ByteArrayResource implements IResource {
...
@Override
protected byte[] getData(Attributes attributes) {
attributes.getRequest().getPostParameters(); <- EMPTY
...
}
...
}
and can't get it :(. Request from client side is correct and catching from PHP.
Could you help me? how to catch post request from wicket module?
It was easy: