web

What technologies/tools do people use to implement live websites ?

Hi, I have the following situation: -I have a server A hooked up to a piece of hardware that sends values and information out of every second. Programs on the server machine can read these values. This server A is in a very remote location so Internet connection is very slow and not reliable but the connection does exist. Let's say it'...

Globally disable Ext JS Animations

I'm testing an intranet web app in the iPad but the animations to open "windows" and show message boxes are horribly slow. I've tried setting the global Ext.enableFx to false, and confirmed that flag is still false after page load in Firebug. The animations are still occurring though so I must be doing something wrong. Thanks... ...

Identify server that made call to web service

I am working within an intranet environment. We have both a production and development sharepoint server (WSS 3). We have a 3rd party workflow product which runs on top of sharepoint. It is installed on both the production and development sharepoint servers. The workflow product can call web services I have written which are hosted on o...

Web.xml ExceptionType

Hi, is it possible to define two sections in the web.xml in order to catch two different exception types: <!-- general exception --> <error-page> <exception-type>**java.lang.Exception**</exception-type> <location>/generalError.jsp</location> </error-page> <!-- specific exception --> <error-page> <exception-type>org.myapp.myE...

wsimport how to create web service client from WSDL for http:binding GET/POST

I have wsdl and I create classes with wsimport tool. Everything is going ok for SOAP messages but for http:binding GET/POST I get error. Part of the WSDL follows: <wsdl:binding name="DictServiceHttpPost" type="tns:DictServiceHttpPost"> <http:binding verb="POST" /> ... ... ... <wsdl:port name="DictServiceHttpGet" binding="tns:DictS...

Updating an application OTA

I'm developing an application that will be available from a website (market probably as well). The problem I'm having at the moment is how to handle the updates to the app. I know how to check the version against the current one and I know if I need to update it. Question is...how? Is there a way I can download an APK from the website a...

Sending Key across network

I wanted to send my public key to the client. I am using SOAP technology for web services. Any ideas how to send the key to the client KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA"); kpg.initialize(2048); KeyPair kp = kpg.genKeyPair(); PublicKey k = kp.getPublic(); ...

two RewriteRules with www redirect

I have a multiple language website, that uses subdirectories from the root ('/en' for english and '/es' for spanish) for each specific language. Each redirect appends a get variable to the URL, and hides it using a 'P' flag for proxy. My current htaccess file for the spanish subfolder is: Options +FollowSymlinks RewriteEngine on Rewri...

password/login system in php

For a login system in php would this be a suitable outline of how it would work: users types in username and password, clicks login button. Checks if user exists in database, if it does, then retrieve the salt for that user hash the password and salt (would this be done on the client or server side? I think client side would be better...

How can i know what TextView was clickbale?

Hello, i have one doubt. I have an iteration of TextViews, and what i want is when i click in one TextView , i want stop the iteration and open a web, who can i know what TextView as been click on? i have this code: Iterator<TextView> it = text.iterator(); while(it.hasNext()){ test = it.next(); test.setOnClickListener(new View...

Adding a PayPal 'Add to Cart' button to the caption section in Lightbox plugin for jQuery.

Hi there, The person I am making a website for has asked for a PayPal 'Add to Cart' button to be displayed underneath an image when it is being displayed in the Lightbox popup. I can't figure out how to do this at all. Does anyone have any ideas? :) Thanks very much in advance. P.S. I say another similar question on here, but I am un...

Debug on Opera Mini

how do i debug a website that looks weird on opera mini? The site is working fine on any other browser ...

The mobile application cannot connect to the web service

Hello everyone. I have a mobile app webservice client that connects to a WCF webservice(on my PC) deployed in a WiMo Device. The OS is Windows Mobile 6.0. It is connected to my PC using a USB cable and ActiveSync 4.5. Problem: When I use a mobile emulator to run the application, it was able to connect to the web service successfully. ...

Designing a Tag table that tells how many times it's used

Hi, all. I am trying to design a tagging system with a model like this: Tag: content = CharField creator = ForeignKey used = IntergerField It is a many-to-many relationship between tags and what's been tagged. Everytime I insert a record into the assotication table, Tag.used is incremented by one, and decremented by one in...

Understanding Async Methods in Web Service.

Hello. I consume Java Service in my .NET appliaction. I have one question: When service serialize in .NET he also create Async methods. For example for GetPersons() method service create GetPersonsAsync() which is return void. In which cases I can use this Async methods and what the destination of these methods. ...

How do I automate navigation to a website that requires authentication?

Here's what I'm trying to achieve. I would like to write a script that will navigate to a website that requires me to be authenticated as myself, say Facebook, Live Spaces, Twitter or any other, and then have that script search for certain information on one of the pages of the website. I've done something similar in the past with the W...

Webserver sending corrupt or corrupting served files

EDIT: Looks like the problem was a rootkit that corrupted a bunch of low level linux commands, including top, ps, ifconfig, netstat and others. The problem was resolved by taking all web files off the server and wiping it. A dedicated server we operate is having a strange issue. Files are not be sent complete or are showing up with ga...

Is there a sample set of web log data available for testing analysis against?

Sorry if this isn't strictly speaking a programming question, but I figure my best chance of success would be to ask here. I'm developing some web log file analysis algorithms, but to date I only have access to a fairly small amount of web log data to process. One algorithm I want to use makes some assumptions about 'the shape' of typic...

[C#] How to consume web service adheres to the Event-based Asynchronous Pattern?

I am following the example from http://msdn.microsoft.com/en-us/library/8wy069k1.aspx to consume a web service implemented (by 3rd party) using the Event-based Asynchronous Pattern. However, my program needs to do multiple calls to the DoStuffAsync() hence will get back as many DoStuffCompleted. I chose the overload which takes an ex...

Consuming SAP Web Service from ASP.Net

Hi, Next week i am supposed to develop an asp.net application which will connect to SAP, retrieve some data, change them and send back to SAP. We decided to use web services to achieve this and now i just want to know what diffuculties may i face with? I have URL of WSDL of the Web Service, will it be enough for me to adding web refer...