How can I link my program to another program? [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have a program, Designed by C # and SQL Server databases
How can I import information from another program (Amadeus to book airline tickets) and displayed in DataGridView ???

You should use either Web Api or SOAP services, please check this link it'll give you some information. Link
For Example there is an API: Uber API
Update: Basically your question is very general sort of way. I would suggest you to look for an booking flight API and read it's suggestion.
P.S accept the answer if it was any help.

Related

C# - Bank check (Balance, transactions) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I just started on a personal project for scouting-groups, it is a webapp which will be build on the frontend in Angular2 and the backend will be a restfull server(asp.net/C#).
a part of my project will need to read or contact diffrent bankaccounts and check if the contribution of a certain month is paid.
the question is: Where to start?
Best way is to import transaction files. A direct connection to banks are most of the time only for big companies and is a lot of work to implement (if they let you). Most banks have multiple file types to export transactions, choose the most common and implement this.

cronjob in asp c# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have a question:
I have to do a project, which has something to do with reading data from txt into MSSQL. This function I solved it with a click-event. Right now, the reading process has to read the whole data automatically every day on the server, even without open the website. Can I do it with a cronjob or there are also other better solutions?
Have a look at Quartz.Net - it's a decent job-scheduling system.
It's probably overkill if you only have a single job.
Quickstart documentation is here: http://www.quartz-scheduler.net/documentation/quartz-2.x/quick-start.html
In addition to Quartz.NET you can also look at http://hangfire.io/.

Implementation of pay-wall in .net MVC 4 application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am trying to implement pay-wall mechanism in my MVC 4 application.
The requirement is to restrict access to some pages of a PDF file in preview mode and allow the complete file to display after pay-wall subscription.
i searched some links but they are providing only theoretical information about pay-wall.
Please suggest some link or examples for implementing it.
Any kind of help will be appreciated.
Thanks in advance.

Linking a Website to a Console Application in C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I just wanted some general information about some technologies that would allow me to link a website to a console application in C#.
Let's say for example that users on my website fill a textfield with some information, then I want to take this information, process it into my Console Application, and print some results.
What's the technology to do this?
Thank you very much!
You can use the class System.Diagnostics.Process (see http://msdn.microsoft.com/en-us/library/vstudio/system.diagnostics.process(v=vs.100).aspx) to start your console application.
Then, you can read/write to/from StandardOutput, StandardError and StandardInput, which are normal Streams.

How to implement MS-FSSHTTP for editing Word with WOPI host on C# and WOPI client is OWA [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am implementing MS-WOPI host with MS-WOPI client being Office Web Apps. I want to provide Word editing functionality and need to implement MS-FSSHTTP protocol.
I read the documentation http://msdn.microsoft.com/en-us/library/dd943623(v=office.12).aspx and
I also tried to fined some examples, but didn't get the success.
Could someone provide a simple example of MS-FSSHTTP implementation?
Here is a sample implementation using CobaltCore. Pretty much a combination of my answers about WOPI/FSSHTTP on this website in one project.
https://github.com/thebitllc/WopiBasicEditor
I think you're asking for the impossible. There is no such thing as a simple fsshttp server. Look at the videos on MSDN from conferences where they've discussed it. The fsshttp team estimates it will take over a year to properly build out a protocol server. It is not a project for the faint of heart.

Categories

Resources