Para ello he utilizado la libreria commons-httpclient-2.0.2.
Código PHP:
HttpClient client = new HttpClient();
PostMethod method = new PostMethod(Q70ListenerUtils
.getApplicationProperty("URL_NOTIFICACIONES_PENDIENTES"));
//crear xml de data
String strData=fncGetData(contexto);
//crear firma
String strSignature=fncGetFirma(strData.getBytes());
method.addParameter("signed_security_data",strData);
method.addParameter("signature",strSignature);
method.addParameter("fileName", "");
System.out.println("antes llamar");
System.out.println(Q70ListenerUtils
.getApplicationProperty("URL_NOTIFICACIONES_PENDIENTES"));
System.out.println(strData);
System.out.println(strSignature);
client.executeMethod(method);
System.out.println("RESPUESTA:" + method.getResponseBodyAsString());
response.getOutputStream().write(method.getResponseBody());
He intentado utilizar el
Código PHP:
response.sendRedirect(Q70ListenerUtils.getApplicationProperty("URL_NOTIFICACIONES_PENDIENTES"));
saludos