Learning Documentation Community Open Exchange Global Masters Certification Partner Directory Ideas Portal
Developer Community
  • Posts
    • InterSystems Official
    • Articles
    • Questions
    • Announcements
    • Discussions
    • Tags
  • Events
    • Tech Article Contest
    • Programming Contest
    • InterSystems Ideas Contest
    • Event Calendar
  • Products
    • InterSystems IRIS
    • InterSystems IRIS for Health
    • HealthShare
    • TrakCare
    • Caché
    • Ensemble
    • InterSystems Analytics (DeepSee)
    • InterSystems Text Analytics (iKnow)
  • Jobs
    • Job Opportunity
    • Job Wanted
  • Members
  • About
    • About Us
    • FAQ
    • Feedback
    • Report an Issue
    • Share an Idea
    • Code of Conduct
    • Contact Us

EN

Search by posts, members, tags
Language
EN|
ESPTJPCNFREN
New post
  • Profile page
  • Posts (312)
  • Replies (3,503)
  • Mentions (362)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Followers (52)
  • Following (0)
AllAccepted answers
    go to post
Eduard Lebedyuk · Sep 26, 2023

Can you run: do $system.Python.Shell() on a server?

0 0 https://community.intersystems.com/post/python-objectdispatch-error-accompanying-irisloadpy-error?page=9#comment-237861
    go to post
Eduard Lebedyuk · Sep 21, 2023

Route to two BOs ("Normal" and "High" priority) with different FailureTimeout. Use SDS to keep other settings in sync.

2 0 https://community.intersystems.com/post/it-possible-dynamically-adjust-failuretimeout-business-operation?page=9#comment-237361
    go to post
Eduard Lebedyuk · Sep 19, 2023

Try to set IgnoreFailedAuth to true.

1 0 https://community.intersystems.com/post/method-netsmtpsend-returns-error-6167-authentication-expected-failed?page=9#comment-237021
    go to post
Eduard Lebedyuk · Sep 7, 2023

I usually dismount and copy for 3, 4.

0 0 https://community.intersystems.com/post/how-mirror-db-between-two-vms-using-apis?page=9#comment-235431
    go to post
Eduard Lebedyuk · Sep 5, 2023

I highly recommend using Source Control and automated CICD pipelines and restricting manual access. This is the only way to forget about this type of issues altogether.

Still, here's how you can compare code on two servers.

2 0 https://community.intersystems.com/post/official-way-detect-differences-between-environments-eg-preproduction-and-production-systematic?page=9#comment-235161
    go to post
Eduard Lebedyuk · Sep 2, 2023

Calling @Dmitry Zasypkin.

0 0 https://community.intersystems.com/post/how-convert-json-data-fhir-object?page=9#comment-234941
    go to post
Eduard Lebedyuk · Sep 1, 2023

Add a header field to your request in the form of Authorization: Basic <credentials>, where credentials is the Base64 encoding of username and password joined by a single colon :.  

0 0 https://community.intersystems.com/post/how-use-http-authentication-iris-soap-service?page=9#comment-234891
    go to post
Eduard Lebedyuk · Aug 29, 2023

Alternative approach: create a user which has access only to schemas you need.

1 0 https://community.intersystems.com/post/dbeaver-how-filter-system-schemas-ie-starting?page=9#comment-234511
    go to post
Eduard Lebedyuk · Aug 28, 2023

What can be recommended?

Fixing memory leaks if you see your running jvm process consuming more and more memory.

0 0 https://community.intersystems.com/post/memory-options-enslibjavagatewayservice?page=9#comment-234371
    go to post
Eduard Lebedyuk · Aug 22, 2023

Use CheckAddressExist:

w ##class(%SYSTEM.INetInfo).CheckAddressExist(ip)
1 0 https://community.intersystems.com/post/icmpping-objectscript?page=9#comment-233686
    go to post
Eduard Lebedyuk · Aug 22, 2023

