web-applications

Weblogic and BOM

We have web application with static content - html files, js files, images, etc. There are byte order mark at the beginning of all html files. These files were genereted by some tool. So I cannot modify them. We deploy this application on Weblogic. When I try to access this web application via direct link to Weblogic, then I have a lot o...

Writing cross-platform, stand-alone, binary CGI application?

I notice that small, static, brochure sites would often benefit from adding forms to let users (un)subscribe to an event or mailing list but this means installing some application in the web server referenced in the "action" attribute in HTML forms. To make it easier to install + prevent users from sharing this program, ideally, I'd lik...

Best way to redirect to a hashed version of a URI?

So all of the pages on my web application have URIs of the form http://www.example.com/#some-hash and the like. But of course, if the user visits http://www.example.com/some-hash they should get redirected and experience the site in its usual glory. OK, no problem, right? Just write some kind of global HTTP request interceptor that auto...

'Web' based push notifications for internal-only application

I'm already tossing around a solution but as I haven't done something like this before I wanted to check what SO thought before implementation. Basically I need to modify an existing web based application that has approximately 20 users to add push notifications. It is important that the users get the notifications at the same time (PC...

Do large "in-house" enterprise web application run over SSL on the LAN?

Inside of large companies, is it standard practice to use SSL (e.g. https) for running corporate apps over the LAN. I am thinking of ERP systems, SFA systems, HR systems, etc. But I am also thinking of SOA...web service providers and consumers. In other words, is there any concern that something on the LAN could be sniffing plaintext ...

How to develop MS CRM kind of application

I have worked with MS CRM. There we can design our custom entity graphically and then we can also build a visual form to perform CRUD operations on that entity. This feels so simple from end user's perspective. However I am interested to know how can I develop the similar kind of application where I design my table on the fly and the de...

Java Web Application Project development for two clients

Hi, I'm developing a web-project based on Spring (MVC), Hibernate, PostgreSQL (using Maven). Now I'm trying to get a new customer who requires some differences in several parts of the application. I've read the Maven Definitive Guide from Sonatype to get a feeling about Multi-modules Maven Projects but one of my most important questions ...

Integrating my php application to a wordpress site pros/cons

Hi I'm developing a car buying and selling website in php, currently what i'm planning is all the pages and the blog will be done using wordpress and other functionalities i'll develop as independent application and will connect it with wordpress using the function.php file. Only user management and posting for page and blog will be done...

CMS installation web toolkits

I've been looking for a system which performs installation of other CMS systems on the server, is there any solutions? ...

jQuery funcionality not working within an ajax-controlled section of the webpage

Hi, This 'Timepickr' jQuery function is woking fine in one section of my webpage using the following code... <? include("header.php"); ?> <br> <form method="post" name="form1"> <div id="div"> <center> <table border="0" cellpadding="0" cellspacing="0" width="60%"> <tr> <td width="150">Time</td> <td> <input class='timepickr' type='text' ...

How do I get a list of all HttpSession objects in a web application?

Let's say I have a running Java-based web application with 0 or more valid HttpSession objects associated with it. I want a way to access the current list of valid HttpSession objects. I was thinking that I could implement an HttpSessionListener and use it to append to a list of session id values that are stored in an application-scoped ...

Best way to run a command-line application that uses code running in an EE 6 environment? (GlassFish v3, MyEclipse 8.6)

Ok, back for another complicated question, I'm afraid. Please be patient: this is a lot of new stuff for me. Back in the dark ages, we were running a Frankenstein of an application on WebLogic. When we decided to move things to GlassFish v3, we all agreed that the time was nigh to do things the "right" way, from an EE 6 perspective. To...

ASP.NET Deployment Fails - Could not load file or assembly 'Microsoft.mshtml'

I have developed a Web application in VS2008. It works perfectly on my development PC. When I publish and upload to the shared Windows hosting service (which supports ASP.NET 3.5), it fails (even when accessing it from my development PC). The error message is: Could not load file or assembly 'Microsoft.mshtml, Version=7.0.3300.0, Cu...

How do I generate a connection reset programatically?

Hi, I'm sure you've seen the "the connection was reset" message displayed when trying to browse web pages. (The text is from Firefox, other browsers differ.) I need to generate that message/error/condition on demand, to test workarounds. So, how do I generate that condition programmatically? (How to generate a TCP RST from PHP -- or...

Implementing notification in webapp

We are developing and web application which allows users to register for certain events. What application is supposed to do, is to send them few notifications to remind them that they have registered. There will be more than 1k user which can register for many events in very wide time range. We have to send notofications like 3 months, 1...

Sencha Fullscreen Panel that detects Home Screen Bookmark ?

When using Sencha Touch to create a panel - you can tell the panel to enable a fullscreen property. THe panel will fill the space available by the device. It seems to have a bug or not deal with a bookmark that has been saved to the home screen - and floats underneath the status bar at the top. Is there a property or setting to manage ...

Best interactive prototyping tool for a Semantic Network based RIA

I have a project that is based on semantic networks (i.e. triple stores), reasoning / recommendation engines and interactive visualisation (not just displaying the network, but manipulating the visual elements of the displayed network). The delivery is to be as a Rich Internet Application, delivered through a web browser. At this stage...

tomcat 6: accessing web app without war name in the URL and without overwriting ROOT?

in my war's META-INF/context.xml I have: <?xml version="1.0" encoding="UTF-8"?> <Context path="/foobar" docBase="my-long-war-name"/> I deploy my war to the webapps/ directory and I confirm that my contex.xml is in %CATALINA_HOME%\conf\Catalina\localhost with the name my-long-war-name.xml Now, instead of accessing my REST service thr...

Tracking a child window across page loads

Is it possible to track a child window if the parent page is reloaded? I currently open the window like so: var childWindow; childWindow= window.open('url...'); and when I want to reopen the same child window I do childWindow.focus(); The obvious problem is that if the parent window is refreshed then it loses track of the chi...

Web app recommendations - bookings system for holiday rentals

I'm looking for an easy solution to allow users to book a holiday house. The best I've found so far is BookWhen, but I find its more targeted for events rather than renting. Originally I thought I could use google calendar but that's not the most elegant solution. Can you recommend a service/solution that's free? ...