Questions tagged [cross-application]
35 questions
85
votes
3 answers
How to start activity in another application?
I have application A defined as below:
…

user256239
- 17,717
- 26
- 77
- 89
6
votes
1 answer
Keeping a related ASP.NET application's session alive from another ASP.NET application
I have 2 applications running on the same domain. The flow goes like so:
Application 1
Application 1 -> Application 2
Application 2 -> Application 1
Application 1 is WebForms (asp.net framework 2.0), Application 2 is ASP.NET MVC 3 (framework…

JustinP8
- 1,353
- 1
- 14
- 33
5
votes
3 answers
Passing Credentials Between Application and IFrame
I have a web application (A) which contains an iframe. The iframe includes another web application (B).
Supposed I log into web application A and 5 different iframes are displayed hosting 5 different modules. One of those modules is a CRM…

Penguen
- 16,836
- 42
- 130
- 205
4
votes
2 answers
Create Button on other application window
I wrote below code to create an extra button on Calculator, but the button don't show:
var
Object1 : TButton ;
Hand: THandle;
begin
Hand:= FindWindow('CalcFrame', 'Calculator');
Object1 := TButton.CreateParented(Hand);
Object1.Show…

Mojtaba Tajik
- 1,725
- 16
- 34
3
votes
1 answer
Not Working corss-application activities with taskAffinity in Android 11
I have two application, App A and App B, now I want to start an activity in App B from App A, the launchmode of this Activity is “singleTask”.
The order:
Activity X (App A) ———> Activity Y (App B) ———> Activity Z (App B, launchMode=“singleTask”)
As…

YikFung
- 31
- 1
3
votes
1 answer
Building a .net application on classic ASP
We have a big classic ASP website, and we want to start writing new code in .net, (the website is way to big to rewrite 100% at this stage).
The old website uses session variables, will these still be accessible in the .net pages, and if not (which…

Tom Gullen
- 61,249
- 84
- 283
- 456
2
votes
2 answers
Using startActivityForResult across Android applications
I have written an application that has an so that other applications can start it using startActivityForResult(). When this activity is finished it has created an object that is like:
(Application A)
public class MyObject…

Blundell
- 75,855
- 30
- 208
- 233
2
votes
1 answer
Auto click on "GO" in smartfilter bar
i am doing cross application navigation from App 1 to another application by passing parameters.
in target application i have Smart Filter bar. i am filtering using "beforeRebindTable" event in smart Table.
my requirement is while i am navigating to…

Urvish
- 29
- 2
- 11
2
votes
1 answer
Cross app redirect in Forms Authentication
I have design 2 web apps and use Forms Authetication for single sign on
Web A: contains a Login.aspx page
Web B: contains an OK.aspx page
when access Ok.aspx in Web B, it will redirect to Login.aspx in web A (it work well)
But the problem is when I…

trbaphong
- 1,583
- 2
- 11
- 9
2
votes
1 answer
PySide Widget for 3dsMax and Modo
I'm trying to create a simple QT app using PySide and Python that I want it to run as a 3dsMax script, a Modo script and a stand-alone app if needed. So, I've saved the following files in my D:\PyTest. It's just a QLabel for this test.
When I run it…

Nick
- 221
- 2
- 12
1
vote
2 answers
Android cross-application data passing
Overview
I am creating an Android application which will scan various aspects of the device (contacts, apns, emails etc)
What I would like to make possible is for 3rd party application to register with my app on install/run/boot etc - making its…

justacodemonkey
- 620
- 1
- 8
- 20
1
vote
1 answer
Sharing nextcloud authentication with custom web application
I would like to develop an application (NodeJS, vueJS, postgreSQL) that uses the nextcloud user accounts. The idea is that the user authenticates with his nextcloud ID, and can then access both nextcloud and my website.
Note that my application is…

Ikit
- 31
- 1
- 4
1
vote
1 answer
Cross application authentication IIS to sub application
The issue I am having is I get a second login request when directed to the page in FileUploadWAP application. If the login code and config are deployed to the root default site the shared authentication works. I suspect that the path to the cookie…

John
- 49
- 1
- 5
1
vote
2 answers
How to send string cross-app in one UWP device?
I am developing application that consist of three separated applications. (two background, one with GUI) that are running on Raspberry PI 3B+ with Windows 10 IOT Core. Schematic is simple
Communicator -> Data transformation -> Visualization
My…

110mat110
- 564
- 6
- 26
1
vote
1 answer
How to debug communication between 2 independent applications ( macOS )
Can anyone explain to me, how applications usually communicate if one application has to send data to a second application. (an image for example). Or how can i find out how the communication is implemented?
In my example, i am trying to find out…

Lucca
- 1,447
- 4
- 16
- 20