There are ways to enable VIP in AWS for IRIS without an additional NLB.

0 0 https://community.intersystems.com/post/azure-mirroring-vip?page=9#comment-233681
    go to post
Eduard Lebedyuk · Aug 21, 2023

To check all parts of the request you can use this utility method which outputs all objects as a response. Just add this to any part of your code:

set %response.ContentType = "html"
do ##class(%CSP.Utils).DisplayAllObjects()
return $$$OK
1 1 https://community.intersystems.com/post/how-get-param-passed-get-rest-query?page=9#comment-233586
    go to post
Eduard Lebedyuk · Aug 21, 2023

Please contact WRC.

1 0 https://community.intersystems.com/post/gateway-iris-oracle-returns-invalid-characters-due-characterset-issue?page=9#comment-233561
    go to post
Eduard Lebedyuk · Aug 21, 2023

Tried to reproduce on RHEL9, but I got the test value, same as @Jeffrey Drumm.

Are you actually not getting the TEST env var? Or some other env var? IRIS process overwrites some env vars on start

0 0 https://community.intersystems.com/post/getenviron-centos?page=9#comment-233556
    go to post
Eduard Lebedyuk · Aug 21, 2023

I guess you do need to use SessionEvent. OnLogin method specifically.

Or you can log every request using OnPreDispatch method in your REST broker.

0 0 https://community.intersystems.com/post/add-processing-during-login-class-extending-csprest?page=9#comment-233551
    go to post
Eduard Lebedyuk · Aug 14, 2023

You need your own datatype, which implements method generators for Set, GetStored etc.

After that use your own datatype in your main class. Example.

2 0 https://community.intersystems.com/post/generate-method-properties?page=9#comment-233081
    go to post
Eduard Lebedyuk · Aug 14, 2023

In your REST Web Application settings, leave only pass (and remove group by id, if any):

After that check that UnknownUser does not have %ALL.

Finally try to access your REST url using Postman (or similar tool) and you should be able to see Login methind being executed.

1 0 https://community.intersystems.com/post/add-processing-during-login-class-extending-csprest?page=9#comment-233051
    go to post
Eduard Lebedyuk · Aug 12, 2023

Leave only password auth for the rest web app?

0 0 https://community.intersystems.com/post/add-processing-during-login-class-extending-csprest?page=9#comment-233006
    go to post
Eduard Lebedyuk · Aug 11, 2023

Are InterSystems Reports available on Ensemble, or only on Iris? (ie could we use InterSystems reports from the start?)

Only on IRIS.

Any other options for HL7 -> PDF generation?

Convert HL7 to FHIR and use The FHIR SQL Builder to make dataset available as a set of SQL Tables. Consume from InterSystems Reports.

0 0 https://community.intersystems.com/post/reports-roadmap?page=9#comment-232866
    go to post
Eduard Lebedyuk · Aug 11, 2023

You don't need to create a /login route since Login method is being called implicitly if auth is required.
To add logging, it's enough to redefine the Login method in your broker like this (##super docs):

ClassMethod Login(skipheader As %Boolean = 1) As %Status [ ProcedureBlock = 0 ]
{
    // do app-level logging
    quit ##super(skipheader)
}
0 0 https://community.intersystems.com/post/add-processing-during-login-class-extending-csprest?page=9#comment-232856
  • first
  • ‹ previous
  • …
  • 8
  • 9
  • 10
  • 11
  • 12
  • …
  • next ›
  • last
Eduard Lebedyuk
@Eduard.Lebedyuk
Senior Cloud Architect at InterSystems
MOD
Follow
Open Exchange profile

User statistics

Posts
312
Replies
3.5K
Likes
2.2K
Applications
39
Badges
90
Followers
52
People reached
314.2K
Accepted answers
786
  • Privacy & Terms
  • Guarantee
  • Section 508
  • Contest Terms
  • Cookies Settings
© 2025 InterSystems Corporation, Cambridge, MA. All rights reserved.

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up