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
2 answers

Using Google Gears with Rails

I have been tasked with exploring the possibility of offline access of my webapp. What are people's experiences using google gears with rails? I am aware of the gearsonrails project, but it has some really strange constructs and doesn't appear to be…
salt.racer
  • 21,903
  • 14
  • 44
  • 51
1
vote
0 answers

MS Graph API frequently/excessively triggering the client app against Active Directory User changes

Background: I wanted to receive notifications in a Logic App for Azure Active Directory Users' changes. I created a subscription to AD User changes using Microsoft Graph's REST API: POST https://graph.microsoft.com/v1.0/subscriptions { …
1
vote
2 answers

Is there anyway to check whether the google account that user integrated is a Google workspace account(Gsuite) or normal account?

I'm trying to create an app which uses google calendar api and can block dates on calendars of all persons of an organization and to do that I need to integrate with the google workspace account of the organization, I want to add a check so that the…
1
vote
1 answer

Why sympy gives different/wrong answer when integrate fraction of power?

I am running a definite integral but the sympy gives me a different answer. I don't know what went wrong? Can anyone help? Thanks The equation integrated by Wolfram, the result is as expected 1.097 import sympy as…
Xuan Shi
  • 11
  • 1
1
vote
0 answers

Is it possible to set up a row security policy (from BigQuery) with Python

I would like to create this row level security in Python. It is a row level security we are able to create in Google Cloud Platform through Bigquert but I would like to create it directly from a python script through possible API. Someone has…
1
vote
1 answer

How to use scipy.integrate.nquad and passing arguments to it while using LowLevelCallable cfunc

I'm quite desperate trying to implement an integration which result I wanna use as initial data for a PDE. The integral itself is scalar-valued and needs to be evaluated on the whole space $\mathbb{R}^3$. First of all, I do not expect a very fast…
Hamilcar
  • 113
  • 2
1
vote
1 answer

XRAY and WebdriverIO integration

I am trying to integrate XRAY with webdriver IO , mocha using the guide below https://docs.getxray.app/display/XRAYCLOUD/Testing+web+applications+using+Mocha+and+WebdriverIO#tab-API The below - curl -H "Content-Type: application/json" -X POST --data…
Mahima
  • 43
  • 5
1
vote
1 answer

Numerically integrate the function

I've got the following code in matlab: gamma=1.01; [t,phi] = ode45(@(t,x)(gamma-F(x,pi/6, 0.5)), [0,100], 0); plot(t,phi) hold off; title('\gamma = 1.01') function out = F(p, a, b) phi = mod(p,2*pi); out = (0 <= phi & phi < a ).*(phi/a)…
Jane
  • 21
  • 3
1
vote
1 answer

how to find if a point x,y is inside a given rectangle in monte carlo integration

I am doing monte-carlo-integration of a rectangle that contains rectangle/s inside the enclosing rectangle. I want to find out the area of rectangle that is not covered by any of embedded rectangle. Below are the class of rectangle and the…
Gunners
  • 55
  • 5
1
vote
1 answer

C#/ASP.NET MVC: how to register/log in a different web application if I know username & password?

I have a primary web app with authentication on example.com, and I have a secondary app with authentication on subdomain.example.com I want the 2nd app to be integrated with the first one. So once a user registers and logs in, s/he doesn't have to…
Alex
  • 34,581
  • 26
  • 91
  • 135
1
vote
1 answer

Zammad integration to 3CX

I will like to integrate a Zammad installation to 3CX PBX. I found how to do it on the 3CX documentation but, I didn't found a great suggestion. Am open for more suggestion especially a great example.
Tchadozor
  • 13
  • 4
1
vote
2 answers

IBM Maximo - Go To Custom Application (With Where Clause Provided)

I am working on a Maximo application for our business, and one of their requirements is to keep track of staff that have been offered a shift. If there are 10 staff members, they would need to cycle through this list (ordered by seniority) when…
araisbec
  • 1,223
  • 3
  • 16
  • 27
1
vote
1 answer

How to track event for Event Tracking Activecampaign

may I ask how to track the specific event with the event tracking ActiveCampaign code?` For example, if I want to track button clicks on my own website, how do I add on in this php sample code here. Thank you.
Ellenfih
  • 11
  • 4
1
vote
1 answer

How to run nestjs with electron?

I am trying to make a desktop application with electronjs. Since nestjs makes the back-end development super-easy, I want to use it with electron. Initially I tried to run the command electron . && nest start This makes the nest process start…
Vivek Kumar
  • 11
  • 1
  • 3
1
vote
0 answers

WireMock doesn't receive the HTTP request issued by HTTP client

I am writing integration test to mock external local service called dates-service-svc which actually runs on port 8081 . I am using wireMock to mock the service and HTTP client to issue a request to dates-services-svc , but the requests issued by…