Questions tagged [integration]

The process of linking together different computing systems and software applications physically or functionally, to act as a coordinated whole. For numerical integration problem, please use tag [numerical-integration].

Integration can also refer to the Integration function in Calculus.

Useful Links

Related Tags

5329 questions
23
votes
4 answers

How to unit test production routes in Apache Camel?

Let's say I have my routes created in separate RouteBuilder class. It looks like: grab message from JMS queue do some transformation, validation etc depending on validation results forward to specific JMS queue and save something in DB I'd like…
veilsoen
  • 329
  • 1
  • 2
  • 10
23
votes
3 answers

run single integration test with gradle

I'm trying to run a single integration tests using gradle's -Dtest.single flag. I have added another source set, src/integrationTest and put the tests in there. I have an integration test task task integrationTests(type: Test) { dependsOn…
Jeff Storey
  • 56,312
  • 72
  • 233
  • 406
22
votes
1 answer

Qt Eclipse Integration and custom widget plugin

What is the correct procedure to compile a custom widget with the Eclipse Integration plugin, under Windows with MinGW? I tried the following steps, but I cannot see the widget in the Widget Bar. Installed Qt 4.6.1 for Win32 (with MinGW) Installed…
Myzhar
  • 321
  • 1
  • 4
22
votes
1 answer

Using Magento as the main, and creating a single sign on to integrate with other third party software

This has been something I have been trying to work on for a good long time. It first started with Prestashop as an integration with other scripts or pieces of the puzzle I needed to make for an overall website. I am currently still using Prestashop…
21
votes
4 answers

xUnit.net how can I specify a timeout how long a test should maximum need

I have integration tests set up with xUnit.net. Is there a way to configure how long an integration test should last maximum? I mean a threshold.
codefruit
  • 388
  • 1
  • 2
  • 7
20
votes
4 answers

Integrating Play framework 2.0 and Spring framework

I have developed a Spring/JPA application: the service, repository and domain layers are nearing completion. The only layer that is missing is the web layer. I am considering using Playframework 2.0 for the web layer but I am not sure whether I can…
balteo
  • 23,602
  • 63
  • 219
  • 412
20
votes
2 answers

Create GitHub issue from Freshdesk

We are currently using Freshdesk for our customer support and GitHub for our code. On receiving a bug or an improvement feature request via Freshdesk, we would like to forward that ticket (with all the details + screenshots) to an email in GitHub so…
SJL
  • 215
  • 3
  • 11
20
votes
2 answers

Integrating JSP with AngularJS, Is it a concern in real world?

Am I going in a right direction of learning Angular JS? I'm new to AngularJS but managed to run a jsp file which contain AngularJS code, and made a test calculation/addition and it worked good. Later when I search web forums, I came to know they are…
user2986018
  • 341
  • 1
  • 2
  • 6
20
votes
12 answers

Is there a bug/issue tracking system which integrates with Mercurial?

I've used Trac/Subversion before and really like the integration. My current project is using Mercurial for distributed development and it'd be nice to be able to track issues/bugs and have this be integrated with Mercurial. I realized this could be…
basszero
  • 29,624
  • 9
  • 57
  • 79
20
votes
2 answers

Using SignalR server from Python code

What are my options for integrating Python with SignalR? The Python code is a part of large 3rd party product, not a matter of language preference. SignalR server provides subscriptions to existing .NET products. We would like to reuse .NET SignalR…
Den
  • 1,827
  • 3
  • 25
  • 46
20
votes
7 answers

Integrate Stack Overflow into IDEs?

Okay, this is just a crazy idea I have. Stack Overflow looks very structured and integrable into development applications. So would it be possible, even useful, to have a Stack Overflow plugin for, say, Eclipse? Which features of Stack Overflow…
Thorsten79
  • 10,038
  • 6
  • 38
  • 54
19
votes
1 answer

Get a slack notification if mentioned on Github

Zapier has a very cool feature you can add which will send a slack notification every time you are mentioned on github. https://zapier.com/apps/github/integrations/slack/1596/send-a-github-new-mention-to-slack-as-a-new-message Unfortunately it is…
tgreen
  • 1,720
  • 1
  • 16
  • 28
19
votes
10 answers

'sorry some error occurred' while integrating PayUMoney payment gateway in Test mode

I'm trying to integrate PayUMoney payment gateway in my client site. My client provided me the login details of PayUMoney. I was able to locate the Merchant Key but cannot find either of the two: Merchant Salt Developer site where I can create a…
Ashutosh
  • 4,371
  • 10
  • 59
  • 105
19
votes
1 answer

Blackberry - How to use notification icon in statusbar

In RIM Blackberry OS 4.6+ there is a new feature - ability to show notification icon in statusbar. Integrated application use it to give quick and informative information for user: Dealler - missed calls, Messages - unread messages etc. removed…
Maksym Gontar
  • 22,765
  • 10
  • 78
  • 114
18
votes
1 answer

How to calculate the double integration in R

This is my r code to calculate beta values for each case which is pretty simple data =data.frame( "t" = seq(0, 1, 0.001) ) B3t <- function(t){ t**3 - 1.6*t**2 +0.76*t+1 } B2t <- function(t){ ifelse(t >= 0 & t < 0.342, …
Stupid_Intern
  • 3,382
  • 8
  • 37
  • 74