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
1
vote
0 answers

Karate : UI - Jenkins Integration

I have a doubt regarding Jenkins integration with Karate. We are using karate for ui testing. And we need to integrate it with Jenkins and should be running inside a docker container. The issue we are facing is - chrome is not getting invoked.Chrome…
1
vote
1 answer

prevent unwanted access to back-end system with facebook login

I'm writing an iphone application which uses facebook login. When the user logs in the fb access token, email address is sent to an back-end DB over a web service. Now the problem is how am I going to recognize it when the access token is changed by…
1
vote
0 answers

Why does my NetSuite Create Operation not return any of the custom fields?

I have full access to the fields on NetSuite as an Administrator. There are 4 custom fields on the 'classification' record type that are not pulling into the XML Profile in Boomi. It appears that this behavior only happens with the 'classification'…
1
vote
1 answer

problem in saving table to database using hibernate using hibernate.hbm2ddl.auto , getting run-time exception

I am trying to map my java object to MySQL database using hibernate but i am getting following exception Exception in thread "main" org.springframework.dao.InvalidDataAccessResourceUsageException: could not retrieve snapshot:…
Anupam Gupta
  • 1,591
  • 8
  • 36
  • 60
1
vote
1 answer

It's possible to integrate Python with Java?

I have a main application that is coded with Java, but I want to use Python because the NLTK lib. I want to know if it's possible do some integration with these two languages. Thinks like passing parameters from Java to Python and retrieving…
Renato Dinhani
  • 35,057
  • 55
  • 139
  • 199
1
vote
1 answer

MySQL select highest users highest ranked group doublets

My problem is that in the result a user can be in it more then one time if he is in more then 1 higher ranked group. SELECT xf_user_group_relation.user_id , xf_user_identity.account_name, xf_user_group_relation.user_group_id, MAX(…
BlackVoid
  • 627
  • 1
  • 6
  • 21
1
vote
1 answer

Google Cloud alerts to Opsgenie alerting system

for example: i have GCP alert set high cpu usage for vm and this will send email to my team. Im exploring a way to enable those GCP alerts send to Opsgenie. So then i can configure escalation workflow so Opsgenie can alert relevant team member. Now…
Poobalan
  • 11
  • 1
  • 5
1
vote
1 answer

How can I consume a SQL database to create / update records in Salesforce using apex?

Is it possible for a SQL database to be consumed from Salesforce? What happens is that account records are loaded into the SQL database and a code is generated, so what I am looking for is that every month Salesforce consult this database to verify…
1
vote
0 answers

How to get data in spring integration replyChannel. Able to send request using TCP Outbound Gateway but getting timedout without reading reply channel

My application has a requirement to send a string to a host and receive host's response through TCP socket communication. I have done it in plain Java socket programming. I want to do the same using spring integration. I used TCP Outbound Gateway as…
1
vote
1 answer

Checkout previous success version (revision) in teamcity

Oure teamcity server (6.5) configured to checkout sources from SVN. For some build proceess cases I need checkout previous successfully builded version(revision). Can teamcity do this? And if can, how to configure checkout?
Andrey
  • 11
  • 1
1
vote
2 answers

Lotus Notes integration with a Java Portal Platform

I am using a Java based Portal Platform. I need to show within my portal information stored in Lotus Notes. Considering security issues, what are the recommended ways to do this? Are there any open source JSR 168 portlets out there that integrate…
Kishnan
  • 659
  • 2
  • 8
  • 16
1
vote
0 answers

configuration based API request response mapping in java

I have requirement where i want to integrate different Service providers REST APIs and switch to one of them based on request parameter. Example if request parameter has type ="A" than I will be redirecting request to Service Provider A , get data…
nikhil
  • 877
  • 3
  • 11
  • 36
1
vote
1 answer

Numba for SciPy Integration and Interpolation

I have used Numba for speeding up my code. It works great and provides a 2-3x factor improvement. However the major time spent in my code (about 90%) is in the scipy quad integration and interpolation (linear and Cubic Spline). I do these…
1
vote
3 answers

Launch Office Communicator from asp.net

On an intranet I am building there is a need to have instant messaging. The client already uses the Office Communicator application so I would like to use that if possible. The Intranet will have an employee directory and I would like to have a…
Blatfrig
  • 591
  • 1
  • 7
  • 21
1
vote
1 answer

Is there a way to numerically integrate in Fourier space with scipy.fft?

I am interested in integrating in Fourier space after using scipy to take an fft of some data. I have been following along with this stack exchange post numerical integration in Fourier space with numpy.fft but it does not properly integrate a few…