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,123
- Last Active
- Roles
- Administrator
Comments
-
Microsoft's docs state: If you want to [XPath] query against a namespace in an XML document, even if it is the default namespace, you need to define a prefix for it. So, let's say we have the following XML: Title A…
-
That is correct.
-
I figured out your issue. XPath doesn't like default namespaces. So, you have to name the default namespace and then use that name in your XPath query. Path = "/x:vendorPlacementData/x:vendorPlacementDataList/x:vendorPlacementDataRecord" Ans = …
-
I can't troubleshoot with a partial screenshot. Does the remainder XML pass a validation test? There are XML syntax validators on the web.
-
Yes, SRP_Extract_XML can parse any well-formed XML snippets. Still, let your client know this is happening. It is not your responsibility to parse invalid XML.
-
Is your XML actually valid? There are two headers in that screenshot. If that's what the actual XML looks like, it won't parse.
-
XPath is a standard means on navigating to a specific point in an XML document. You can read up on it here.
-
No, but SRP_DateTime HourSpan will.
-
Also, for those that use SRP Utilities, you can use SRP_Time's HourSpan service.
-
Something is very wrong. It appears OpenInsight's CLIENTSIZE property is not returning anything. That's a low-level catastrophic issue. One possibility is that the VM's emulation layer is not correctly emulating the API that CLIENTSIZE uses to get t…
-
I'm not sure what the original conversation entailed, so forgive me if I beat any dead horses. The quick answer to your question is, no, there is no way to shorten the IdleTimeout without asking Revelation to shorten it on their end. However, I th…
-
Some Windows API trivia. Windows sends one of these messages to every control on a left mouse button press. WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_LBUTTONDBLCLK. The last message is automatically handled by the operating system (it's not something Rev…
-
The type you want is STPROCINS. If you look in the SYSREPOSTYPES table, you'll see a list of all the types.
-
Lol. Wow. This goes to show how ooooold this tech is. This stuff was written in '05, and at that time, there was a concentrated effort to make sure users couldn't do developer stuff in a runtime engine. So, it's basically failing for you because you…
-
SRP Editor's command line was never meant to be an complete replacement of the OI TCL. Even the LIST command is very rudimentary. The point was to provide a handful of commands we found commonly used. You can, however, create your own commands. You…
-
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…