web

Ask about the copyright of develop destop application based on web application

Hi, I googled and found some web online caculators (such as BodyFatCalculator & CaloricCalculator). I plan to develop the desktop Caculators in C# (WPF & .net 3.5). But I would test the online function and build my application model(I think some body properties not suit for asian people, maybe I still need do more research.). But no...

Does wsimport tool from JAX-WS allows to create RESTful class clients?

Im using wsimport but I cant find why or how to create classes for RESTful web services/ports defined in WSDL. Does wsimport tool from JAX-WS allows to create RESTful class clients? ...

web crawler needed

does anybody know where i can get a free web crawler that actually works with minimal coding by me. ive googled it and can only find really old ones that dont work or openwebspider which doesnt seem to work. ideally id like to store just the web addresses and which links that page contains any suggestions? thanks ...

How to make URL pattern like app.example.com?

I have my domain say "example.com" (java, GlassFish Web Server) Now I have 3 application.. say A,B,C. Now what I want is, if user hit a.example.com OR example.com/X then A application should get invoked. similarly for B and C. b.example.com or example.com/B, c.example.com or example.com/C. like mail.google.com news.google.com. H...

netbeans starts running web applications on port 8080, where can i change it ?

hello. i have netbeans IDE version 6.8, and glassfish version 3. my glassfish listener is set to port 81. but when i try running the simplest web application via the netbeans IDE it tries running it on port 8080. where can i change it ? using port 8080 for my web application is out of the question for me. ...

How do i start learn python for web

Hi, I am learning python for a while, now I like to learn python for web, using python as a back-end of website. where and how do I start learning this: Example usages are : connecting database and retrieve and store information from forms ...

Web page width on LG mobile phone

Hi I'm trying to develop a site for mobile phones. At the moment it seems to work on iphone and android htc desire and an n95. When I try it on an LG renoir instead of the page fitting the width of the screen the page displays at least twice as wide as it should meaning you can scroll left and right. Has anyone come across this be...

.NET SAP Connection Authentication via WEB Service

Hi, I am trying to connect to a web service served by SAP and i have authentication problem. I simply added the service by right clicking project, selecting add service reference, giving WSDL url for the service and clicking OK.(After clicking ok asked for credentials and i provided them) Then when i tried to call a method from the se...

How to change url field of Web Proxy portlet dynamically

Hello, I'm using Liferay 5.2 portal. I have 2 Web Proxy portlet in my portal. Web Proxy portlet 1 contains navigation items & Web Proxy portlet 2 contains content. When user click an item in portlet 1 then the content in portlet 2 will change, it also mean that the url for portlet 2 changes. How can I do that? Or is there any other way...

Embedding a CMS in an MVC Web App

I'm working on a website for searching for businesses, then displaying a listing page. We've been toying with the idea of letting the clients manage their listing page using an external CMS. I'm not sure how often this is done, or if it's even best practice. Ideally, we want to be able to setup a listing on our website, then give the cli...

Java, python, PHP hardware resourses requiring

What is the difference between hardware resourses requiring of web applications written by Java/Python/PHP (with web frameworks)? ...

How do you make javascript code execute *in order*

Okay, so I appreciate that Javascript is not C# or PHP, but I keep coming back to an issue in Javascript - not with JS itself but my use of it. I have a function: function updateStatuses(){ showLoader() //show the 'loader.gif' in the UI updateStatus('cron1'); //performs an ajax request to get the status of something updateStatus('cro...

After travelling back in Firefox history, javascript won't run.

When I use the back button on Firefox to reach a previously visited page, scripts on that page won't run again. Is there any fix/workaround to have the scripts execute again when viewing the page the second time? Please note that I have tested the same pages on Google Chrome and Internet Explorer and they work as intended. Here are ...

Safe HttpContext.Current.Cache Usage

Hello there, I use Cache in a web service method like this : var pblDataList = (List<blabla>)HttpContext.Current.Cache.Get("pblDataList"); if (pblDataList == null) { var PBLData = dc.ExecuteQuery<blabla>( @"SELECT blabla"); pblDataList = PBLData.ToList(); Htt...

Can't get to Pex download (or visual studio 2010)

I know this is probably not a "True" stackoverflow question, but here it is anyway: Is anyone able to get to the MSDN Download of Visual Studio 2010? I just get "Your search did not match any products." when I click on the New Downloads->Visual Studio 2010 link. I was able to download Visual Studio on Monday. But it is gone now. That...

Customer Google Analytics in Web App

I have a web app where people can create custom content on the web which is hosted by my service. I want to provide users with the ability to track activity on their specific page via Google Analytic. I've seen some other companies providing this option (MailChimp). I was wondering if anyone had experience in implementing this kind of s...

How to query data from a password protected https website

I'd like my application to query a csv file from a secure website. I have no experience with web programming so I'd appreciate detailed instructions. Currently I have the user login to the site, manually query the csv, and have my application load the file locally. I'd like to automate this by having the user enter his login information,...

Porting existing Windows Forms application to Web

We have an application we are developing for a very long time written using Windows Forms which consists of many panels as user controls. Is there a way to offer controls using a web browser with a minimal effort? ...

How to implement web cache: internal fragmentation VS external fragmentation

Hi there: I come up with this question when play with Firefox web cache: in which approach does the browser cache a response in limited disk space(take my configuration as an example, 50MB is the upper bound)? I think two ways can be employed. One is cache the whole response objects one by one, but this is inefficient and will introduc...

How to rename WSDL complex schema elements type?

Folks, I am running out an issue. I am creating a web service in C# that should be consumed by an existing client (written with ATL). Actually this client used to invoke a ATL based web service before, now I need to change the URL of the client so that it can invoke a different web service which I am about to write with C#. I found some...