I have already build this application. To give you some details. I am building kind of server application which needs to be up and running like a windows service. The AdminLTE application should administrate this server e.g. AddClient() RemoveClient(), ...
I guess it is not a purpose of ASP .NET MVC Web Application to "host" the server application. Therefore I am wondering how to build the server (I already have a C# lib with functionality I need), or what .NET project type I should use for it.
You are trying to expose an existing C# library through a UI like MVC? Or are you trying to expose the C# library over a service layer? Or both?
rudolf.pribis
My preference is to have full access to methods and properties of classes provided by the "server" project. And simple use in ASP .NET MVC Web application.
You're asking questions as if the community knows about your "server" project. It's not clear why you have this problem. Usually, if you built a library then you are fully aware of how the library works. Are you using a 3rd party library?
All-Star
52141 Points
23246 Posts
Re: Using WCF service to build a server application for ASP .NET WEB application
Jun 05, 2020 01:37 PM|mgebhard|LINK
You are trying to expose an existing C# library through a UI like MVC? Or are you trying to expose the C# library over a service layer? Or both?
You're asking questions as if the community knows about your "server" project. It's not clear why you have this problem. Usually, if you built a library then you are fully aware of how the library works. Are you using a 3rd party library?