Tomcat as Windows service
service.bat install <service_name>
sharing some tech problems and soln
service.bat install <service_name>
Posted by Sajjad at 11:52 pm 0 comments
HttpPost httppost = new HttpPost(SERVICE_EPR);
StringEntity se = new StringEntity(SOAPRequestXML,HTTP.UTF_8);
se.setContentType("text/xml");
httppost.setHeader("Content-Type","application/soap+xml;charset=UTF-8");
httppost.setEntity(se);
HttpClient httpclient = new DefaultHttpClient();
BasicHttpResponse httpResponse =
(BasicHttpResponse) httpclient.execute(httppost);
response.put("HTTPStatus",httpResponse.getStatusLine().toString());
Posted by Sajjad at 2:56 pm 0 comments
Posted by Sajjad at 4:11 am 0 comments