Click here to Skip to main content
15,888,113 members
Everything / Integration

Integration

integration

Great Reads

by Bryan O'Connell, rcarlson-cayen, Cayen Systems
Information and observations from an Agile transformation at a small software company in Milwaukee, WI.
by NightWizzard
...for example a WYSIWYG HTML editor to edit or display emails...
by Dev Leader
With this post, we’re still just scratching the surface of what’s doable when integrating Python and C#.
by Talal Tayyab
Continuous Integration and Delivery using Team City, Octopus, Visual Studio and GIT.

Latest Articles

by Pawan Kumar from CodewithPawan.com
Explore the seamless integration of @ngrx/translate with an Angular standalone API in this comprehensive guide, ensuring a smooth translation workflow for your applications.
by Uladzislau Baryshchyk
An overview of how to integrate Wolfram engine to your .NET application
by Arthur V. Ratz
How to quickly and easily create an automated chatbot or instant messenger (IM) application
by Ashwin Upadhyay
This article explain in brief about using ForEach loop in Azure Logic app to debatch the JSON File

All Articles

Sort by Updated

Integration 

13 Jan 2024 by Pawan Kumar from CodewithPawan.com
Explore the seamless integration of @ngrx/translate with an Angular standalone API in this comprehensive guide, ensuring a smooth translation workflow for your applications.
15 Oct 2021 by davidcafu412
Hi everyone,Recently I have been trying to use Bootstrap Switch for my ASP.net Web Form CheckBox component. When I load the page, I can see the switch, but when I click, nothing happens. Below here is my code :
13 Aug 2021 by Sara Collins
Dear Friends I am trying to compute a definite integral of a matrix the matrix is 2*10 I need to compute its definite integral from zero to t as we know the results must coincide to the sinus table. Here is the code before reaching the goal...
13 Aug 2021 by Richard MacCutchan
Look at the error message relating to your program: File "C:\Users\user\OneDrive\Desktop\44integral.py", line 58, in ANS1=integratetest(INTERVALtest) ... File "C:\Users\user\OneDrive\Desktop\44integral.py", line 54, in...
13 Aug 2021 by OriginalGriff
Getting your code to run does not mean it is right! :laugh: Think of the development process as writing an email: compiling successfully means that you wrote the email in the right language - English, rather than German for example - not that the...
10 Aug 2021 by Sara Collins
In order to compute definite integral $\int_{0}^{t}\exp(||e||^2)$ I have written this code How can I adapt the number of steps with the step mathematically it seems to be true but when I want to write the code I faced to a problem I have tried...
10 Aug 2021 by Sara Collins
Dear Richard thank you so much it has worked. I really appreciate it.
9 Aug 2021 by Richard MacCutchan
x = np.linspace(0.0, t, num) You cannot use floating point numbers for indexes, you must use integers, thus: x = np.linspace(0, t, num) The actual problem is that num is not an integral value. You also have repeated many of your import...
9 Aug 2021 by Richard MacCutchan
I have tidied up your code, and added some useful print statements, and this is the output: t: [0. 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1. 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2. 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3. 3.1 3.2 3.3 3.4 3.5 3.6...
4 Mar 2021 by Member 15090304
The first two hsql db statements work successfully however when we query a third statement the code gives an error saying it can not detect the database for that query. The database is connected and it will only allow two queries. Each statement...
21 Dec 2020 by Murthy Meka
Can anyone suggest best way for implementing the below scenario. In a multitenant application where we are tied up with different vendors, based on the logged in user we need to dynamically connect to a vendor's API and fetch user information....
21 Dec 2020 by Gerry Schmitz
Use an Interface pattern. Best Practice Software Engineering - Interface[^]
29 Sep 2020 by Richard Deeming
This is a problem with the Microsoft documentation - the feature requires Enterprise edition, but this is not mentioned in the documentation. Even if you don't believe the error message for some reason, other sources will confirm that CDC only...
29 Sep 2020 by SandeepKumar.K
Hi, I have deployed SSIS package on SQL SERVER 2019 Standard Edition(Version : 15.0.200) and package is using CDC control Flow task. Now, when I execute the package it's getting below error. Quote: 'cdc control task' cannot run on the installed...
22 Sep 2020 by Member 12799321
I have performed integration Testing on my feature but the problem is when I get the data normally from database it works as expected but when I create mock objects for testing purpose that method GetDetailedSAPInfoById returns null you can see...
30 Aug 2020 by Uladzislau Baryshchyk
An overview of how to integrate Wolfram engine to your .NET application
3 May 2020 by vijendradudhe
I have TFS Build pipeline through which I have added Steps and Scanning the project using Blackduck scan and same results are sent to Blackduck and in blackduck I can see that newly created projects which is just scanned through TFS build...
3 May 2020 by Richard MacCutchan
TFS Build pipeline configuration - Google Search[^]. No doubt you can find the other two by similar means.
10 Jul 2019 by cgprakash
Hi, I am new to the Workplace by Facebook, I heard from some articles that I can integrate the Workplace to my Sharepoint site, I searched for related articles and resources but I didn't find any resources. I need to clarify another thing, by adding of Sharepoint app to Workplace I can achieve...
10 Jul 2019 by Maciej Los
There's at least few articles about this: Sharepoint integrate Facebook - Google Search[^]
25 Feb 2019 by Arthur V. Ratz
How to quickly and easily create an automated chatbot or instant messenger (IM) application
10 Jul 2018 by Graeme_Grant
You don't need to use reflection with MEF, you simply Export & Import to share data - the data can exist in a DLL/EXE outside of the main app. So long as MEF can compose, the data will be visible. This is what we did in another MEF Solution[^] where reflection was requested for a plugin system...
10 Jul 2018 by JohnMeers
I have an application using MEF and am trying to write integration tests for the Plug-ins. The code I have is:- public string Run() { IFunction IUT = null; string Wanted = "NewUser"; foreach (Lazy func in...
27 Jun 2018 by #realJSOP
Create a user variable that is set from the command line. If you're running the ssis package from a SQL agent, you have to modify the command line to include the value to set to the package variable. If you're running the ssis package from the DOS command line, you have to use the appropriate...
26 Jun 2018 by Amirsalgar1
Hello Guys , I am new to SSIS , i have got the task where i have to get the xml response from the below URL and process the data to the SQL tables . http://134.15.215.228:8080/xdsrouter?docName=GS_Client_010101 . i am using XML source(kingwayssoft) as source and getting the xml response...
25 Apr 2018 by Amirsalgar1
Hello Guys , I am new to SSIS , i got a task where i have to load the XML file to the SQL server the XML file has more than 200 XML records in it as below example , Gambardella, Matthew XML1 ...
27 Mar 2018 by Member 12436884
I have a rough time integration with my desktop application. Here is what I want to do. I want to make a button in my app (not web application) calls Paypal Payment Web Page and can get notify when users finished(cancel, succeed event they close website) payment. I have one more...
4 Feb 2018 by aju6
I need to create an python code where the JSON language should be interpreted with it and that "raw samplecode.py" should be integrated with C# code and the output of the python code should be displayed on the C#. What I have tried: i already integrated the python code with the C# code by...
19 Dec 2017 by Ashwin Upadhyay
This article explain in brief about using ForEach loop in Azure Logic app to debatch the JSON File
3 Jul 2017 by Mahesh Jangid
You must have to get API from concerned authorities only. But since you want to use it as developer may be they can deny.
8 Jan 2017 by Hein Pauwelyn
How is it possible that Travis the build failed for the latest push but passed the Pull Request?On the Gist on 2nd link you could find the failed and passed output log of the npm run build command that Travis gives. You could also find the configuration of Travis.Links:See also this...
8 Jan 2017 by Hein Pauwelyn
I've found the solution of the problem.PR will merge your changes into the base branch and run CI tests. Push will run CI tests on the current branch. Merging the base branch into your branch will likely resolve your build test on the branch.
26 Nov 2016 by mayank.bhuvnesh
HI Need help for Payment Integration. I am using Instamojo Payment Gateway. How to integrate Instamojo Payment Gateway in asp.net??Thanks
12 Oct 2016 by gricardi
As users are migrating from traditional desktops to mobile devices, transitioning your Windows application to the web is the next step to increasing your exposure. Thinfinity VirtualUI delivers your Windows applications to users on any device, anywhere.
22 Sep 2016 by Sander Knape
Do you write integration tests? What about unit tests? I believe that more people say “Yes” to the second question than to the first. Which is kinda weird – for many applications, it really isn’t that hard to write integration tests. It might not even be necessary to setup yo
21 Aug 2016 by Seth Ji
// Partner salesPartnersStruct.SetValue("PARTN_ROLE", "SP"); salesPartnersStruct.SetValue("PARTN_NUMB", "102003");replace the above code with// Partner salesPartnersStruct.SetValue("PARTN_ROLE", "AG"); ...
21 Aug 2016 by Naveedathar
I am trying to integrate SAP with a .net web application using SAP nco 3 .net connector. I have successfully connected to the SAP system but when i try to create a sales order in SAP using BAPI "BAPI_SALESORDER_CREATEFROMDAT1" i get the following error: "Please enter sold to party or ship to...
21 Aug 2016 by Member 11920338
1)my application is windows application (RFID application) Present we are sending data to oracle,they are asked to change from oracle to SAP 2) For that purpose they are given SOAP web service we need to send parameters through url i googled and i found some code but it is not...
22 May 2016 by RajeshKumar D
Configuring PGP Encryption and Decryption part of MULE ESB
25 Jan 2016 by Member 11349973
I was working on integrating the slack API in my MVC application and I couldn't understand their WebHooks documentation. I want to be able to send and receive messages on slack through my API. I have comleted the sending part but what type of Webhooks should I work on for receiving the messages....
28 Dec 2015 by Marla Sukesh
In this article we Learn step by step how to create project with MSBI.
15 Dec 2015 by Member 12209831
"use strict";var specHelper = require("../../utils/intSpecHelper");var oracleHelper = require("../../utils/oracleHelper");var config = global.envConfig;describe("Profile", function () { // NOSONAR (relax "Functions should not have too many lines") var testProfileLinks = function...
5 Dec 2015 by Krishna P Seetharaman
How to call web service in biztalk asynchronously. Error handling and retrying, sending error email when the web service is down. Resume the orchestration to completion when the service comes back
26 Nov 2015 by baijnathpathak
Hi Everyone,My Greetings!I need some help in integrating web services into Biztalk 2013Scenario is we have several existing Web services which need to be configured in BizTalk 2013. From now onwards the consumer will access the webservices from Biztalk in stead of original URl. I...
24 Nov 2015 by Wolfram Steinke
Most of the mag stripe readers have a driver that will write the data direct to any window that has focus and the reader is active all the time.The simplest way is to have a hidden edit control that can accept the data when card is swiped.You may need to find the calls to turn the reader on...
17 Nov 2015 by Maniraj.M
Use PayPal's sandbox environment..Its a test environmnet for a payment gateway
17 Nov 2015 by F-ES Sitecore
https://www.instamojo.com/deve...
17 Nov 2015 by OriginalGriff
Never, ever, accept code from a insecure website to handle anything to do with real money.You do not know who is giving you the code, you do not know what it does, you do not know that it places the monies correctly into the appropriate account, without passing the details to any third...
27 Sep 2015 by delgaillo
I corrected the problem creating a new project of integration packages in VS 2010. Then, I added the dts subsequently generate the .ispac package and installed correctly in SQL Server 2012. I think, the problem was that the creation of a package in VS 2013 doesn't work in SQL Server 2012, at...
9 Sep 2015 by Member 11861286
Try this.Change$(".custom_check").bootstrapSwitch();To$(".custom_check input").bootstrapSwitch();
26 Aug 2015 by Sergey Alexandrovich Kryukov
The question topic is too big and too special. Please see:http://www.codeforge.com/s/0/mitsubishi-FX2N-PLC-Communication-Library-In-.NET[^],http://www.farnell.com/datasheets/1909349.pdf[^].—SA
26 Aug 2015 by OriginalGriff
Talk to the manufacturers of the PLC.They normally provide sample code and / or documentation which should get you started.But finding random choice from a website is unlikely to help you unless it is specifically written for the same make and model of PLC you are using - and we can't say...
14 Jul 2015 by Sergey Nizhegorodtsev
The article shows how to implement open source Stocks Tracker API in Java projects. Individual stock quotes can be easily fetched from various free online sources with this library.
9 Jul 2015 by Pavel Durov
In this article I will explain how to create a local WebView hosted Html/Javascript application on Winrt Platform and how to establish the communication between both sides.
3 Jul 2015 by Sergey Alexandrovich Kryukov
Sorry, but all this is totally off-topic. This is low-tech user-level stuff. You referenced something which was automatically deleted due to abuse report; same should go with your post. Please don't post off-topic matter, find some different site.—SA
2 Jul 2015 by delgaillo
Hello guys.I have the following problem. I have a package dtsx from a project developed in VS2008, then I would want to install this package in Sql Server 2012, the problem is that Sql Server 2012 doesn't run dtsx packages from VS2008. So, I have tried to upgrade the project in Visual...
22 Jun 2015 by Itban Saeed Usmani
Hello,I have to integrate a C#.Net application in a C++ un managed MFC application considering it a separate module of the software. I have tried the method posted here. I followed all the steps but it could not help me because Visual Studio 2008 refused to built my project having output...
22 Jun 2015 by Sergey Alexandrovich Kryukov
First of all, the idea to "integrate application", no matter what is it, is inherently bad. Libraries should be "integrated" (in fact, just used), not applications. This is not the purpose of most applications.Also, I would not advise going this way, because this could be either difficult or...
15 Jun 2015 by Sam__Khan
The purpose of this article is to demonstrate the integration between IBM Integration Bus and Salesforce.com using the REST API.
21 May 2015 by VIGNESH SUKUMAR
Tutorial on Azure Logic App
18 May 2015 by ADOConnection
New open source tool for CI and deployment
3 May 2015 by Richard MacCutchan
Please read Code Project Quick Answers FAQ[^].
3 May 2015 by Member 11661945
I just want to know the list of vendors or servise providers who provides APIs for multiple payment gateways (for eg CCAvenue, EBS, PayPal, Citrus pay)
10 Mar 2015 by Jim F. Johnson
This tip describes how to use a 3rd party tool to review SAP tables structure and exporting the metadata to Google Drive in CSV format.
3 Jan 2015 by Member 11350129
Im using the Libgdx framework and that is what´s making it all very difficult. Cause I want purchases to made with the click of a button. And that button is located in another "project".So what I figured was to use an interface playing as a middle hand sort of. This is what I´ve done: (Not...
8 Dec 2014 by Talal Tayyab
Continuous Integration and Delivery using Team City, Octopus, Visual Studio and GIT.
7 Dec 2014 by ZurdoDev
As mentioned numerous times in the comments, it could be anything. Integration simply means communication somehow between systems. But you certainly need to get more details before committing to anything.
6 Dec 2014 by deelll
When a company says that they need help with integration solution, what does it mean?Is it about Biztalk, SSIS, BI solution, SQL, xml or something else?
3 Nov 2014 by David Serrano Martínez
You have not lifted your finger off the mouse button yet when the calculation is served.
16 Oct 2014 by Pavel Durov
Article about dynamic Sqlite database management on Android platform using Java class reflection.
16 Sep 2014 by Math08avan
SQL Server Integration Services - How to read a text file
14 Sep 2014 by Member 11081963
I am grateful to CPallini for answering my earlier question which was closed by someone.CPallini has posted an answer to your question about "Use SDKs to write system integration interfaces":Integration of different systems is a rather difficult task, but of course it is feasible. You have...
2 Sep 2014 by Gio Palacino
Typically, when I have worked within Visual Studio on source-controlled projects I have used Team Foundation Server (TFS). With my current employer, we use Mercurial, and we use TortoiseHg to interface with it.
17 Aug 2014 by Arshid KV
You can sell your digital goods by using online software. Your client can purchase with any card and more payment options are enviable in this type of software. No coding skill required. You can upload your product then you will get url. This url can be integrate easily in your website. You can...
13 Aug 2014 by Member 10995141
I am integrating salesforce with sharepoint 2010.I have to convert Lead entity into Opportunity entity in salesforce using sharepoint 2010.The conversion should happen in both environments i.e. salesforce and sharepoint.
24 Jul 2014 by Gihan Liyanage
Here is good blog to Learn Biztalk Online. http://sandroaspbiztalkblog.wordpress.com/
25 Jun 2014 by Member 10273274
Dear,I have a requirement from the client regarding active directory integration with biztalk.and have searched and found that there is a nettcp based web service from Active directory . so I want to know how to integrate AD with BizTalk and the best way of integrating AD with BizTalk. I...
22 May 2014 by Arjun Holla
http://www.bimonkey.com/about-the-bi-monkey/support/ssis-component-samples-list/[^]
22 May 2014 by Monika Singh
I am looking for good sources to understand SSIS. I have already started goggling it. Looking for suggestion for good contents. Advance Thanks.Rg,Monika Singh
25 Apr 2014 by Sanket Saxena
I would suggest you to look here for starting points.Then follow the links might helps you:SamplesPostersVideoCode GalleryAlsoUseful InformationHope it helps :)
25 Apr 2014 by Monika Singh
I am new to BizTalk. I have developed small interface so I have some basic understanding till the point I have used it. So I need some resources where I can understand all the basics as well as advance concept of BizTalk. Please suggest.. Thanks in advance :)
24 Apr 2014 by Sampath Lokuge
Please read below article for more info.Good Luck ! :)Essential Facebook Programming: Building a Windows Client
24 Apr 2014 by kool15th
how to upload pictures on facebook through windows application in c#. What all data would be required from the users and how to upload their pics on facebook as they click their pics from a C# application through webcam. as the pic ic clicked the image should be posted on their wall in facebook.
11 Mar 2014 by Member 10387773
Hi Everyone,I have a an asp.net application which uses cygwin to execute shell scripts in Windows environment.sqlcmd utility is used in these shell scripts.The sqlcmd utility works fine when directly invoked from the .net application or when the script is directly executed at the Cygwin...
20 Feb 2014 by Maciej Los
I'm not sure what you want to achieve, but here[^] you'll find the sample usage of SQL CASE WHEN ... END statement. But...You need to know that OLEDB provider does not support CASE WHEN ... END statement. Rather than it, use IFF statement[^].
18 Feb 2014 by ahmed boughedda
hi, how to use the CASE WHEN syntax in sql command at the component excel source editor SSIS?
18 Jan 2014 by Petr Ivankov
Application of abstract approach to database domain
5 Jan 2014 by Hoa Súng
I am searching how to install jenkins on server which contains rails project but I get stuck.Thanks in advanced!
16 Dec 2013 by Seckin Tozlu
How to create a comprehensive test suite for your API
10 Dec 2013 by Petr Ivankov
Multidisciplinary paradigm of software development
6 Dec 2013 by Adam Zgagacz
I'm guessing you want to distribut eyour application as single .exe and load all dlls from embedded resource.If that's the case you need to:1) add dll to the project (Project/Add Existing Item..)2) change added dll properties:• BuildAction = embedded Resource• Copy To Output...
6 Dec 2013 by BrishPandey
while you are coding add referece of the dll to you code and then prepare the build.
6 Dec 2013 by agent_kruger
how to integrate dll's such as (Interop.JRO.dll) etc in the software exe. i am using windows form c#. Thanks in advance.
21 Nov 2013 by sonic_youth
This tip will tell you how to add popular web maps such as Google, Nokia, OpenStreet and Yandex maps into a Webix app with just several lines of code.
11 Nov 2013 by mg9893
I have an RGB image, have transformed into IUV color spaceI = (R+G+B)/3 = f1U = R-G = f2V = G-B = f3Now scale space representation is computed for each f1, f2, f3Ci(; t) =  fi() convolved with g(; t) .we evaluate a second moment matrix in the neighborhoodof (x; t)v =...
1 Oct 2013 by Dev Leader
With this post, we’re still just scratching the surface of what’s doable when integrating Python and C#.
19 Sep 2013 by santosh_pathak
HiI am making a Portal that has Classified, Blog,Forum and a custom website.Now,the web site has its Login tables and method.But the Forum and Classified Module i got is an Open Source Module.YAF and Classifieds Site Starter KitWhat i want to do is,When a user logs in from my...