works-on-my-machine

Passing a client certificate only works on my machine

I have a web service that is protected by requiring the consuming third party application to pass a client certificate. I have installed the certificate on the providing web service in production and on the client as well. This process is currently working fine for other clients with a similar setup. The current version is written in ...

Problem with corba in Java

I'm having an issue where I've written a Java App that works perfectly on my development machine and perfectly on a Lab system, however when I install it onto the client machine I get the following Error: org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0 Does anyone have any idea what mig...

how do you troubleshoot with "works on my machine" scenarios

It happens lot of the time that when you report a bug to a developer, he comes back saying "it works on my system" though its a browser app. How do you go about sorting that out ? ...

It works on my machine....

I have uploaded a website to the internet. Firebug claims that no file is missing and yet on both IE and FF it doesn't look good as expected and also the script doesn't work (no errors). However, on my own computer it works perfectly fine. Here are the files. Any thoughts on why this happens? What's missing? EDIT: Ok, it works on any of...

"Works on my machine" - How to fix non-reproducible bugs?

Very occasionally, despite all testing efforts, I get hit with a bug report from a customer that I simply can't reproduce in the office. (Apologies to Jeff for the 'borrowing' of the badge) I have a few "tools" that I can use to try and locate and fix these, but it always feels a bit like I'm knife-and-forking it:- Asking for more ...

SSIS with COM Interop fails when run as a scheduled job

I have an SSIS Package that utilizes a COM Interop (Interop.RFCOMAPILib.dll) around RightFax's COM API (rfcomapi.dll). The Interop assembly has been GAC'd so that we can use it within the SSIS package The package runs just fine on my local machine. But it also works just fine on the server if it is manually started (meaning all of the ...

What's wrong with this SQL Create Table Statement?

This SQL query is generated by SQL Server Managment Studio and it throws me an error: USE [database_name] GO /****** Object: Table [dbo].[UserAddress] Script Date: 02/17/2010 11:21:02 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[UserAddress] ( [ID] [int] IDENTITY(1,1) NOT...