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
1 answer

How do I make use figma UI for a desktop app?

I have a few UI designs made in figma which I want to use in a desktop application made using C/C++ or Python. Is it possible to import the the designs into the codebase or is it just a blueprint design I have to recreate from scratch using…
1
vote
0 answers

database writes need to be verified in an integration test?

I basically have an api that writes to 2 different tables, and am using supertest to make api calls to write a certain data to the database e.g. POST /userCertificates writes his address in the address table, education in status table like so: I…
haxwagores
  • 13
  • 3
1
vote
1 answer

PayPal checkout write to database onApprove

I'm hoping some knowledgeable soul may be able to explain where I'm going wrong with the code below. I am trying to upgrade from PayPal Encrypted Payment Settings (EPS) to a more current PayPal checkout solution. I've written my shopping cart in PHP…
Steve
  • 21
  • 3
1
vote
4 answers

Any ideas on how to integrate with nmap programmatically?

I'm just starting to look into how to integrate nmap, an open source security product, into some c++ code. If anyone's tried this, and has some ideas on the best approach, I'd certainly appreciate it. Thanks for the responses. Specifically, I'd…
Jack BeNimble
  • 35,733
  • 41
  • 130
  • 213
1
vote
0 answers

How to upload a file from javascript fetch api to external system

var header = boundary + "\r\nContent-Disposition: form-data; name=\"file\"; filename=\"" + this.fileData[0].Title + " \"" + "\nContent-Type: application/octet-stream" ; var footer = boundary; const body =…
user106835
  • 11
  • 2
1
vote
0 answers

Slack Github integration

I am integrating Github with Slack to receive updates such as pull request, issues, commits etc. But when I subscribe to Github repo it shows all the notifications from all devs whenever they make changes. I only want notifications when I or one…
1
vote
0 answers

How to add SharePoint list data or Google sheet to Active Campaign lists?

I am using SharePoint Online lists as a backend. I have requirements like when users add data to the SharePoint list, the same data needs to be added to the Active Campaign lists. There is no direct connector for Active Campaign under Power…
1
vote
1 answer

EJB and FLEX

I'm working on a new application using EJB3 -> BlazeDS -> Flex. I can't find good example to see how to integrate EJB with BLAZEDS. Can someone give me some pointers on how to link them together.
Maksim
  • 16,635
  • 27
  • 94
  • 135
1
vote
1 answer

Cybersource Hosted Order Page Integration

I want to integrate cybersource as a HOP i.e. the user will be redirected to the service provider to complete the payment. I am not able to find proper APIs for generating the hosted order pay for redirecting the user. Have gone through a…
1
vote
2 answers

Integration and Plugin folders missing in cypress

I have generated cypress folder..In that i could see only support and fixture folders. Integration and plugin folders are missing...pls help to resolve
saranya
  • 11
  • 1
  • 2
1
vote
0 answers

How do I import or load data from a webhook into Azure

I'm trying to automate sending data from a webhook service into Azure, but I cannot for the life of me find appropriate information. It keeps pulling up how to create a runbook from a webhook, all in azure, but I need to figure out how to pull in…
1
vote
1 answer

Solving an integral with dirac delta using sympy

I'm trying to solve the following integral using sympy: v is velocity, C_i is the concentration at the time step t_0. This is what I have so far: import sympy as smp from scipy.integrate import quad to,x = smp.symbols(('to','x'), real=True) def…
1
vote
0 answers

is there any way to automatically export reports to testrail?

I would like to export test data from RP to testrail automatically. I have found the following issue but without any information on how it was solved or why was this closed. Would be happy to any guidance on how to set it…
YafimK
  • 195
  • 4
  • 15
1
vote
0 answers

Sync github release notes to corresponding JIRA releases

I have a requirement to update JIRA release notes based on the Github release notes for the respective releases. Is there a way to edit JIRA release notes via the API?
Venkataraman
  • 151
  • 3
  • 10
1
vote
1 answer

How to calculate Vertical Integration of moisture flux convergence in Python?

I'm new to python, I calculated the Moisture Flux Divergence [MFD] (i.e. {d(qu)/dx}+{d(qv)/dy} ,q is specific humidity and u,v are zonal and meridional wind components) over India at pressure level 850 hPa using metpy.calc function HMC_LE =…