Java Web Hosting Questions:
Question #1:
Hi everyone,
I have two questions for every of you.
First, what do you guys think is the best coverall IDE? I like composition Java, XHTML, PHP, Javascript, CSS, C , JSP, etc.. I would favour if it had the Java and C compilers built-in as tools if possible. It would also be pleasant if it had syntax hilighting for all of the above.
Second, what do you conceive is the prizewinning web hosting company for a developer not a designer for things same Tomcat, Apache, phpMyAdmin, and stuff same that?
Thanks for your opinions!!!
Question #2:
What are whatever good FREE scheme hosting websites with FTP that are easy to manage and let you upload binary things at once either finished Java or connatural FTP?
Question #3:
I hit tried T35 and that's about the exclusive digit I undergo that lets you upload files via the Java upload instead of uploading them digit by digit and it attractive forever. Is there some other web hosting websites that I could ingest to upload multiple files?
Question #4:
99.9 % uptime - is it a true statement ?
i need a reliable java hosting consort for sacred hosting , which shows occurrence aggregation same sound , come in website for visitors
Please recommend , if you know any
Question #5:
same if someone makes a trojan could they cypher it in a way that for the "pPublisher" it says something like Microsoft Corporation? I don't see why it would be impossible, but I don't know so I figured I'd ask. The only reason I'm intellection most this is because I myself fresh got rid of a Trojan virus. it was unseeable in my Java files apparently. lol and right after I get rid of it they have the cheek to verify me newborn java updates are available. HA! anyways, I was meet wondering.
oh, and if you don't know what a Trojan Virus is, conceive most the Dardanian horse and troy. lol Basically, you download something that seems okay, and it hides out until it gets inside your computer. then it attacks. whoever prefabricated the virus made it conception of the installation, so you're instalment a host program that lets whoever prefabricated the virus wager some and everything on your computer. they even hit more complex ones that can turn on like your web cam. Or they crapper modify verify curb of your computer. It's actually kinda scary, if you think most it. correct today some haphazard 46 assemblage old experience in his parent's basement could be looking at your files. your individualized files. they could be looking at you, your kids, your pets, they can set up key logs so anything you type in patch you have the virus is transcribed so they get your passwords and such. they rattling are nasty things.
Question #6:
Can someone guide me to a beatific application scheme computer host. That I can use to place my Facebook application on? I am using Java planning language. To create it but I am having the worst phenomenon with uncovering a good server... Any suggestions?
Question #7:
I hit Java downloaded. I have downloaded sitebuilder 4 times and even followed directions from scheme hosting telling me to ingest a troubleshooter program. Nothing helps. Is there someone I can actually talk to at yahoo help?
Question #8:
Here is the thing, my computer was full of module and my sister proven to delete whatever clog to liberated memory. She did so feat into control panel. Now I can go on internet, but when I intend to yahoo tender or blistering accumulation it shows me that error communication saying diagnose your connection. When I do that it tells me that my firewall might be blocking the hosts http, https, etc. Than when I go to check my internet connectivity it shows me that I am not connected at all, but i crapper go and wave net, i exclusive cannot log into a lot of sites. I reinstalled internet explorer, Mozilla, java... It still doesn't work. Also when I proven to update stuff it tells me that it is disconnected analyse your connections, but as I said I crapper analyse each web site. My grouping is XP. Got 1GB RAM, 160GB memory. Dual core Dell computer. Can somebody support me with this?
Thank you
Also when I asked her if she remembers what she deleted she crapper not recall it!
Question #9:
I want to login on the web.
I'm using HttpURLConnection to connect
POST /aaa.php HTTP/1.1
Host: example
User-Agent: Mozilla/5.0 Windows; U; Windows NT 5.1; pl; rv:1.9.2.3 Gecko/20100401 Firefox/3.6.3 CLR 3.5.30729
Accept: text/html,application/xhtml xml,application/xml;q=0.9, / ;q=0.8
Accept-Language: pl,en-us;q=0.7,en;q=0.3
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-2,utf-8;q=0.7, ;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer:
Content-Type: application/x--form-urlencoded
Content-Length: 33
login=login123&password=password123
I should get cookie in response.
HTTP/1.1 302 Found
Date: Sat, 01 May 2010 14:01:32 GMT
Server: Apache
Set-Cookie: PHPSESSID=dsf34213aad3412sf12f6c; path=/
Set-Cookie: login=8login123password123 expires=Sun, 02-May-2010 14:01:32 GMT; path=/
Expires: Thu,9 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: /go/location2/bbb.php
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Connection: close
Content-Type: text/html; charset=utf-8
This are headers wchich i get from my firefox when i'm logging into this site.
But In my programm i get:
null HTTP/1.1 200 OK
Date Sun, 02 May 2010 08:06:34 GMT
Server Apache
Vary Accept-Encoding
Content-Length 62
Connection close
Content-Type text/html; charset=utf-8
<script>document.location.href='example'</script>
I conceive that this object impulsive is redirected to the location, but there isn't set cookie. Additional on the site I think that I'm logged in because my session from firefox modify in the moment when I'm streaming my information
This is my code:
address myurl = newborn URL "example/aaa.php" ;
essay
unification = HttpURLConnection myurl.openConnection ;
connection.setRequestMethod "POST" ;
connection.setRequestProperty "Host" , "example" ;
connection.setRequestProperty "User-Agent", "Opera/9.80 Windows NT 6.0; U; cs Presto/2.5.22 Version/10.50" ;
connection.setRequestProperty "Accept", "text/html,application/xhtml xml,application/xml;q=0.9, / ;q=0.8" ;
connection.setRequestProperty "Accept-Language", "pl,en-us;q=0.7,en;q=0.3" ;
connection.setRequestProperty "Accept-Encoding", "gzip,deflate" ;
connection.setRequestProperty "Accept-Charset", "ISO-8859-2,utf-8;q=0.7, ;q=0.7" ;
connection.setRequestProperty "Keep-Alive","115" ;
connection.setRequestProperty "Connection"," keep-alive" ;
connection.setRequestProperty "Referer" , "example" ;
connection.setRequestProperty "Content-Type", "application/x--form-urlencoded" ;
connection.setReadTimeout 10000 ;
connection.setRequestProperty "Content-Length", Integer.toString content.getBytes .length ;
connection.setDoInput genuine ;
connection.setDoOutput true ;
//Connection
DataOutputStream wr = newborn DataOutputStream connection.getOutputStream ;
wr.writeBytes content ;
wr.flush ;
wr.close ;
InputStream is = connection.getInputStream ;
BufferedReader rd = new BufferedReader newborn InputStreamReader is ;
StringBuffer salutation = new StringBuffer ;
while line = rd.readLine != invalid
response.append distinction ;
response.append '\r' ;
rd.close ;
for int i=0; ; i
String headerName = connection.getHeaderFieldKey i ;
String headerValue = connection.getHeaderField i ;
if headerName == null && headerValue == null
break;
else
System.out.println headerName " " headerValue ;
System.out.println response.toString ;
catch Exception ex
Did I have right?
How to attain cookie got ordered and login into site?
I'know but i dont get "set-cookie"
Man, this is what i get from the 'for' loop
null HTTP/1.1 200 OK
Date Sun, 02 May 2010 08:06:34 GMT
Server Apache
Vary Accept-Encoding
Content-Length 62
Connection close
Content-Type text/html; charset=utf-8
<script>document.location.href='example'</script>
but i should get
HTTP/1.1 302 Found
Date: Sat, 01 May 2010 14:01:32 GMT
Server: Apache
Set-Cookie: PHPSESSID=dsf34213aad3412sf12f6c; path=/
Set-Cookie: login=8login123password123 expires=Sun, 02-May-2010 14:01:32 GMT; path=/
Expires: Thu,9 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: /go/location2/bbb.php
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Connection: close
Content-Type: text/html; charset=utf-8
Question #10:
i have made few websites gift functionality o sending emails, bill comments etc, they all use c#.
in java-script i hit only implemented an firing communication box on click.
in PHP, hit implemented if loops and mouse listing over effects in ultimate HTML.
my discourse is:-
what happens to the peice of writing when its rendered to a clients web-browser,
does it prototypal modify into clean and rank html?
if not then how does the browser understand c# and drinkable script?
i stingy when we run a website on local patron using the application/website VS08 developer it first debugs, then a assist of local server starts and then the browser opens the site. well what happens when this site code is presented for hosting?
from what i hit feature browsers understand only and only HTML.
** Powered by Yahoo Answers