i try to access my Fritzbox with soap and java, my first goal is to tell the fritzbox it should reconnect. The java programm dosen´t come up with an exception but the router dosen´t reconnect. I checked the tr64desc.xml if the soap stuff is wrong... but i can´t see the forest for the trees. Is the soap message the issue or the code itself?
This is my code:
public void reconnect() {
StringBuilder soapXML = new StringBuilder();
soapXML.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
soapXML.append("<s:Envelope s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">");
soapXML.append(" <s:Body>");
soapXML.append(" <u:ForceTermination xmlns:u=\"urn:dslforum-org:service:WANIPConnection:1\" />");
soapXML.append(" </s:Body>");
soapXML.append("</s:Envelope>");
Socket socket = null;
BufferedWriter bw = null;
try {
socket = new Socket("192.168.178.1", 49000);
bw = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream(), "UTF-8"));
bw.write("POST /upnp/control/wanipconnection1 HTTP/1.1");
bw.write("HOST: fritz.box:49000" + "\r\n");
bw.write("CONTENT-LENGTH: " + soapXML.toString().length() + "\r\n");
bw.write("CONTENT-TYPE: text/xml; charset=\"utf-8\"" + "\r\n");
bw.write("SOAPACTION: \"urn:dslforum-org:service:WANIPConnection:1#ForceTermination\"" + "\r\n");
bw.write("USER-AGENT: AVM UPnP/1.0 Client 1.0"+"\r\n");
bw.write("\r\n");
bw.write(soapXML.toString());
bw.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
if(bw!=null)
try {
bw.close();
} catch (IOException e) {}
if(socket!=null)
try {
socket.close();
} catch (IOException e) {}
}
}