google URL change - java
When I call this in java :
URL url = new URL("http://www.google.com/finance/getprices?q=MSFT");
URLConnection goog = url.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(goog.getInputStream()));
I get this as exception :
java.io.IOException: Server returned HTTP response code: 503 for URL: http://www.google.com/sorry/?continue=http://www.google.com/finance/getprices%3Fq%3MSFTO%26
I don't have converted URL in my function because its generated automatically when my URL is called, My original URL is string after "continue=", how can I get it back from this URL?
EDIT :
Because I am calling this page again and again it generates this URL http://www.google.com/sorry/?continue=http://www.google.com/finance/getprices%3Fq%3MSFTO%26 and it says :
Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot.
If I copy paste URL after continue= it gives me actual content of page.
503 is a response code which tells service is down or unavailabe
wiki link
According to wikipedia
503 Service Unavailable
The server is currently unavailable (because it is overloaded or down for maintenance).[2] Generally, this is a temporary state.
I have tried your code and this is woriking fine (giving no exception)
URL url = new URL("http://www.google.com/finance/getprices?q=MSFT");
URLConnection goog = url.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(goog.getInputStream()));
String temp;
while((temp = in.readLine())!= null){
System.out.println(temp);
}
}catch(Exception ex){
ex.printStackTrace();
}
and its return me
EXCHANGE%3DNASDAQ
MARKET_OPEN_MINUTE=570
MARKET_CLOSE_MINUTE=960
INTERVAL=86400
COLUMNS=DATE,CLOSE,HIGH,LOW,OPEN,VOLUME
DATA=
TIMEZONE_OFFSET=-240
a1370289600,35.59,35.63,34.83,34.92,51256272
1,34.99,35.74,34.771,35.62,65538438
2,34.78,34.89,34.43,34.6,46032657
3,34.96,35.11,34.49,34.84,37627133
4,35.67,35.78,35.06,35.25,40762249
7,35.47,35.65,35.14,35.51,35995223
8,34.84,35.18,34.68,35.05,39350316
9,35,35.27,34.85,35.14,37373032
10,34.715,35.02,34.59,34.99,45654803
11,34.4,34.6901,34.25,34.55,53116371
14,35,35.16,34.63,34.69,49672492
15,34.98,35.17,34.895,34.97,28622929
16,34.59,35.09,34.59,34.96,30820208
17,33.49,34.33,33.37,34.26,54496758
18,33.265,33.73,33.05,33.66,85338395
21,33.715,34.2,32.57,32.94,56113708
22,33.67,34.38,33.46,34.08,44073348
23,34.35,34.48,33.8875,34.12,48667834
24,34.62,34.78,34.5,34.52,28993542
25,34.545,34.79,34.34,34.38,65548196
28,34.36,34.99,34.33,34.75,31064000
So probably problem is that service is not available temporarily in your area.
Related
HTTPS - Is Web Request and response are got Encrypted?
Am making webservice calls to HTTPS server from an android application. Below is the code snippet, with which am able to make web service calls successfully and getting response. My Question is, do we need to perform any additional step to encrypt data before making call to HTTPS server? Because, from android profiler am able to see all my Web Requests in plain text format. My understanding is that request will gets encrypted before making HTTPS call. public static WebServiceResp makeWebServiceCall(String XML, String urlPath) throws IOException{ //Code to make a web service HTTP request String responseString = ""; String outputString = ""; String wsURL = urlPath; URL url = new URL(wsURL); URLConnection connection = url.openConnection(); HttpsURLConnection httpConn = (HttpsURLConnection)connection; ByteArrayOutputStream bout = new ByteArrayOutputStream(); //System.out.println(XML); byte[] buffer = new byte[XML.length()]; buffer = XML.getBytes(); bout.write(buffer); byte[] b = bout.toByteArray(); // Set the appropriate HTTP parameters. httpConn.setRequestProperty("Content-Length", String.valueOf(b.length)); httpConn.setRequestProperty("Content-Type", "text/xml; charset=utf-8"); httpConn.setRequestMethod("POST"); httpConn.setRequestProperty("Cache-Control", "no-cache"); httpConn.setDoOutput(true); httpConn.setDoInput(true); OutputStream out = httpConn.getOutputStream(); //Write the content of the request to the outputstream of the HTTP Connection. out.write(b); out.close(); //Ready with sending the request. //Check the status int status = httpConn.getResponseCode(); Log.d(TAG, "makeWebServiceCall: "+"Processing Status: "+status); BufferedReader in; if (status <= 200) { //Read the response. Log.d(TAG, "makeWebServiceCall: Getting Input Stream"); InputStreamReader isr = new InputStreamReader(httpConn.getInputStream()); in = new BufferedReader(isr); }else{ //Read the response. Log.d(TAG, "makeWebServiceCall: Getting Error Stream"); InputStreamReader isr = new InputStreamReader(httpConn.getErrorStream()); in = new BufferedReader(isr); } //Write the SOAP message response to a String. while ((responseString = in.readLine()) != null) { outputString = outputString + responseString; } Log.d(TAG, "makeWebServiceCall: WebServiceResponse " + outputString); //Parse the String output to a org.w3c.dom.Document and be able to reach every node with the org.w3c.dom API. Document document = Utils.parseXmlFile(outputString); //NodeList nodeLst = document.getElementsByTagName("GetWeatherResult"); // String weatherResult = nodeLst.item(0).getTextContent(); //System.out.println("Weather: " + weatherResult); //Write the SOAP message formatted to the console. WebServiceResp webServiceResp = new WebServiceResp(); webServiceResp.setDocument(document); webServiceResp.setStatus(status); return webServiceResp; }
No. If you're sending it to an https website, the encryption is done as part of the protocol. You don't need to do any additional work.
No. The encryption that you see is on the network layer. The client which initiates the https call see what was sent and what was received. That is how https works. When you look at chrome browser's network tab, you see what was sent and what was received. Now this is not a security problem, https is more about you doing things which make its difficult for anyone between the network to eavesdrop your data. Now if you still want an additional level of security you can use certificate pinning https://www.owasp.org/index.php/Certificate_and_Public_Key_Pinning https://medium.com/#appmattus/android-security-ssl-pinning-1db8acb6621e How can you add to network_security_config from MainActivity So in this technique you basically say that the certificate hash that you expected is to have this content. And then if someone uses a trusted proxy with trusted CAs on the system, even after generating a valid certificate for the given domain the connections will not be established.
HTTPS is transparent to your application, all of the magic happens between Transport Layer(so it calls 'Transport Layer Security'), you may imagine encrypted telegrams in the old days, generals tell telegrapher messages in plain text, and telegrapher send them in encrypted form(maybe use some kind of codebook), anyone who didn't have the same codebook can't decrypt the message easily, and anyone who uses telegrams didn't care about the codebook(or even known about it, except those telegraphers on both side of the 'Transport Layer').
The encryption/decryption is done by built-in network client module provided by OS. So you needn't worry about it. You can view plain texts with some client tools as they know exactly what they are sending/receiving. E.g. chrome developer tool. (Actually they don't care about encryption/decryption either).
How to fix dialogflow authentication issue
I have a dialogflow project that I'm trying to access from Java with a rest call. It is giving me an authentication issue. I have followed all online instructions (and many forum suggestions) to no avail. I have tried generating the key json, as per the instructions here: https://dialogflow.com/docs/reference/v2-auth-setup and setting my environment variable as described, but nothing seems to work. I have checked my projectID, and am running off the same machine with the environment variable, and have double, triple and quadruple checked it's name and location, but I still get the following error: java.net.HttpRetryException: cannot retry due to server authentication, in streaming mode Here is my code (though it's a REST call, so I don't know if it's so relevant): String url = https://dialogflow.googleapis.com/v2/projects/MYPROJECT/agent/sessions/SESSION_NUM:detectIntent URL url = new URL(full_url); String inText = "Hello World"; String outText = ""; HttpURLConnection con = (HttpURLConnection) url.openConnection(); try { con.setDoOutput(true); con.setRequestMethod("POST"); // set body of http post Map<String,String> arguments = new HashMap<>(); JSONObject inTextJsn = new JSONObject(); inTextJsn.append("text",inText); inTextJsn.append("languageCode","en"); JSONObject fieldJsn = new JSONObject(); fieldJsn.append("text", inTextJsn); arguments.put("queryInput", fieldJsn.toString()); StringJoiner sj = new StringJoiner("&"); for(Map.Entry<String,String> entry : arguments.entrySet()) sj.add(URLEncoder.encode(entry.getKey(), "UTF-8") + "=" + URLEncoder.encode(entry.getValue(), "UTF-8")); // post http post as bytes byte[] bytes_out = sj.toString().getBytes(StandardCharsets.UTF_8); con.setFixedLengthStreamingMode(bytes_out.length); con.connect(); try (OutputStream os = con.getOutputStream()) { os.write(bytes_out); } BufferedReader reader = new BufferedReader(new InputStreamReader(con.getInputStream(), "UTF-8")); // read all lines to a string String line; String response = ""; while ((line = reader.readLine()) != null) { response += line; } JSONObject responseJsn = new JSONObject(response); outText = responseJsn.get("fulfillmentText").toString(); } catch (Exception e) { System.err.println(e); } finally { con.disconnect(); } return restResponse; The gist of the code is to simply send a message ("Hello World!") to my dialogflow, and get back my agent's response (the code may have bugs - it's a bit hard to test when I can't get passed this authentication issue, so please help with the authentication, not code bugs). Thanks all!
The directions at that page assume you're going to use the gcloud program to generate a currently valid bearer token, which is then sent along with the HTTP headers. That page illustrates Your code doesn't seem to be generating an Authorization HTTP header at all, which is why you're getting the error you do. Since you're using Java, you should look at the google-auth-library-java library, which will give you the tools to generate the token you need to provide in the Authorization header. You may also wish to check out the google-cloud-java library. This contains Java classes to directly perform operations against Dialogflow instead of coding the REST/HTTP calls yourself. (However, it is still at an Alpha level for Dialogflow, so may not be stable or forwards compatible.)
HttpURLConnection FileNotFoundException on large request properties
I'm using HttpURLConnection to send JSON data from an Android Application to my Tomcat Server. The POST works fine with small sized JSONs. On bigger data sets it fails with a FileNotFoundException. What can it be? Here's the code: try { URL url = new URL(urlIn); strOut = ""; huc = (HttpURLConnection) url.openConnection(); huc.setRequestProperty("Connection", "Close"); huc.setRequestMethod("POST"); huc.setRequestProperty("User", userId); huc.setRequestProperty("Action", action); huc.setRequestProperty("JSON", jsonData); huc.setConnectTimeout(10000); in = new BufferedReader(new InputStreamReader(huc.getInputStream())); while ((inputLine = in.readLine()) != null){ if (strOut.equalsIgnoreCase("")){ strOut = inputLine; } else { strOut = strOut + inputLine; } } } catch (Exception e) { strOut = ""; e.printStackTrace(); } When jsonData get to a certain size (arround 10000 chars), the POST fails with the error mentioned. The content of the JSON does not have any special character. Thanks in advance. Best regards, Federico.
HTTPUrlConnection throws a FileNotFoundException if the server responds with a 404 response code, so the reason why this happens seems to be located on the server side rather than the client side. Most likely the server is configured to accept request headers up to a particular length and will return an error if that size is exceeded. A short Google-search brought up a couple of results, sizes of 16 KB are mentioned but shorter values are also reasonable. As I mentioned in my comment to your question, you should change your process to receive the JSON-data (and the other values for User and Action as well BTW) as part of the request body, e.g. as url-encoded query string or as multipart formdata. Both ways are supported by HTTP client libraries you can use or are easily built manually.
After lots of reading and trying I gave up with configuring Tomcat to accept larger headers. So I convinced the team in charge of the Tomcat app to make a servlet that is able to receive this data in the body, just as Lothar suggested. Thanks!
java and php get request
i want to make an application which is based on a php page, sending to it parameters to obtain data from the remote db through the php page. I will use jsons, but my question is: assumed i use this code to send request: URL url = new URL("http://www.francescorizzi.altervista.org/Main.php?Request=Login&UserName=mario&Password=lol"); URLConnection conn = url.openConnection(); // Get the response BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream())); String line; while ((line = rd.readLine()) != null) { System.out.println(line); } Should i recreate the url object, conn, and rd at each new request? or is there a more efficient way to do this? Please note: I'm new to http handling through java.
since it is an http request and you retrieving data from that particular url, there is a need to recreate the object because the site may get updated later. so creating new object again will dispose the previous object reference and also close connection after retrieving data.
Send a POST to a HTTPS - Logic Issue
Anyone knows why i get this error. I am trying to send a POST request, and here's the error message that i get. Server response: Error while dispatching hrxml [ Server was unable to process request. --> Procedure or function 'sp__LogMessage' expects parameter '#pi_ClientID', which was not supplied. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at DispatchService.HRISMessageRouter.MessageRouter.Route(String HRXML) at DispatchService.DispatchMessage.Dispatch(String HRXML)] My Code : URL link = new URL("https://example.com/example.asp"); HttpsURLConnection com = (HttpsURLConnection) link.openConnection(); String l; con.setRequestMethod("POST"); con.setDoInput(true); con.setDoOutput(true); con.setRequestProperty("name", "rrrrr"); con.setRequestProperty("pwd", "ffff"); OutputStream os = con.getOutputStream(); os.flush(); InputStream is = con.getInputStream(); BufferedReader rd = new BufferedReader(new InputStreamReader(is)); StringBuffer r = new StringBuffer(); while((l = rd.readLine()) != null) { r.append(l); r.append('\r'); } rd.close(); System.out.println("out "+ r.toString()); I have tried debugging the code etc, but still unable to find a possible reason to why this hapend . Can anyone help me to figure out the reason and a possible solution for this issue ?
The error message is: Server was unable to process request. --> Procedure or function 'sp__LogMessage' expects parameter '#pi_ClientID', which was not supplied. This looks like a SQL Stored Procedure on the server. Check to make sure that a client ID is being supplied to it.
Judging from the stacktrace: Your application is talking to a SOAP service The SOAP service is expecting an (XML encoded) request which includes a parameter that doesn't exist. But this doesn't mesh with what you client code is doing. In fact, you are sending a POST request with parameters, and that will turn into a request body which is probably encoded as application/x-www-form-urlencoded ... not XML. That ain't going to work.