Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
KevinFournier
About
- Username
- KevinFournier
- Joined
- Visits
- 2,163
- Last Active
- Roles
- Administrator
Comments
-
Here's the line that's breaking: If IsWindow(Get_Property(Window, "HANDLE")) else Window = "" This line is checking to make sure an OI form is valid by passing the form's Win32 API Handle to the IsWindow API function. My guess is that the "HANDLE"…
-
Just confirmed that when using the "D" conversion, 20100 is a valid date in external format: Feb 1, 2000.
-
He's trying to see if there's an issue in general with OCXs registered on the server. If VSPrint7.ocx gets "blocked" also, then we know there's middle-man issue.
-
In the SRP Editor, press Ctrl+N to bring up a window giving you some templates. Choose Test Module. When you save and compile, the tests should appear in the Test pane (press F10 to make it visible). In your tests, you can do any number of "Assert X…
-
Sorry for not responding on this. I have rather large backlog of issues to look into, and I've added this to my list so I won't let it slip through the cracks. I do not, sadly, have an immediate solution for you.
-
Maybe LIST_INDEX is using Send_Info to produce it's data, so you might have to set an edit field somewhere to be the recipient of Send_Info calls.
-
It doesn't matter. RDKINSTALL knows where to put everything. :)
-
Debugging NSIS is not easy. Those macros are defined in MUI2.nsh, which is in the NSIS folder in Program Files (x86). For that first error, if you go to line 12 of the MUI_INSERT macro, that's where your error is happening. Looks like the UI is comp…
-
Sadly, the future of mail handling is to utilize a third party service. SRP Mail was written when there no other options for OI programmers. We've kept it up to date as much as possible, but there may eventually come a day when simple SMTP is put to…
-
UNC paths can work when you run RDKINSTALL directly from within OI so long as the UD service has control over that path. Yes, some of our installers choke on UNCs, but that's because Windows gets in the way. We recently discovered that using UNC pa…
-
Here you go.
-
Try SRP Utilities 2.2.6.12 here.
-
Our installers don't work using UNC paths. At least, the RDKINSTALL always fails using UNC. You'll either need to map a drive or copy the RDK I linked above to a local folder and install from there.
-
You're all set with regards to .NET 4.8. Now I just need to know what is not behaving correctly to troubleshoot further.
-
The first screenshot tells me what OI Client Installers you've run, but it doesn't tell me what version of .NET you actually have installed. There's a handy tool you can download here that will give you more precise information. It looks like almos…
-
This is not wise. You shouldn't have to do the conversion. The web developer is sending you json that no system on earth would accept. This is on them. If you choose to fix it, you should make sure not to swap out every instance of carriage return, …
-
This was discovered and fixed for the next release. You can download a build with the fix here in the meantime.
-
It looks like the web developer is sending carriage returns in the body. OECGI likes to URL Encode a lot of data, so a carriage return would be encoded as %0A. That is not good. Just because the carriage return is nicely encoded in the html body doe…
-
This doesn't work in any version of OI 10. I'll add this to my todo list to get fixed.
-
You can't just do a blanket swap on incoming json because any line breaks outside of the strings are legit. The web developer should know better. There is no web service that would accept this. Tools like jsonlint.com can be useful for validating js…
-
Are you creating the json using SRP_JsonX or manually? SRP_JsonX will escape line breaks for you. Otherwise you need to do something like: Swap \0D0A\ with "\r\n" in Text
-
This is not valid json. You can't have hard line breaks in a string. You have to use \r\n in the string for line breaks.
-
Yeah, that seems wrong. Can you email me the json?
-
You're saying that a value in the json is "swwss[222]"?
-
The RDK places SRPEditorImage.zip into the BMPS directory, and the SRP Editor expects there to be a BMPS subdirectory inside the current working directory. There are two cases I've seen images not load. Case 1: running in a terminal server set at 24…
-
According to my records, your license is good through the end of 2022. Are there other SRPLIC files in the OI folder?
-
Ah, this is specifically for the SRP Editor itself. What is the name of your license file?
-
It actually seems to happen even if you just do a Replace All from the start, so something broke at some point and got overlooked.
-
Sadly, this information is not easily accessible. I'll have to update the SRP ActiveX Info tool to display this information. It is possible to query this information programmatically via COM, but it's not currently documented. In the meantime, I can…
-
Thanks for these clear steps to recreate. I've confirmed it is a problem and will add it my todo list.