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

How to define a function in python containing a definite integral whose free parameter is running between two fixed values?

I would like to define a python function that has three parameters: C, psi, and m but it actually internally has an integral that is running based on another variable called eta. def func(x: np.float64, C: np.float64, psi: np.float64, m: np.float64)…
Roosha
  • 89
  • 3
  • 10
1
vote
1 answer

How to add Camel properties component to camel context?

I'm currently trying to add properties component with location set to my properties file to use properties placeholders in my project: PropertiesComponent pc = new…
Hellmick
  • 99
  • 2
  • 11
1
vote
2 answers

Integration and interpolation in python

I have been trying to find a way to do this since days. I have an interpolated graph which I got from the following code: for i in range(1,6): u=np.linspace(0.0,2.6,num=i) c=np.linspace(0.3, 1.0, num=i) c_list = np.zeros(len(u)) for i…
1
vote
1 answer

Apache camel Endpoint schemes duplication

in apache camel, we have endpoints associated with scheme strings like "cxf", "ahc", "http" and the likes. What happens if there are two components built using the same scheme? I don't see a validation from camel framework which prevents the…
Gopal
  • 11
  • 3
1
vote
1 answer

Why my REST api created with camel servlet doesn't expose?

I'm currently struggling with exposing the REST api in my project using Apache Camel. When I run the project it seems to be fine in the console, but it just doesn't work: curl http://127.0.0.1:8080/materials curl: (7) Failed to connect to…
Hellmick
  • 99
  • 2
  • 11
1
vote
0 answers

Java- SalesForce SOAP API integration- adding to SOAPHeader for

I am trying to connect to Salesforce from java client using SOAP api. The integration requires me to add wsse:Secuirty headers to enter proxy credentials. Anyone has done this before? I need to set wsse:security SoapHeader in my request, could not…
Quest_sfdc
  • 111
  • 2
1
vote
0 answers

FEM Integrating Close to Integration Points

I am working on a program that can essentially determine the electrostatic field of some arbitrarily shaped mesh with some surface charge. To test my program I make use of a cube whose left and right faces are oppositely charged. I use a finite…
1
vote
1 answer

How to generate JAXB data format from XSD schema?

When I try to marshal data I got from the database in Apache Camel using JAXB and providing XSD schema I get the error java.io.org.apache.camel.NoTypeConversionAvailableException: No type converter available to convert from type:…
Hellmick
  • 99
  • 2
  • 11
1
vote
1 answer

is there a direct explanation for each google-ads.yaml item?

I am looking for collect data from Google ADS API into GCP by using Python scripts and it requires to fill these items for authentication in the google-ads.yaml file: developer_token: client_id: client_secret: refresh_token: login_customer_id: I…
1
vote
1 answer

Integrating Spring & JDBC into JSF2 login page

I've used a properly running example project (documentation) to create a simple JSF login page working with Spring Security on Tomcat 7 using Eclipse. The above example stores usernames, passwords and roles in applicationContext-security.xml in the…
Lyubomir
  • 21
  • 3
1
vote
0 answers

Unable to run integration test on Flutter

When I run the integration tests, the 'Instantiating tests...' loops forever. The app loads in the device correctly but nothing happen. Android Studio Screenshot I created the following failing test: app_name/integration_test/app_test.dart import…
DaBC
  • 11
  • 3
1
vote
1 answer

Google App Engine datastore remote integration

How would one go about using the Google App Engine datastore as a database for remote stand alone java programs? Is anyone aware of a framework that could serialize the entities and make them available in other projects as java model…
1
vote
1 answer

Failed to connect to repository Error while Building the Maven Jenkins Job

Here is the error I get when trying to configure the SCM URL of the job: Failed to connect to repository : Command "/usr/bin/git ls-remote -h -- https://xgitlab.asee.org/asee-fro/asee-fro.git HEAD" returned status code 128: stdout: stderr:…
1
vote
0 answers

Offline integration/communication using flutter and R language?

I need to create a integration between a Flutter Application and a statistical language R. We are developing a students test Flutter application that also works offline too, and we need to make some how a way that flutter application connects with…
Lucas Fernando
  • 344
  • 3
  • 11
1
vote
0 answers

Seurat cross -species integration

I am currently working with single cell data from human and zebrafish both from brain tissue! My assignment is to integrate them! So the steps I have followed until now : Find human orthologs for zebrafish genes in biomart kept only the…