web

Help choosing a good modern CMS

I am creating a website. It is basically geared towards people from my country who are now living, working, studying abroad. I want it to be like a community driven website which has forums, blogs, articles, news and stuff like that. The obvious choice for this seem to be joomla (or drupal) because from what I know it is geared towards ...

JSONP & http://localhost.:<port>/

After reading http://stackoverflow.com/questions/1217926/jsonp-callback-doesnt-execute-when-running-at-localhost and googling a lot, I am still unclear if there is a potential XSS security threat. Is this "hole" covered in popular browsers nowadays? (notice the dot in the URI) ...

vb app to client side web app. Is it possible?

If I created an application in vb, could I convert this application into a web app? client side. ...

Should I happily stay with UTF-8 or should I be ready to change the encoding?

I've built (or I'm building) an application that supports a wide variety of languages. I'm using UTF-8 right now because as I see it, it supports all languages in this world. (?) However, after reading the article on Wikipedia, it states that while UTF-8 currently uses only 10% of its potential space, there's a possibility that in the f...

Retrieving dynamic text from a website in vb.net (VS2008)

Hey guys, i want to be able to retrieve dynamic data from a web page (share prices). I started out by retrieving the html code before i realised that as it is live data, the html code will be of little use. Although i am looking to capture specific data, all i wish to do is process a webpage that i specify which will return the text off ...

how do web crawlers handle javascript

Today a lot of content on Internet is generated using JavaScript (specifically by background AJAX calls). I was wondering how web crawlers like Google handle them. Are they aware of JavaScript? Do they have a built-in JavaScript engine? Or do they simple ignore all JavaScript generated content in the page (I guess quite unlikely). Do peo...

How to add a full-sized image to the center of a webpage using jQuery?

The way I have my site setup is that I have a grid of thumbnails that is sized based on the user's screen resolution and also has a scrolling mechanism in it. Another feature I'm trying to add is the ability to click on a thumbnail and have the image you clicked appear in the center of the screen at full size (or as close to full size a...

What is RESTFul Web Services in Java

Well as the title suggest, what is this Restful Web Service thing in Java, What are its benefits over SOAP Web Services, why the hell someone implemented again some other technology? What is the reason to use Restful one instead of SOAP one? For example I will give a service which will be accessible for many clients from high level lang...

How to add folder struture in web deployment project

Hello, I am trying to create a web deployment project for a web appplication that requires a directory structure to be created somewhere in the file system (user choice). This structure could be placed anywhere and does not need to be inside the project folder. How can I set the project to allow the user to define the root where this d...

Website Development moving to Image Hosting

We are moving over to using Akamai for all of our large static content so far just flash but are planning to include images, css, and js files in that list. I am curious what methods others employ to switch all of their local/relative paths to using an external hosting company. Also, how they continue to develop their site so that deve...

Making site usable both from Mobile devices and desktops

I have a website that I want to make look good from a non-mobile browser, but make very usable from a mobile device. I'm thinking I'm going to detect if the user is likely using a mobile device, and if they are, redirect the first hit to a page that says something like: "It looks like you're viewing this page on a mobile device. Would ...

Configure an IIS Site to default to non-root directory?

Say I have a directory structure like so: /public /public/company /public/globals /public/globals/images /public/jobs /public/jobs/it ... etc. What I would like to do is to be able to configure an IIS Site to load from /public/company when visiting the domain root. I know I can change the site to /public/company, but if I do that, I...

Azure Pricing / Hosting Question - will hosting a simple site cost $0.12/hour + data use?

My question is pretty simple: does hosting a website on Windows Azure, require 24 "compute" hours per day? That is, what would it cost me to host a website for a month, storing 1GB data, with 1GB transferred out per month? I understand the data and message pricing model, but is just having a site up there (on Azure) going to cost me $0...

Web based cron for free ..

Is there any free web based cron that can do scheduled jobs .... ...

How to customize response structure when working with Axis2 REST web services?

Hi I'm using Axis2 1.4.1 to expose RESTful web services. I need to return xml structure (or any other for example ATOM xml or RSS xml or JSON structure) of my choosing. Axis2 out of the box returns it's own default xml structure (which is SOAP like). The question is what is the right way to customize this. Is it via Handlers? Is it via ...

Are there any good summarizers for a web-page?

Suppose I give you a URL...can you analyze the words and spit out the "keywords" of that page? (besides using meta-tags) Are there good open-source summarizers out there? (preferably Python) ...

Web Service works in IE7 but not Firefox

Hi All I have a .Net web service that I call from javascript using: $.ajax({ type: "POST", url: "http://myServerIP/Myervice.asmx/MyMethod", data: "{}", contentType: "application/json; charset=utf-8", dataType: "jsonp", success: function(msg) { alert('sucess ' + msg); }...

Is it possible to redirect content calls in ASP.NET?

I'm experimenting with javascript and css caching in ASP.NET MVC. Is it possible to intercept calls to the server for these types of files? For example, if a request gets to the server for ~/Scripts/Something.CurrentVersion.js I would like to intercept this call and tell the server to return ~/Scripts/SomeOtherFile.js Would it be p...

http or https authentication for Intranet Web applications

I’m developing an Intranet application and I want to make a secure authentication. One approach can be use “https”. The problem is that the server doesn’t have a trusted certificate, therefore is a bit annoying for the client because the browser doesn’t trust in the certificate and complaints with a scary message. Using http will com...

How can the state of the browser cause the server to send a 404 error?

We have a user who was getting 404 page not found errors on all pages. When I looked in the access logs, sure enough I could see the server sending a 404 response. There were no errors in the server logs and other users were having no problem fetching the same pages. After she rebooted her machine, everything was working fine again so...