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
44
votes
5 answers

Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli)

Im working on Smooks - Camel Integration.Im stuck with an error.The Build Fails when I try to Run it using mvn exec:java [ERROR]: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli) on project …
Shrikant Pagar
  • 441
  • 1
  • 4
  • 3
43
votes
3 answers

What is the difference between a channel adapter and a messaging gateway pattern?

No matter how much I read about those two patterns I just can't see the difference.
Pillblast
  • 1,171
  • 6
  • 18
  • 25
37
votes
3 answers

Send webhook upon sending or receipt of email

I have been looking around for how to create a webhook that is triggered when an email is sent or received in Gmail. For example someone sends an email, that email gets POSTed as a JSON object to one of my applications. I have found many middleman…
Ryan-Neal Mes
  • 6,003
  • 7
  • 52
  • 77
36
votes
11 answers

Bug tracker setup with Git integration?

I know I can do most of this by hacking Trac and using Git hooks, but I was wondering if someone has / knows of something ready. Commenting on (and closing) tickets from commit messages would be nice, specially if the diff appears inline with the…
Jordi Bunster
  • 4,886
  • 3
  • 28
  • 22
35
votes
7 answers

Integrating Material Design Lite with Angular2

I have a small problem in integrating a meterial design (http://www.getmdl.io/) in ng2 Can you please help me I will put it in points what I have done http://www.getmdl.io/started/index.html#tab1, explains the integration of the…
RONE
  • 5,415
  • 9
  • 42
  • 71
34
votes
1 answer

Cocoa: integrate NSApplication into an existing c++ mainloop

I know, that I am not the first one to try to use Cocoa on OSX together with an existing c/c++ main loop, but I am not really liking the solutions I came across so far so I came up with a different idea I'd like to discuss. The most common way I…
moka
  • 4,353
  • 2
  • 37
  • 63
33
votes
6 answers

Can someone explain an Enterprise Service Bus to me in non-buzzspeak?

Some of our partners are telling us that our software needs to interact with an Enterprise Service Bus. After researching this a bit, my instinct is to say that this is just buzz speak for saying that we need to have a platform-indpendent way to…
Jason Baker
  • 192,085
  • 135
  • 376
  • 510
32
votes
3 answers

Best Method to SFTP or FTPS Files via SSIS

This question originally asked which is the best method for uploading files via SFTP or FTPS in SSIS. It now just lists the pros and cons of each solution. I personally use CozyRoc's SFTP library these days, but I've used each of the below…
Registered User
  • 8,357
  • 8
  • 49
  • 65
28
votes
1 answer

Integration of Python console into a GUI C++ application

I'm going to add a python console widget (into a C++ GUI) below some other controls: Many classes are going to be exposed to the python code, including some access to GUI (maybe I'll consider PyQt). Should I run the Python code in a separate…
Andrew T
  • 5,549
  • 7
  • 43
  • 55
27
votes
2 answers

integrating gitlab with sonarqube

I have GitLab CE (v8.5 at least) installed on my server. I would like to integrate it with sonarqube so that merge requests shows any issues in the comment section. Has anyone integrated these 2 systems successfully? At the moment, only sonarqube…
aver
  • 555
  • 2
  • 7
  • 21
25
votes
4 answers

How to automate integration testing?

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 component you want, without external dependencies. But at some point, you have to bite the bullet and test classes which…
Nicolas Dorier
  • 7,383
  • 11
  • 58
  • 71
25
votes
4 answers

Querying / Pagination Across Microservices

Our shop has recently started taking on an SOA approach to application development. We are seeing some great benefits with the separation of concerns, reusability, and other benefits of SOA/microservices. However, one big item we're stuck on is…
Mike
  • 2,334
  • 1
  • 23
  • 27
25
votes
2 answers

How do I integrate two 1-D data arrays in Python?

I have two tabulated data arrays, x and y, and I don't know the function that generated the data. I want to be able to evaluate the integral of the line produced by the data at any point along the x-axis. Rather than interpolating a piecewise…
user2565770
  • 385
  • 1
  • 4
  • 8
23
votes
3 answers

Can someone explain the perforce integration options?

Specifically: Why do I need to explicitly enable "Enable baseless merges" all the time? I am integrating from my branch to the trunk. What does "Enable integrate over deleted targets" mean? Shouldn't it do this by default? If the file doesn't…
Jeff Meatball Yang
  • 37,839
  • 27
  • 91
  • 125
23
votes
5 answers

How can I read a file to an InputStream then write it into an OutputStream in Scala?

I'm trying to use basic Java code in Scala to read from a file and write to an OutputStream, but when I use the usual while( != -1 ) in Scala gives me a warning "comparing types of Unit and Int with != will always yield true". The code is as…
Maurício Linhares
  • 39,901
  • 14
  • 121
  • 158