Sep 03, 2021
05:15 AM
Hello, My question concerns the management of Served Devices with the SOAPWebService method. With the "searchDevices" method of the WebService "v4/ManageDeviceService", I can identify the ActivationId used by a Device with a DeviceClass equal to "CLIENT" or "SERVER". But when the DeviceClass is equal to "SERVED_CLIENT", I can't identify the ActivationId, the Products or the Features used. In the FNO interface, I can see some info in the "View Served Device" view. Could you tell me how I can identify the elements used by a "SERVED_CLIENT"? Thanks in advance
... View more
May 31, 2021
09:21 AM
Hello, Is the following use case known? If so, what is the solution? Users connect to a CLS with a CapabilityRequest. A user has been dismissed from the company. He knows the ServerID. He no longer has access to the company's workstation, he is now on his personal computer. What solution can we consider to prevent him from accessing the server? - Should the user be forced to change the ServerID? > The problem with this solution is that all the other users will have to know this new ServerID - The problem with this solution is that all the other users will have to know the new ServerID > Possibility of making a CapabiliyRequest with an "ID+Password" specific to each user? > This would be a good solution, but I haven't found how to do it. - ... Waiting for your solutions Regards William
... View more
May 18, 2021
01:29 AM
Yes, I have the same result. But if you add a product in the request, with the "REPLACE" option, you should get the following error: "7072:Product is required for...". This probleme exist only in DRAFT. It works if the LineItem is "DEPLOYED". Thx William
... View more
May 17, 2021
10:46 AM
Hello, With Soap, how can I modify the "NumberOfCopies" parameter of an EntitlementLineItem that is in Draft? I use the element "updateEntitlementLineItemRequest", with, among other things, the parameter "lineItemData.lineItemData[Line].numberOfCopies" with its new value. I have no problem when the EntitlementLineItem is Deployed, but the operation is impossible when the EntitlementLineItem is in Draft. I get the following error message: "7072:Product is required for..." followed by the ActivationID I want to change. This message only appears on a Drat and only on the modification of the parameter "lineItemData.lineItemData[Line].numberOfCopies". Does anyone have an explanation or a solution for me? Thanks William
... View more
May 06, 2021
08:11 AM
Thank you @jberthold This is the solution I have started to implement. Thanks for the clarification. William
... View more
May 06, 2021
02:28 AM
Hello, On a CLS, I would like to temporarily deactivate the access to a license (Activation ID). I don't want to delete the licence from the Entitlement. What I see : - I can't change the status of the ActivationID to DRAFT because it is used by the CLS (which seems normal) - I can change the status of the ActivationID to INACTIVE, but the license is still available on the CLS --> this is not very logical!!! So what would be the solution to my problem please? William
... View more
Apr 13, 2021
01:34 AM
Thank you for your promptness
... View more
Apr 12, 2021
12:57 PM
Hello, In my CRM/ERP, I use the SOAP WebService. When I am configuring an Entitlement Line Item, I need to specify the "Number of Copies". It can be different for each Line. I can't find the corresponding parameter in "createSimpleEntitlementRequest.simpleEntitlement.lineItems". How do I do this? Thanks for your help William
... View more
Mar 15, 2021
11:30 AM
When I borrow a license from the CLS, the only way I found to avoid losing the license on the client side, is to redo the borrowing request, before the end of the borrowing period. In other words, if I understand the "Borrow Interval", on the client side, when I borrow a license and I set a "Borrow Interval" to 30 minutes, I have to renew it before the end of the 30 minutes so that nobody can use the license until I have returned it. But I don't understand the principle of the "Renew Interval" which is equal, by default, to 15% of the "Borrow Interval". I can't find any documentation on how it works or how to set it in C#. Is it useful? What should we do on the client side?
... View more
Mar 03, 2021
02:20 AM
Hi, In the description of "ICapabilityRequestOptions", you can find the "OneTimeActivation" bool, but I can't find out what it's for. Does anyone know it? Thanks William
... View more
Mar 02, 2021
05:10 AM
Hi, I am blocked on the following use case: A TrustedStorage file is present on my computer with the feature <"name=F1", "version=1.0", "count=1"). Step 1 : I launch my software a first time. It loads the contents of the TrustedStorage file. --> licensing.LicenseManager.AvailableAcquisitionCount("F1", "1.0").Count = 1 I acquire the "F1" feature: <licensing.LicenseManager.Acquire("F1", "1.0", 1);>. --> licensing.LicenseManager.AvailableAcquisitionCount("F1", "1.0").Count = 0 The result seems consistent. I don't close the software! Step 2 : I launch my software a second time (I remind you that the first one is not closed). It loads the contents of the TrustedStorage file. --> licensing.LicenseManager.AvailableAcquisitionCount("F1", "1.0").Count = 1 I acquire the "F1" function: <licensing.LicenseManager.Acquire("F1", "1.0", 1);>. <licensing.LicenseManager.AvailableAcquisitionCount("F1", "1.0").Count = 0 Is this normal? I don't understand why the result of "AvailableAcquisitionCount" is "1"? Why can I acquire the function again when the first launch already acquired it? I don't understand why the result is "1"? Shouldn't the first launch have locked the acquisition of this feature ? Maybe I forgot to make a setting in my license model? Thanks for your help William
... View more
Feb 25, 2021
10:36 AM
In the TrustedStorage file, I have a "F1" feature. When I launch my software, the execution of "licensing.LicenseManager.AvailableAcquisitionCount("F1"...)" returns "1". I then execute a "licensing.LicenseManager.Acquire("F1"...)" on this feature, in order to activate the corresponding module in my software. Then, if my software crashes, when I restart it, the execution of "licensing.LicenseManager.AvailableAcquisitionCount("F1"...)" returns "0". So I cannot activate the corresponding module in my software. How can I reset the acquired license? Do you have a solution to make the function available again after a crash? Thank you William
... View more
Feb 22, 2021
07:40 AM
Thank you @jberthold "Private Data Source" is a good solution in my case.
... View more
Feb 19, 2021
02:35 AM
Hi, When reading a TrustedStorage file located on the client workstation, is it possible to know the origin of the license? By doing a "LicenseManager.GetFeatureCollection", I noticed that if the file was created with a : - CLS: "IsServed=true" - NodeLocked: "IsServed=false But in the case of a CLS can we find information to identify the CLS server? The idea is to manage the use case below: "The workstation had a problem that caused it to lose its original configuration. So it has lost the <CLS instance ID> (and the user doesn't know it either). The software is reinstalled, as it was on the first day. At startup it finds a TrustedStorage file that contains a license, borrowed for several more months. How to return the license to the CLS server". Note that I don't have the problem for a TrustedStorage "NodeLocked" file because I have placed the ActivationID in the VendorString. Waiting for your ideas. William
... View more
Oct 15, 2020
08:16 AM
In "node-locked" mode, if a user loose his Labtop or had his Labtop stolen, how can I be sure that the LabTop can not use any more ? Is there a solution in this case ?
... View more
About
Clermont-Ferrand, FRANCE
Latest posts by wlagriffoul
Subject | Views | Posted |
---|---|---|
365 | Sep 03, 2021 05:15 AM | |
388 | May 31, 2021 09:21 AM | |
552 | May 18, 2021 01:29 AM | |
562 | May 17, 2021 10:46 AM | |
457 | May 06, 2021 08:11 AM | |
470 | May 06, 2021 02:28 AM | |
822 | Apr 13, 2021 01:34 AM | |
833 | Apr 12, 2021 12:57 PM | |
536 | Mar 15, 2021 11:30 AM | |
484 | Mar 03, 2021 02:20 AM |
Activity Feed
- Posted WebService SOAP with SERVED DEVICES on FlexNet Operations Forum. Sep 03, 2021 05:15 AM
- Posted Prevent someone from connecting to a CLS on FlexNet Embedded Forum. May 31, 2021 09:21 AM
- Kudoed Re: Soap : modify "NumberOfCopies" of an EntitlementLineItem in Draft for jberthold. May 18, 2021 10:30 AM
- Posted Re: Soap : modify "NumberOfCopies" of an EntitlementLineItem in Draft on FlexNet Operations Forum. May 18, 2021 01:29 AM
- Posted Soap : modify "NumberOfCopies" of an EntitlementLineItem in Draft on FlexNet Operations Forum. May 17, 2021 10:46 AM
- Posted Re: Deactive a Licence one a CLS on FlexNet Operations Forum. May 06, 2021 08:11 AM
- Posted Deactive a Licence one a CLS on FlexNet Operations Forum. May 06, 2021 02:28 AM
- Posted Re: Soap API : Specify "Number of Copies" from my CRM/ERP on FlexNet Operations Forum. Apr 13, 2021 01:34 AM
- Kudoed Re: Soap API : Specify "Number of Copies" from my CRM/ERP for jberthold. Apr 13, 2021 01:31 AM
- Posted Soap API : Specify "Number of Copies" from my CRM/ERP on FlexNet Operations Forum. Apr 12, 2021 12:57 PM
- Kudoed Re: Trusted Storage : Acquire/Return AvailableAcquisitionCount for jberthold. Mar 19, 2021 03:14 AM
- Posted CLS : renew interval, how does it work ? on FlexNet Embedded Forum. Mar 15, 2021 11:30 AM
- Kudoed Re: What is "ICapabilityRequestOptions.OneTimeActivation" made for ? for jberthold. Mar 15, 2021 02:35 AM
- Posted What is "ICapabilityRequestOptions.OneTimeActivation" made for ? on FlexNet Embedded Forum. Mar 03, 2021 02:20 AM
- Posted Trusted Storage : Acquire/Return AvailableAcquisitionCount on FlexNet Embedded Forum. Mar 02, 2021 05:10 AM
- Kudoed Re: Trusted Storage : how to reuse a feature after a crash for jberthold. Mar 02, 2021 03:47 AM
- Posted Trusted Storage : how to reuse a feature after a crash on FlexNet Embedded Forum. Feb 25, 2021 10:36 AM
- Posted Re: How identify the CLS in the Trusted Storage file on FlexNet Embedded Forum. Feb 22, 2021 07:40 AM
- Kudoed Re: How identify the CLS in the Trusted Storage file for jberthold. Feb 22, 2021 07:38 AM
- Posted How identify the CLS in the Trusted Storage file on FlexNet Embedded Forum. Feb 19, 2021 02:35 AM