This website uses cookies. By clicking OK, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
krubin
Intrepid explorer
Dec 24, 2020
04:24 PM
It seems that I can add a line item, with all three products that I need and then delete the original line item. Still not sure how to put three products in the product field in excel batch file, when creating entitlements?
... View more
Dec 24, 2020
12:16 PM
Hi, I have been using entitlements for 1 product. From the documentation it appears that I can have multiple products in the line item, since they do have the same license model. 1) I am unable to modify my line item to have multiple products. 2) When I attempt to delete the line item after putting the line item and the entitlement into draft mode, I get a Hibernate general error. 3) If I created a new entitlement in batch mode using Excel, how would the Excel spreadsheet be different for things like product name having multiple values (maybe comma delmited)? What other fields may need to change in the Excel spreadsheet? Have a great holiday! Best Wishes, Ken
... View more
Dec 19, 2020
04:38 PM
It may help for the User Manual publishers to add URL information to the Update Signing Key REST API.
... View more
Dec 19, 2020
04:33 PM
Hi Jim, That URL does work. Thank you for helping on a Saturday !!!!! You are awesome Jim!
... View more
Dec 19, 2020
11:25 AM
Hi Jim, You should have an account now and have gotten the email. Are you able to upload my Public Key from UAT to production?I would like to look at your postman command to do this. I thought that mine was functional, per our conversation in October. Not sure why I get error 405 now in both UAT and prod environments. Thank you so much for what you do! Regards, Ken
... View more
Dec 19, 2020
10:23 AM
Thanks Jim! I will contact my managers to get permission to grant it.
... View more
Dec 19, 2020
09:55 AM
Hi Jim, If you had access as an admin, would you be able to take a look? If its ok for you to do this, I can ask my managers to let me to give you permission. Regards and thanks, Ken
... View more
Dec 19, 2020
05:31 AM
Hi, I don't know why I can't set my Public Key in Production Producer Portal. The public key is already set in UAT. I am using the same one. It is returning error 405. In Postman: URL https://flexXXXX-ns.flexnetoperations.com/operations/api/updates/update-authorization-key Authorization is basic with User id and password. I checked that password works again. Headers- file attached Body- file attached (public key) no red shows in Postman for syntax issues. What is also interesting is that I cannot set the public key either in the UAT environment, even though I don't want to change the value. Please advise. We are getting very close to our goal. Thank you, Ken
... View more
Dec 10, 2020
10:09 AM
I think I generated the public and private keys with these steps, tried a few different ways a while back. Step 1 To Generate Public and Private Keys start cmd prompt openssl genrsa -out UAIPrivate.pem 2048 cmd /k openssl rsa -inform PEM -outform PEM -in UAIPrivate.pem -pubout -out UAIPublic.pem To create Public and private keys. Step 2 Generate Json Web token The Python program below was given to me from Revenera. For some reason it only works in the Jupiter Notebook, which is part of the Anaconda installation. It did not work in the Spyder environment. I don't know how to do this from other languages. Please make sure that the public and private key file names are correct in the program. import jwt import datetime import sys # Execute the python script by invoking the following # from the command line: python3 SignJWT.py SaaSDemoPrivate.pem # Read the supplied private key file #private_key = open('jwtRS256.key', 'r') path = 'C:\\python\\revenera\\UAIPrivate.pem' with open(path, 'r') as private_key: private_key_string = private_key.read() private_key.close() # Setup the JWT's payload payload = { 'exp': datetime.datetime.utcnow() + datetime.timedelta(days=3650) } # Use PyJWT to encode a sign a JWT token = jwt.encode( payload, private_key_string, algorithm='RS256') # Present token to the user print('Bearer ' + token.decode('ASCII'))
... View more
Dec 10, 2020
09:30 AM
Generic C# code. HttpClient client = new HttpClient(); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add( new MediaTypeWithQualityHeaderValue("application/json")); client.BaseAddress = new Uri("https://youraddress-ns-uat.flexnetoperations.com/"); //This is for UAT environment client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", jsonWebToken); //Create a JSON Web Tokeb ActivationRegistration activateRegistration = new ActivationRegistration(activationId, pcId, "STRING", identityName, publisherName); HttpResponseMessage response = client.PostAsJsonAsync( "uai/2.0/devices/registrations", activateRegistration).Result; The ActivationRegistration class is generated on the https://json2csharp.com/ site. Use the JSON results example in Flexnet operations manual for Registration for the JSON. I have renamed the classes generated. The activation ID is setup by administration in the Flexnet portal, related to Entitlements.You choose the pcId. This will be used subsequently for updates. The IdentityName and publisherName values can be found in the Flexnet Portal under Administer/Publishers and Administer/Indentity
... View more
Dec 09, 2020
03:09 PM
Hi Jim, Management discussed if there was a possibility of changing it in the future. Possibly to add to security. Thank you, Ken
... View more
Dec 09, 2020
10:12 AM
Hi Jim, I think you are saying that I cannot modify the device id for an account once it is set during registration. Is this true? For example, if I start with https://flexxxx-ns-uat.flexnetoperations.com/uai/2.0/devices/registrations With Body contents: { "activationId" : "AE999" , "id" : "AE999" , "idType" : "STRING" , "identityName" : "UAIDeviceIdentity" , "publisherName" : "bloom" } I can't later try to register again specifically: https://flexxxx-ns-uat.flexnetoperations.com/uai/2.0/devices/registrations With Body contents: { "activationId" : "AE999" , "id" : "AE999_shop" , <-------modified "idType" : "STRING" , "identityName" : "UAIDeviceIdentity" , "publisherName" : "bloom" }
... View more
Dec 08, 2020
06:53 PM
Hi Jim, I think that you are saying that an account can only be linked to one device (or pcid- we are using entitlements) and that cannot be changed. Do you concur? Thank you, Ken
... View more
Dec 08, 2020
06:12 PM
Hi Jim, Sorry for any confusion with the first question. To phrase it more precisely, I wanted to know if it was possible to modify the pcid for an activation id on a subsequent registration. Thank you, Ken
... View more
Dec 08, 2020
11:41 AM
Thank you!
... View more
Latest posts by krubin
Subject | Views | Posted |
---|---|---|
104 | Dec 24, 2020 04:24 PM | |
110 | Dec 24, 2020 12:16 PM | |
196 | Dec 19, 2020 04:38 PM | |
202 | Dec 19, 2020 04:33 PM | |
229 | Dec 19, 2020 11:25 AM | |
233 | Dec 19, 2020 10:23 AM | |
245 | Dec 19, 2020 09:55 AM | |
266 | Dec 19, 2020 05:31 AM | |
173 | Dec 10, 2020 10:09 AM | |
189 | Dec 10, 2020 09:30 AM |
Activity Feed
- Kudoed Re: An entitlement for multiple products for jberthold. Jan 04, 2021 10:36 AM
- Posted Re: An entitlement for multiple products on FlexNet Operations Forum. Dec 24, 2020 04:24 PM
- Posted An entitlement for multiple products on FlexNet Operations Forum. Dec 24, 2020 12:16 PM
- Posted Re: Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 04:38 PM
- Posted Re: Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 04:33 PM
- Kudoed Re: Having issue trying to set public key again for jberthold. Dec 19, 2020 04:20 PM
- Posted Re: Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 11:25 AM
- Posted Re: Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 10:23 AM
- Posted Re: Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 09:55 AM
- Kudoed Re: Having issue trying to set public key again for jberthold. Dec 19, 2020 09:52 AM
- Posted Having issue trying to set public key again on FlexNet Operations Forum. Dec 19, 2020 05:31 AM
- Posted Re: Trying to use Rest API to Register the Activation ID from Postman on FlexNet Operations Forum. Dec 10, 2020 10:09 AM
- Posted Re: Trying to use Rest API to Register the Activation ID from Postman on FlexNet Operations Forum. Dec 10, 2020 09:30 AM
- Posted Re: Registration changing pcid and observation with maintenance line item on FlexNet Operations Forum. Dec 09, 2020 03:09 PM
- Kudoed Re: Registration changing pcid and observation with maintenance line item for jberthold. Dec 09, 2020 03:06 PM
- Posted Re: Registration changing pcid and observation with maintenance line item on FlexNet Operations Forum. Dec 09, 2020 10:12 AM
- Posted Re: Registration changing pcid and observation with maintenance line item on FlexNet Operations Forum. Dec 08, 2020 06:53 PM
- Posted Re: Registration changing pcid and observation with maintenance line item on FlexNet Operations Forum. Dec 08, 2020 06:12 PM
- Kudoed Re: Registration changing pcid and observation with maintenance line item for jberthold. Dec 08, 2020 06:09 PM
- Posted Re: Three items related to Download Package maintenance, general polling question, detecting expired line item with code on FlexNet Operations Forum. Dec 08, 2020 11:41 AM
Contact Me
Online Status |
Offline
|
Date Last Visited |
Jan 04, 2021
06:39 PM
|