How can i use .net Remoting over internet [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have two application on different computers than connect to each other by Remoting Channel.
I want to control server from client on different network (over Internet).
How i can do that?
Is it possible to configure Remoting to bypass/punch holes in NAT?

In general, I would recommend using WCF instead of Remoting, especially if you're going to try to work over the internet.
Neither technology will bypass your firewalls, though WCF does provide far more options for configuring the channel which is used for the communication. This often makes it simpler to provide an endpoint that will work for internet connections and communication.

Related

Microservice Messaging Choices [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I am new to microservices, but I'd like to know what the best way to handle communication is.
I've looked into some solutions, but like to know your opinion what todo :
My microservices are hosted on azure atm and I call them with REST services,
but...
I want that the services cannot be called from anybody except from other services as I have a facade API for external apps.
I've looked into Servicebus, Eventhubs, REST , WCF, SQL with RabbitMQ, but I have no idea what is the fastest messaging service.
I prefer speed and stability over everything ,high complexityis not a problem.
Does anybody have advice on this?
Thank you in advance
I'd suggest RabbitMQ, it's easy to get started in C#, you can use the MQTT protocol or AMQP.
If you decide to use a different broker this is quite easy to update, minimal code changes are generally needed.
Both give you a lot of functionality without a lot of code.
It's possible to test clients with various online brokers, though I wouldn't use them necessarily for production.
For C# clients have a look at
https://m2mqtt.wordpress.com/
http://www.rabbitmq.com/dotnet.html

Using TTL without ping [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Are there any ways to use Time-to-live value with a tcp or webrequest? In some networks icmp and echo packets are not allowed. I need a way to limit a request with specific TTL value.
You can use System.Net.Sockets.Socket.Ttl to set the TTL if you are creating the socket yourself. I suppose you could do this if you want to make a web request over it: C#: How to execute a HTTP request using sockets?

Can a C# WinForm app use a remote MySQL connection? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Is connecting to a remote MySql database through WinForms as simple as changing the connection string, or are there more steps required?
Is connecting to a remote MySql database through WinForms as simple as changing the connection string
Yes, It is.
or are there more steps required
And more steps are required such as allowing remote connections, getting through firewall if any. Proxy settings etc.

Why do i get results in the web client even though the server is off? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I am a web service applications beginner.
I wrote a web service application and a simple web client application in order to test the service.
It works fine, but i found out that even when the service application (that runs another application) is off, i can get the result at the client side.
Is it ok? If not, what could be the problem?
I can only think of two possible explanations -
Either pages are cached somewhere (client, proxy servers, web servers) or the client does find a server (as in - it isn't off, or it doesn't go to the server you think it is)

WCF client server Application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to create 2 applications. i.e, 1 for client and another 1 for server. Client app will be installed in so many computers and service should be run automatically.
If i open the server app, i need the client computer details and select the computer and send some operation like shutdown. then the client computer should execute the shutdown code and it should be turned off.
Please can u tell what type of concepts i have to use in Windows communication service. I'm new to Windows communication service.
what you need is a duplex communication you can start with wsDualHttpBinding the link bellow provide a good example for starting, and in second time you can host your service in windows service on both client and server something like in this link
hope this help

Categories