How to know the version and edition of citrix server - citrix

How to know which citrix metaframe presentation server's version and edition from where i am accessing my application.
I just want to know the version and edition.
Please help me.

If programmatically (Python) you want to do that then
First get the host record
record = xenapi.host.get_record(this)
Then retrieve the version from the record
version = '.'.join(record['software_version']['product_version'].split('.')[0:3])
Just print record and I believe you will get edition also there. And just do string operation to retrieve that.

Related

Smart Card Validation Pin Error 0x80100001

I'm using gemalto usb token and SafeNet software to digitally sign my documents in Adobe Acrobat Pro. While everything worked fine and nothing has changed, I'm getting this error after entering my (correct) pin number. The message says: 'Error occurred during PIN validation'. According to authentication return values, it is related to:
SCARD_F_INTERNAL_ERROR: An internal consistency check failed.
Besides that, 'Validating Signatures' option in Adobe is disabled.
Thank you!
For somebody else encountering a similar problem: The error code is by PCSC, and so not necessarily card-related.
If other applications are also unable to verify the PIN, issue might be caused by reader driver, or as in the case above by any software required for accessing the card [here: SafeNet]. Re-installing those is worth a ttry.
Same problem here.
On a new PC couldn't use this token.
I checked how windows recognized the device on a different one where worked fine. Seems like the culprit is a newer driver from microsoft.
All I had to do was to replace it. Visit here and click:
"Gemalto IDPrime - SmartCard - 10/20/2017 12:00:00 AM - 8.5.0.7 Windows 10 Creators Update and Later Servicing Drivers"
Download the cab file.
Extract it.
Next you have to "update" the driver with the old one.

Quickbooks Online REST API Minor Version 7

I'm trying to use the QBO Rest API to insert invoices into our system and want to use the BillEmailCc attribute of invoices. I've read on their site that these are only available for minor version 7. I've try setting the minor version in my queries but still I get errors saying this attribute is not valid. How can you access the minor version 7?
url: https:https://sandbox-quickbooks.api.intuit.com/v3/company/193514338926917/query?query=SELECT%20BillEmail%20FROM%20Invoice%20WHERE%20CustomerRef%20%3D%20%2760%27&minorversion=7
After doing some digging in the console, I deduced that the fields to set are as follows
"AllowOnlinePayment":true,
"AllowOnlineCreditCardPayment":true,
"AllowOnlineACHPayment":true,
Quickbooks support has said these attributes aren't supported, however.

how to create a trade capture report using Appia fix engine?

I'm trying to write a simulator to create FIX message in java Using Appia.jar.
I am able to generate execution report by initializing ExecutionReport.class object..
But i am not able to find any class file specific to trade capture report..please help me out..
Which version of the protocol are you using? TradeCapture reports were only added in version 4.3 so if you are using a version previous to that (say 4.2 which is what we mostly use in my work) there will be no trade capture report object available.

Can i use eclipse to connect MS sql database and select data out?

I am new in eclipse,i wan to to develop a app using phonegap wizard based on CSS,JS,HTML5 languages.
my question is
Can I Connect MS SQL database and return table in eclipse?how?
(If possible make the code by the type language i using, if cant also can provide me some information by link or something)
thank you for answer
Sure you can. Open the 'Database Development' perspective, add a new connection to the DB in the Data Source Explorer, and away you go.

Will first version local database remain in the new version of iphone application

I am bit concern about the local database I have used in my application.
I want to maintain the data enter by user in the first version of application in second version also.
So i did one exercise in which I installed app with version 1.0 and enter few entry in my database from app. Then I installed app again with the version 2.0 and the data enter in the first version app are there in the second version also. Does that mean i don't have to do anything in order to keep users first version data in second version app.
Do let me know if any one has any idea.
Thanks in advance.
Yes, the user data (including databases) will stay around after application upgrades.
When you uninstall an application, its data will also be removed.
Does that mean i don't have to do anything in order to keep users first version data in second version app.
If you have changed the database schema for the new version, you will need to provide ways to continue to be able to read the old data or convert it to the new format. Otherwise, yes, it should just work.