How create app to app communication in c#? [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have problem, because I can send data from program for example program1 to program2.
I see that can use events, observer but the problem is how.
Sorry but I not have any code.
Can anybody take here example or link for help to understand events and observers?

Let me quickly refer you to Microsoft Docs. This may or may not be exactly what you need, but it should point you in the right direction.
The linked docs list the following options:
Clipboard
COM
Data Copy
DDE
File Mapping
Mailslots
Pipes
RPC
Windows Sockets
There are many articles/guides on how to implement each of those options, so all you really have to do is to Google.
There are also obviously many other options, such as sending data over HTTP or any other easy-to-setup-and-use communications protocol already implemented in .NET (which is presumably what you are using).

Related

C# bot, that can instantly buy released item [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
is it even possible to make a bot in C# (windows forms), that would work like when Supreme release new items, the bot would instantly buy them? If anyone has any ideas please share them, thanks!
The answer is - yes, it surely is possible.
First of all you have to think about logging in on the site
Afterwards you have to have a link on where these drops appear and pass it to the code
Finally you need to just implement a automatic checkout system.
It will require a bit of work and time to do it.
There are already some projects made for this kind of websites.
You can check this link: https://github.com/jg-fisher/supreme-bot
It has an automatic checkout (providing personal details in the checkout form).
Also some bigger project of chrome extension - https://github.com/Paulowarren31/Supreme-Bot
I advise you to get suggestions from there and build your own program.

WebHook implementation example? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Reviewer's Note
The title is exactly as it is supposed to be, even if the accepted answer suggests WebSockets.
We are building an application where customer will send data to our application. Our application have different events, like validating the data, saving it to data base and etc. I want to notify the client about the status of their data, like the data is validated, data is saved in SQL, etc. Our backend service will be in C#. I am new to this WebHook concept and have never implemented this before. I am looking for code examples for both sending and receiving side of WebHooks.
I would really appreciate any help.
I think you are looking for WebSockets,
and to 'push' notification to the client, the proven and most popular .NET solution is SignalR, last time I checked :)
There are alternatives too, GitHub search: websockets c#
Most WebSocket libs will fallback to legacy ways, like polling, when WebSockets are not supported.

Siemens CSTA with C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need a quickstart for the connect ... maybe someone with experience on C# and how to make CSTA Link ? I just find one example but in Perl on Perl CSTA Example, but I still don't know hot to do on C#.
Thanks a lot!
Best Regards.
Siemens exposes CSTA API's. You can use those. There is a CSTADLL which is a collection of software for the Microsoft .NET platform that allows you to perform ACSE and CSTA operations for any of the three CSTA phases.
There are two namespaces you should have a look at: Com.Objsys.Csta.Common and Com.Objsys.Csta.Devices - depending on what exactly you are about to do.

Instagram Real-time API in C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any C# wrapper that supports Instagram Real-time API? I'd like to subscribe and receive updates in my application.
I've checked InstaSharp, but it doesn't seem to have the real-time functionality.
I have looked into this once before and I didn't see anything that worked quite like how you are thinking. I think you have to almost create everything from the ground up. How I am not exactly sure though. I'll try to do some research on this and post back if I find anything.
Best of Luck!
I'm working on an application that interacts with Instagram API, and was looking for some kind of wrapper too, but I didn't found one that fits my needs. So, I began to develop my own Instagram wrapper. Is not a full wrapper, but is working, and can show you how go ahead...
I'm using it to subscribe me to real-time updates, and request for data (mostly media) converting json into .Net objects.
Download it from here: https://www.dropbox.com/sh/3y0e0srx5rm1g88/AAB48GJKNTUAK_BniH5Cvf7ua?dl=0

open source instant messenger? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for an open source instant messenger based on .Net technologies (C# on Windows), and an open source project which has a small code base is appreciated, since I only need basic text message exchange function. Better authentication by a remote web services.
thanks in advance,
George
The XMPP Standards Foundation links to several .NET SDK libraries for those who wish to build their own IM.
Here's one link:
http://www.ag-software.de/agsxmpp-sdk/
There's also a CodeProject link that shows how easily you can be up and running using agsXMPP:
http://www.codeproject.com/KB/IP/JabberClient.aspx
Hopefully you find these to be good reading!
Here is C#, SIP instant messenger:
https://sourceforge.net/projects/officesip/

Categories