web

Best way to integrate PHP with asp.net / asp.net-mvc

By some coincidence this problem has come up twice in the last week. A customer has an existing PHP web site which they want to keep. They also have or will soon have some ASP.net web pages that they wish to integrate into the existing site, in a way that it appears as a single site. We have though of the following possibilities: Use...

Silverlight WCF service not working when deployed.

I have a WCF service method in a Silverlight application that inserts some data into a SQL Server database deployed on a shared GoDaddy server. Some of the methods work, and some do not, but all of them work when the application is run locally (with a local database). I get the generic "The remote server returned an error: NotFound", a...

Which web based (in browser) editor is best for "advanced users" ?

Over the last couple of days I have been collecting a set of "new era" web editors, that is leaving out FCKeditor and tinyMCE, mainly because they try to make the web Word. So far this is what I got: Text Oriented http://markitup.jaysalvat.com/home/ (used by bitbucket) http://github.com/derobins/wmd/tree (used by SO) http://www.wymed...

Is it possible to use IMAP + paging?

Hi, I have a Requirement to make an IMAP client as a Web application I achieved the functionality of Sorting as: //userFolder is an Object of IMAPFolder Message[] messages = userFolder.getMessages(); Arrays.sort(messages, new Comparator<Message>() { public int compare(Message message1, Message message2) ...

ASP.NET MVC - Passing redundant arguments to actions

This question may seem a little bit stackoverflow-implementation specific, but I have seen a similar pattern on other websites that are using REST-friendly URL rewriting as well. For example, a link to a particular question looks like this: http://stackoverflow.com/questions/1388703/asp-net-mvc-passing-redundant-arguments-to-actions 13...

HTML Parsing Error

I can't find out what the problem is, and why I keep receiving this error in Internet Explorer 8, as it's the only error that I am receiving. Any thoughts as to what it means, or a simple solution? I haven't noticed any problems with my code though, it's just the message that bugs me. Webpage error details. User Agent: Mozilla/4.0 (...

UserProfile StackedInLine/TabularInLine redesigned

Hello everyone and thanks for reading. I have a simple problem that I want to get rid of and I have not seen examples where this is achieved yet although searching around the net for quite a while. I recently extended with UserProfile so my admin.py looks like this: from django.contrib import admin from django.contrib.auth.models impo...

inputs getting hidden behind image

So I had to create this splash page in a very short amount of time. Its done will all images.. etc. (its crap, i know. but needed to go up and seo isnt important) Problem is the inputs are placed "absolute" over top of the images and in IE (of course IE!!) the form inputs arent realy clickable. link: savemoneytampa.com html: <div id...

AJAX, Server Push implementation questions

Hi, I'm relatively new to the whole AJAX way of doing things so please excuse me if I'll mix two different things (although I'd appreciate it greatly if you could comment me on that). My question is this: I have many web clients (lets say around 1500) whom I want when starting up to "subscribe" to the web server with some sort of Id and ...

Best web programming book for stand alone application guy?

what are the web programming book or books that takes you as a stand alone application programmer and make(develop your skills) you web programmer and make you think more in web way so that if you have idea about web you can directly sit front of the computer and code it by yourself? Edit:i prefer using php,mysql ...

Client to consume a WSO2 WSAS Web Service with Username Token Security

Dear all, I need to implement a client to consume a Web Service that is deployed on the WSO2 WSAS with username token security. I can use the stub generated by the wsdl2java, a dynamic approach is not necessary right now. There is any tutorial that can help me to accomplish this task? I have already searched but without success! Best ...

How do I display HTML code (entities) on a web page?

how do you write html code so the user and see it on a webpage (like a how-to for html) ...

Speeding up a Web Service

I have a web service running and I consume it from my desk application that is written on Compact Framework. It takes 13 seconds to retrieve 8 results which is kinda slow. I also expect to be retrieving more results in the future. The database query runs fast. Two questions: how do I detect where the speed slow down occurs? Do I put ...

Getting runtime class information from the web? Something like javap but at runtime on class loaded in memory

I am working with Websphere and complicated classloading issues. I want to be able to download or print information that would normally get printed by javap (the methods, etc). I may also need to get the raw binary class data, to perform a binary diff. How would you do this? ...

http request ... cookies

A site A (say url : www.a.com) is composed of different editions : each day a new edition. However, the site is not restful: the site is using cookies (I think) to save the edition the user wants onto access. So to access an article of a given edition, we have to first submit a form to specify the edition, and then get the articles of ...

Force browser to re-read cached images

Hello. Somewhere in CSS: .button { background: url(../Images/button.png); } Problem: for performance reason all static content has expiration headers and is cached by browser. When image changes user must refresh cache (Ctrl+F5 in IE). I want images to be cached, but when necessary they must be automatically reloaded. Question: ...

Is it possible to find out which page the user was previously browsing?

Is it possible to find out which page the user was previously browsing from current web page? ...

How can I integrate parts of Catalyst into a legacy webapp?

I'm struggling with a classic legacy project: manual URL parsing and composition, manual routing etc. Knowing a bit of Catalyst I long for at least some of the concepts, for example proper (a.k.a. transparent) URL routing and parameter parsing for example. Ideally, I'd just use Catalyst and be done with it, but given it's a legacy projec...

creating new javax.xml.ws.Service not returns

I am having a strange problem occuring somtimes from a specific machine (windows 2003). I am trying to create a new javax.xml.ws.Service instance with host and qname as parameters. service = new SomeService(url, qName); the service creation (ONLY SOMETIMES!) never returns. While the creation is stucked on my prod machine, development...

Why have #md5=... in the URL anchor?

Some download links contain a md5 value in the URL anchor, for instance: http://pypi.python.org/packages/source/d/distribute/distribute-0.6.1.tar.gz#md5=e6224b1da4636dd8ae53407fc67bb35b What is the intent behind this convention? Are there download tools or HTTP clients that make use of this encoded md5 value? wget or curl does not se...