ContributionsMost RecentMost LikesSolutionsWindows installation <user> The ReadAPI installation places some files under <user> on Windows. is it possible to change this to a path outside of <user> ? Re: Differences with GIT check-ins for Windows and iOS ARM users I'm not sure which version you are using, but there is an issue in 3.57.0 that sounds related. Locally Stored Properties - Cannot invoke "String.getBytes(String)" because "message" is null Hi, Does anybody else experience this error when using the "Locally Stored Properties" feature in ReadyAPI 3.49.0? Appears in the error log upon refreshing the composite project. I'm assuming the error is related to this feature, but I could be wrong. Fri Dec 08 10:11:41 CET 2023: ERROR: java.lang.NullPointerException: Cannot invoke "String.getBytes(String)" because "message" is null java.lang.NullPointerException: Cannot invoke "String.getBytes(String)" because "message" is null at com.eviware.soapui.settings.DESCipher.encrypt(DESCipher.java:35) at com.eviware.soapui.impl.wsdl.support.UserSpecificProperties.saveCurrentStateToConfig(UserSpecificProperties.java:168) at com.eviware.soapui.impl.WorkspaceImpl.saveWorkspaceConfig(WorkspaceImpl.java:631) ......... Thanks SolvedRe: How to build SQL query using strings whose value should be retrieved from TestCase property Try using the CAST or CONVERT function SELECT * FROM Table1 WHERE TagId = 4314 AND Time > CAST('${#TestCase#FromTime}' AS datetime2) Re: How to build SQL query using strings whose value should be retrieved from TestCase property What data type does Table1.Time have in your database? is it DATETIME? Re: How to build SQL query using strings whose value should be retrieved from TestCase property Perhaps you are missing the single quotation marks? SELECT * FROM Table1 where TagId = 4314 and Time > '${#Scope#Property-Name}' and Time < '${#Scope#Property-Name}' ReadyAPI changes in background - Git Integration I'm using ReadyAPI 3.48.0 together with GitLab. After pulling the latest version of the project from GitLab and not making any changes at all, I can see that ReadyAPI makes hundreds of changes in the background. Adding the following under con:settings: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance The next team member that pushes automatically has the same thing removed in the same files. Is there a way to prevent this from happening? Re: ReadyAPI changes in background - Git Integration Our team members are all on the same ReadyAPI version. We have the same preferences set in ReadyAPI (including those recommended for best practice for working with Git). We have also attempted to start over by everyone binning their local repository and cloning from Git. The issue keeps returning.... Re: Can not discard changes to the settings.xml Try this: Right click on the project folder->Git->Discard changes Re: Git - Discard all changes The above was caused by a corrupt test case.