go to post Dmitry Maslennikov · Jan 21, 2019 Hi, unfortunately, there are no ready solutions and mostly because NTLM auth is not so easy to implement, even in other languages. If it is possible, better to find another mechanism.
go to post Dmitry Maslennikov · Jan 21, 2019 Well,this add-in url is/isc/studio/templates/%25ZEN.Template.AddInWizard.SOAPWizard.cls?Namespace=USERBut when you redirect with Redirect directive, your query part dissapear. And it opens with default namespace %SYS.To solve it you should use mod_rewrite instead with RewriteCond and RewriteRule directives. I don't give you any examples, just don't have a good place to check it. But I think I can find it.
go to post Dmitry Maslennikov · Jan 20, 2019 Usually, the problem which you can face with SSL, is, how to trust self-signed certificate. In your case looks like, you have one server for development, and everybody connects to this one server. And in this case, there are two ways to make this SSL trusted,if you have a domain name which publicly available, from the internet. Internal servers should not be available from outside, just only one server, where you can generate certificate with Let'sEncrypt. And you can make wildcard certificate as well. you don't have such domain name, and don't have access from outside. So, you should have own certificate server, and make by yourself. I think this way is a bit harder.For local instances, when you need SSL only on your machine for yourself, you can use the mkcert tool and any subdomain from localtest.me (which goes to localhost) for example.
go to post Dmitry Maslennikov · Jan 17, 2019 I have not planned any special, just wanted to see how it will be on place.
go to post Dmitry Maslennikov · Jan 16, 2019 I'm going to be there, too, and I have something to show for you. I can demonstrate VSCode extension for InterSystems ObjectScript. And I can show how to build and deploy with Kubernetes.
go to post Dmitry Maslennikov · Jan 16, 2019 I'm going to be in Antwerp next month. If you want to see a live demonstration, I can do it for you. I already have some more features, to show.
go to post Dmitry Maslennikov · Jan 15, 2019 CSP not supported, yet. Fill issue. And I will add support later
go to post Dmitry Maslennikov · Jan 11, 2019 How big is your object? By default on your version you have 256Mb if lical memore, and this error happens when you exceeded this limit.You can try to convert object directly to FileStream without using TmpStreamI would also recommend to post your question as separate post, not as comment.
go to post Dmitry Maslennikov · Jan 7, 2019 CACHE.DAT or even IRIS.DAT does not have any relation with operation system. So, you can easily move database files between instances on different OS and versions. But you should remember about data itself, like differences between 8-bit and Unicode. And code, which should be compiled for particular version but also not depends on OS.You can find some details about database format from my articles.
go to post Dmitry Maslennikov · Dec 28, 2018 Some users configured with link to their GitHub account, and they shown in green, so can click, other users does not have links. If you would register there and have joined our leaderboard, you would be able to check it by yourself.
go to post Dmitry Maslennikov · Dec 20, 2018 Sounds wonderful.But, I hope you don't do it from scratch and reuse some already developed components. Developing editor, from scratch is too difficult, and TDD is the last thing to do on the list. And when you say IDE, it means much more than just Editor. And is VSCode is not IDE but has a lot of possibilities already. You can look at Monaco editor, which can work in a browser, but it is also an engine for VSCode. So, it would be possible to reuse some functionality from VSCode extension.
go to post Dmitry Maslennikov · Dec 20, 2018 Every debugging tied very much with an editor of code. So, the first question should be, which editor should be used. The studio already has some debugging options, Atelier, too. I'm working hard now on VisualStudio code, and they also have good ways for debugging and hope I will manage to add good debugger for VSCode as well, but not only me who can do it. George James already has their debugger and introduced their work on the same debugger in VSCode.
go to post Dmitry Maslennikov · Dec 16, 2018 well, error 126 is the dependency error. for such errors, I used Dependency Walker, very useful tool, for such cases.As you said you managed to connect to this dll with less code, so, in added lines you use some external library, which can't be loaded. Just place missed dll's close to your, and it should work.
go to post Dmitry Maslennikov · Dec 16, 2018 when you get the error <DYNAMIC LIBRARY LOAD>, you should look at cconsole.log (or messages.log for IRIS), where you may find code of error.It is possible that you build it for 32bit, but uses in 64bit instance. In this case, you will get the error with code 139. if you got other code, you can google it.
go to post Dmitry Maslennikov · Dec 11, 2018 You can also look at my project (https://github.com/daimor/CacheBlocksExplorer), I use WebSockets in the real project.
go to post Dmitry Maslennikov · Dec 10, 2018 My repo the same for previous years. https://github.com/daimor/AdventOfCode
go to post Dmitry Maslennikov · Dec 8, 2018 Go to private leaderboard, and use this code 130669-ab1f69bf to join.
go to post Dmitry Maslennikov · Nov 27, 2018 I'm sure it is quite difficult to write such a universal solution, every time it depends on your code. Years ago I wrote such a tool for an application which textual interface, and I had to convert parse code for pseudographics there and convert it too. So, I would say you need such specific too, just for your case.