0

How can I send data from a Windows .NET application to a Rails application? The .NET application continously collects data from some workstations and periodically needs to send the data to a database. I will like to have the Rails application authenticate the sending .NET application and parse the receiving data before storing it in a SQLite database. Thanks.

Kidada
  • 215
  • 1
  • 12

2 Answers2

1

Create a web service in Rails and call it using .NET.

Info on creating a web service in Rails at this previous question: how to create a web service

Calling a web service in .NET is easily Googlable (but here's a good place to start: Consuming REST based web services in .Net).

Community
  • 1
  • 1
David
  • 72,686
  • 18
  • 132
  • 173
0

This can be done with a web service. This SO thread does a good job of explaining it

Community
  • 1
  • 1
jugg1es
  • 1,560
  • 18
  • 33