Как обновить некоторые данные на клиентском компьютере
Привет Друзья,
Пожалуйста, помогите мне в соответствии с моим нижеприведенным сценарием.
Предположим, клиент использует мое приложение и купил лицензию, скажем, для n пользователей.
более поздние клиенты хотят увеличить количество пользователей до n+1 пользователей.
Тогда, не посещая расположение клиента, как я могу увеличить лимит пользователя ?
Пожалуйста, обратите внимание, что: как только приложение будет доставлено клиенту, я не буду иметь никакого контроля над приложением, кроме лицензионной части.
Как реализовать эту концепцию ?
Является ли WEB API лучшим решением для этого ? Если да, то не могли бы вы дать мне образец кода или направить меня .
Что я уже пробовал:
Понятия не имею, как реализовать эту концепцию.Пожалуйста, направьте/предложите меня.
MadMyche
Как вы в настоящее время проверяете лицензию
BubunDash
Уважаемые MadNyche,
Хорошего Вам дня.
Right now , the application is hosted in our server.so we have a table in database which has some hard code value for a particular client.Suppose, you assume, client has taken license that only n number of users can access the site concurrently ,When N+1 user is trying to access the site, we are restricting it by displaying a message "Maximum number of concurrent user reached the limit. Please contact Administrator" that But now , client is telling, they will host this application to their own server and they will also maintain their own database. Which means, they want to buy the complete product from us. So problem is, we are ready to handover but only thing is, our application should not allow them to use more than the number of license they have bought from us. That is why I talking about WEB API or SignalR concept . But I am not able to implement.
BillWoodruff
Получить оплату и отправить пользователю новое приложение ?
Mohibur Rashid
Взгляните на сервер лицензирования.
Maciej Los
Зачем вам нужно посещать клиента, если приложение, которое он использует, является ASP.NET-что? Я тебя не понимаю...
BubunDash
Дорогой Мацей,
Хорошего Вам дня.
Right now , the application is hosted in our server.so we have a table in database which has some hard code value for a particular client.Suppose, you assume, client has taken license that only n number of users can access the site concurrently ,When N+1 user is trying to access the site, we are restricting it by displaying a message "Maximum number of concurrent user reached the limit. Please contact Administrator" that But now , client is telling, they will host this application to their own server and they will also maintain their own database. Which means, they want to buy the complete product from us. So problem is, we are ready to handover but only thing is, our application should not allow them to use more than the number of license they have bought from us. That is why I talking about WEB API or SignalR concept . But I am not able to implement.