host

Finding my Valid RSA Host Key

I recently migrated one of my domains to a new hosting service, so I switched the DNS name servers, moved the content to the new hosting service, etc. Now I am trying to log into the site (now on the new host) and there seems to be a problem on my own machine regarding this issue. Question: Where and How do I find the new correct RSA k...

[Android] Host is unresolved in LAN

Im getting a IOExeption 'Host is unresolved' on HttpPost. The Endpoint in this case a a computer on my LAN with a webservice. (http://pc259:8080/test/service.asmx). Im using WIFI to my LAN. Does Android know to to resolved computernames? StringEntity se = new StringEntity(xmlDataToSend); se.setContentType("text/xml"); HttpPost httppost ...

SMTP host and port value for yahoomail

Hi, I am working on to send email from my various accounts using java. And I sent mail from my gmail account successfully. Now I tried to send email from my yahoomail by changing the smtp host as "smtp.mail.yahoo.com" and port value as 25. But I am getting "SMTPSendFailedException". Can I know what changes I need to do to make it worki...

Virtual host (OSX) & Versioning on a Shared Server

I'd like to be able to edit the CSS/HTML of my website on my iMac and Macbook (may sometimes be offline). Hosting is shared I'd like to be able to easily synchronise local and online versions, with revision history. In the past I've used MAMP with TextMate, but I've been looking at VirtualHostX, Versions and Espresso. I'm not tech savv...

Access New Intranet Website without using ipaddress and port

Hi, ( note prefix means http: ) I'm setting up a new website on port 8080, on windows 2003 IIS6. i've setup the physical files in c:\TestNet and given iusr_ access. within IIS console it can see the files in the right pane, so i know it's path is correct. when viewing prefix//localhost:8080 or prefix//192.168.xxx.yyy I can get to ...

Proxy tomcat urls to map a host request to a path

Hi, how, if possible, can I redirect a request for a hostname to a specific subdirectory of one of the deployed apps? E.g., I wish to forward http://host.com to http://host.com/app/path It is however possible to redirect to a specific application on tomcat, e.g., <Host name="host.com" appBase="webapps"> <Context p...

Wrong host returned using HttpContext.Current.Request.Url.Host

Hi We have multiple domains for one of our websites. e.g. mydomain-uk.com and mydomain.co.uk I have a handler which creates an XML sitemap and it uses HttpContext.Current.Request.Url.Host to retrieve the host site. When my browser is on mydomain.co.uk/handler it retrieves mydomain-uk.com as the host How can I ensure it always retrie...

Why does Perl's URI complain "Can't locate object method "host" via package "URI::_generic"'?

HI, im trying to get the host from a url. sub scrape { my @m_error_array; my @m_href_array; my @href_array; my ( $self, $DBhost, $DBuser, $DBpass, $DBname ) = @_; my ($dbh, $query, $result, $array); my $DNS = "dbi:mysql:$DBname:$DBhost:3306"; $dbh = DBI->connect($DNS, $DBuser, $DBpass ) or die $DBI::errstr; if( defined( $self->{_process...

iPhone Reachability of multiple hosts from NSNetServices

Hi, in my iPhone app I list some hosts that publish themselves via bonjour (NSNetService). The user is able to save those hosts to a favorites list. What I want to do is to check if those hosts are reachable via LAN or if they are offline. To do this I am observing ReachabilityChangedNotifications in my ViewController: [[NSNotificatio...

AJAX load time - Host and Server issue?

I'm having an issue with slow AJAX calls. This is a common question, but I've done everything suggested in all the research I can find. I'm hoping to get a consensus form people who read this. Basically, I make an ajax request to a php page, which gets info from a database. here is the page: http://bit.ly/bQDyjj I've timed all of my ...

How can I deploy my war file on a shared host?

I have a web application I would like to deploy on a shared host. I have absolutely no possibility to manually start the server and deploy my webapp like I would do when I deploy it to localhost. I tried unpacking the WAR file and uploading it to the server, it won't work, it won't even show me my jsps like it's supposed to. Any help wou...

i want to check ip address to corresponding hostname and hostname ip ranges

I need to make it with PHP, maybe with some pear package or php internal functions. How i can do that ? I know i need gethostbyname() for hostname checking, but i need also ip range of this provider. example: ip: 5.7.8.9 host: usa provider ip range 5.7.8.0-5.7.9.0 Is it possible with php? ...

how can I set up a website to mirror whatever is pushed to git?

how can I set up a domain to mirror the files hosted on a git repository (github.com/nospampleasemam/dylanstestserver and dylanstestserver.com). The repository is of a website, so I want to host the files stored in the repository, not just mirror the files for download. thanks! ...

PHP/cURL error with https again

Error is "Could not resolve host: (hostname); Host not found." This randomly started happening again on my development computer. It works fine on the production server, so whatever. But I still need to test this here. Here's the code: function useCurl($xml,$cert,$host){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$host); curl_setop...