go to post David Hockenbroch · Jul 29, 2022 You can probably make that work, but why not put the method in a %CSP.REST class to start with and have the CSP page call it? That seems more in line with the way those things are meant to be used.
go to post David Hockenbroch · Jul 20, 2022 On whichever answers you want to mark as an answer, click the check mark next to the reply button. That should mark that reply as an answer.
go to post David Hockenbroch · Jul 20, 2022 Postman is a pretty standard tool for this. Even the free version gives you everything you need to get started, and if you end up collaborating with other groups on your API, or if your end users want to do some testing, it's easy to get them and share a collection of requests.
go to post David Hockenbroch · Jul 18, 2022 I think what you're looking for might be setting the isolation level to read committed. This will make the process wait for the in-progress changes have been committed, though you'll still want to make sure you handle SQLCODE -114 somehow, too. That's the code you get back if there's a timeout waiting for the lock. You should be able to set that using: %SYSTEM.SQL.Util.SetOption("IsolationMode",1,.oldval) If you do that before your query, the rest of the process will run at that isolation level. You can use that same method to set the LockTimeout too, by the way. Default is 10 seconds.
go to post David Hockenbroch · Jul 18, 2022 In your post, you say "Result is nothing is returned and %SQLCODE is 0". I just want to make sure this isn't just a misunderstanding. If the SQLCODE is 0, that would mean that there is a result returned. When the query executes successfully and nothing is returned, the SQLCODE is 100.
go to post David Hockenbroch · Jul 18, 2022 The error seems to occur when it's trying to access the log file. Under you advanced settings, have you checked where it's trying to find or create your log file and made sure it's valid?
go to post David Hockenbroch · Jul 8, 2022 If you're on IRIS, it definitely has those functions. Did you put just the $ in front of them?
go to post David Hockenbroch · Jul 7, 2022 $EXTRACT(input,$FIND(input,"(")-1,*) $EXTRACT(string,index1,index2) creates a substring out of the initial string from index1 to index2. $FIND finds the first occurrence of ( in the string, so that -1 includes the ( itself. When you're using extract, * is shorthand of the last character of the string.
go to post David Hockenbroch · Jun 23, 2022 Thanks, Vitaliy! This seems to be the approach that gives me what I want.
go to post David Hockenbroch · Jun 22, 2022 Ideally, that would be the case, but some of these aren't apps we've written and are forcing to log in with a safe user account. They're 3rd-party apps that our users are logging into using their usual credentials to create an ODBC connection. Most of them are reporting tools, but a few are also capable of running queries other than selects. I think what we'd like to be able to do is determine roles similarly to how you can set up application roles so that the user gets those roles when they log in, we set permissions based on the program being used. Can we do that somehow in ZSTART?
go to post David Hockenbroch · Jun 6, 2022 Double check your IP address and port in the settings on the Preferred Server menu.
go to post David Hockenbroch · May 31, 2022 It sounds to me like there's an issue with the design there. If the field can be duplicated, why is it marked as unique at all?
go to post David Hockenbroch · May 31, 2022 Rochdi, I'd get rid of: Set Line = File.Read(1000)While (File.Read(1000)'="") { S mystring=mystring_File.Read(1000)} And then after your set Httprequest = ##class(%Net.HttpRequest).%New(), use: set sc = Httprequest.EntityBody.CopyFromAndSave(File) Then you can check sc to see if you got any errors doing that.
go to post David Hockenbroch · May 31, 2022 Your tResult will have a property called %SQLCODE that gets set when the query is run. If %SQLCODE = 100, that means that the query ran successfully but returned no results or that you've reached the end of the result set. If %SQLCODE = 0, you have some results. If %SQLCODE is less than zero, that's an error code. if tResult.%SQLCODE = 100{ //whatever you want to do for no results here }
go to post David Hockenbroch · May 27, 2022 If you're encoding your data before sending it, you have to specify how it was encoded in a content encoding header so that the server you're sending data to knows how to decode it. I think it's more likely, though, that it's an issue with your content type. Where you're setting it to "text/plain", if it's supposed to be json, you might try setting it to "application/json" instead.
go to post David Hockenbroch · May 27, 2022 How certain are you that the server you're sending the request to accepts a content type of "text/plain"? Having that wrong, or using the wrong encoding are probably the most common causes of a 415 error.
go to post David Hockenbroch · May 18, 2022 If the file isn't accessible to link to directly, you may want to look into extending the %CSP.StreamServer class and linking to that. At a bare minimum, you'll want to override the OnPage and OnPreHTTP methods: ClassMethod OnPage() As %Status{set myfile = ##class(%File).%New("/path/to/file")do myfile.Open("S")do myfile.OutputToDevice()quit $$$OK} ClassMethod OnPreHTTP() As %Boolean [ Language = cache ]{do %response.SetHeader("Content-Disposition","attachment;filename=""filename""")quit 1} Of course using your own file name and the path to the file. That's the local computer file path, not a URL. You also should set the content type appropriately using set %response.ContentType = "text/csv" or whatever the MIME type of the file is so that the browser can identify it correctly. Unless you want to have to write another %CSP.StreamServer for every file, you'll have to pass the name of the filepath as an argument. So that would look more like: ClassMethod OnPage() As %Status{set myfile = ##class(%File).%New(%request.Get("filepath"))do myfile.Open("S")do myfile.OutputToDevice()quit $$$OK} ClassMethod OnPreHTTP() As %Boolean [ Language = cache ]{set filepath = %request.Get("filepath")set %response.ContentType = "text/csv" //or whatever the appropriate MIME type isdo %response.SetHeader("Content-Disposition","attachment;filename="""_$P(filepath,"/",*)_"""")quit 1} Then you could link to it as whatever the path to your stream server is with ?filepath=/path/to/file on the end. If you take that approach, though, do some validation on the filepath and make sure it can ONLY go to the folder you want! Or, only pass the filename as a parameter to the page, and hard-code the folder in those methods.
go to post David Hockenbroch · May 18, 2022 It looks like in your curl you have the Accept header as */*, but in your HttpRequest object, you're setting it to "application/json". Does that make a difference?
go to post David Hockenbroch · May 17, 2022 Even in the global masters rewards where they have an RPi available with IRIS preinstalled, it's running on Ubuntu, not Raspbian, so that part didn't surprise me. As python becomes more widely adopted in IRIS and word gets out about it, I won't be surprised if some of the RPi community shows up with some pretty cool projects using IRIS Community since a lot of them are python developers. InterSystems tends to lean into health care as the main thing, but there you've got a device that you can connect all kinds of sensors and gizmos to that may lend themselves well to other fields. Let's not be hasty dismissing it because it can't run an entire hospital.