integration

Best practices for 3rd party library to facilitate integration

This is kinda a general question for the development community, since there are lots of experienced devs here. I'm currently building a developer utility addin module which requires code to exist in applications which will be adopting it. I'm looking to support at least native C++ and .NET applications initially, with support for other ...

Is maintenance on long lived JMS connections necessary?

I keep a JMS connection always open, because I have a MessageListener on it. Is it a common need to worry about minimizing maintenance of applications with long lived JMS connections? I was thinking something along the lines of try to recover from some possible common well known kinds of failure, like temporary connectivity failure. ...

How can I update Bugzilla bugs from bash and php scripts?

Our development process is highly automated via a raft of bash and php scripts (including subversion hook scripts.) These scripts do a number of things to integrate with our Bugzilla 3.0 installation. But the current integration approach is a bunch of SQL calls which update the bugzilla database directly - which obviously has a number ...

MATLAB: Using ODE solvers?

This is a really basic question but this is the first time I've used MATLAB and I'm stuck. I need to simulate a simple series RC network using 3 different numerical integration techniques. I think I understand how to use the ode solvers, but I have no idea how to enter the differential equation of the system. Do I need to do it via an m-...

Sending a value from javascript to jsp (with jquery)

Hi, right now i have a jsp page that allows to sort some items, when is ready and a link is clicked a javascript function converts all the info into xml (text in a variable), after this i need to send this xml to the jsp page again, i tried putting the info in a hidden input and submiting the form, sending with $.post and a few more jque...

VS2005 - Automatically requesting checkout of form on open, with "View Designer"

I'm trying to integrate our Source Control(SourceAnywhere) with VS and are getting a lot of push back because of this one issue. Almost every time we open some of our Windows forms using 'View Designer' it edits the file (* appears beside file name). Nothing has yet been changed, I've tried comparing the before and after files and th...

Best Method to SFTP or FTPS Files via SSIS

What is the best method using SSIS (SQL Server Integration Services) to upload a file to either a remote SFTP (secure FTP with SSH2 protocal) or FTPS (FTP over SSL) site? I've used the following methods, but each has short-comings I would like to avoid: COZYROC LIBRARY Method: Install the CozyRoc library on each development and produc...

Does Oracle Applications API expose Web Services? (i.e. WS-* SOAP Web Services?)

I see Oracle has a comprehensive Integration Repository online (http://irep.oracle.com/). Question is... how can one call these procedures? Do I have to do it through PL/SQL? Or do all these functions/procedures have corresponding web services exposed automatically? ...

Wiki that can be integrated into a web-application

I've been thinking about integrating a wiki into my web-application. Currently I'm testing MediaWiki API (web-services interface), but my intended usage will most likely conflict with the GPL license. Some parts of my web-application is closed source. Does anyone have good experiences or recommendations for a Wiki (with BSD-license or s...

Feature differentiation: Rails / Django

Are there any important features in Rails or Django which do not exist in the other framework? Is there anything important missing - for an enterprise web app - in either one? This question is not intended to be argumentative - I am trying to make an informed technology decison for an upcoming project. Two of the concerns I ha...

eCommerce GoogleCart PayPal eBay integration

Hi I'm looking to write a some code that can integrate with some of the major online processors. This will be a basic bit of code that depending on a condition will affect the sub-total on check out. I understand that I may have to code it differently for each payment process but is this possible generally speaking? I want to provide t...

How do you tap into MYOB from a .NET app?

I'm interested in finding out how to interface a .NET app (or even just about any app running on any platform, maybe even Java or PHP) with MYOB. There's a system already in place that uses MYOB but the business owner wants their different branch offices to be able to interact with each other. I would be really interested to know the pos...

Handling Tomcat in Eclipse: make it as easy as MyEclipse?

I have been using MyEclipse for a number of years. I am coming to the conclusion that I would rather ditch MyEclipse and revert to plain old Eclipse, except for one detail: MyEclipse's Tomcat integration. Does anyone know of an Eclipse plugin that would provide such integration? Here's what my current MyEclipse setup does, which I wou...

Which Java MVC frameworks integrate easily with StringTemplate?

It's hard to see how StringTemplate integrates easily (or not) with popular Java web MVC frameworks. Which Java MVC frameworks integrate easily with StringTemplate? A good answer: mentions one solution to integrate with a framework, includes a link to something useful and applicable, like: a tutorial, or documentation, or a referenc...

[Solved] django facebook connect missing libs?

hello, I'm trying to integrate some photo related functionality with my site and facebook. I checked out facebook connect and it seems like the way to go for this (since I don't want to make an app, just have users authenticate and then grab some content from facebook to integrate into our site) First of all, if you think there is a bet...

How to automate integration testing ?

Hi, I'd like to know something, I know that to make your test easier you should use mock during unit testing to only test the composant you want, without external depedencies. But at some time you have to bite the bullet, and test classes wich interact with your database/file/network... So my question is : What do you do to test these...

How to Integrate ASP.Net Webforms website with an ASP.Net MVC web application?

How would I run both of them under one main website, say www.example.com, which is written and deployed using a Visual Studio ASP.Net MVC web application project, and where an ASP.Net Web Forms website, would run from a subdirectory of the main site, say www.example.com/myapp? ...

How do I replicate and validate data from remote systems into SQL Server

I have a task at hand of creating some kind of logic for a database. There is a IBM MQ Series setup in place today that replicates data from a couple of remote systems. At the moment it changes in the remote system and dumps the data into a staging table in a SQL Server 2005 database. I want to validate the data according to some simpl...

How to integrate jBPM and Spring via scripts and EL.

I'm using/anticipating the following technology stack: JSF Seam jBPM Spring Of course, I'd like Seam to access Spring beans directly and have got this much to work fine. I'd now like to move down into jBPM and develop a proof of concept process definition that accesses Spring beans to perform actions and make decisions. To promote s...

Can someone explain why scipy.integrate.quad gives different results for equally long ranges while integrating sin(X)?

I am trying to numerically integrate an arbitrary (known when I code) function in my program using numerical integration methods. I am using Python 2.5.2 along with SciPy's numerical integration package. In order to get a feel for it, i decided to try integrating sin(x) and observed this behavior- >>> from math import pi >>> from scipy....