- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Knowledge Base
- :
- ServiceNow to FNMS not generating XML file in Quebec MID Server
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
ServiceNow to FNMS not generating XML file in Quebec MID Server
ServiceNow to FNMS not generating XML file in Quebec MID Server
Symptoms:
For ServiceNow Quebec - After running a ServiceNow to FNMS export you will notice that no XML file is generated in your Quebec MID Server. Even though checking the Export History indicates that the Export was successful.
Diagnosis:
Quebec mid servers require java 1.8 while Paris/Orlando mid servers use java 1.7.
The export functionality implements a decoding method:
decodeFile: function (data){ var strJFile = new Packages.java.lang.String(data); //Switch to java8 base64 var bytes = new Packages.sun.misc.BASE64Decoder().decodeBuffer(strJFile); var strDJFile = new Packages.java.lang.String(bytes, "UTF-8"); return strDJFile; },
Which references the non-existent sun.misc.BASE64Decoder java package (java8). This causes an exception which results in the file not being written to the file system.
A workaround would be to replace the method used with java.util.Base64.getDecoder().decode(). This is available in java 1.8. The customer would need to load an XML to update the script include.
Solution:
- Download and unzip a copy of the FNMSFileExport.zip
- In your ServiceNow Instance, make sure the operator has Admin roles and application scope set to "Flexera Integration"
- In the navigation tool, search for "Retrieved Update Sets"
- Choose the option to "Import Update Set from XML"
- After updating the script include, you should be able to run the export again and an XML file should be generated in your designated file path in your MID server
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Hello @JJacildo
1. Could you please help to check if the 5.0.600 release is on schedule in early October ? if there is a specific date we can know?
2. My Quebec MID server also not generate Asset xml file (Export from SN -> MID) which is the same symptom here. But even I tried to upload the 'patch' from the attachment. It didn't help. Therefore I am wondering if there is anything else I could have missed in my case, but do you by chance still have the specific 'exception error log' from MID log file ? I will try to see if mine contain the same or else ?
Thanks in advance.
Cheers
Kevin
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
@Big_Kev - is the release your looking for the following one announced late last week? New ServiceNow Scoped App v5.0.6 is now Available in ServiceNow Store
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Thank you for your quick help @ChrisG , that's indeed what I am looking for. Not sure how I have missed that (likely it's under Flexera One blog not FNMS blog) :).
Thanks again