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
  • Profile page
  • Posts (313)
  • Replies (3,505)
  • Mentions (367)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Followers (49)
  • Following (0)
AllAccepted answers
    go to post
Eduard Lebedyuk · Apr 12, 2017

Whitelist ip's with access to management postal

1. Open <install dir>/CSP/bin/CSP.ini

2. Set System_Manager.

0 0 https://community.intersystems.com/post/separate-ports-management-portal-vs-soaprest-services-block-access-mgmt-portal?page=150#comment-92776
    go to post
Eduard Lebedyuk · Apr 12, 2017

There are:

  • break
  • zbreak
  • breakpoint
0 0 https://community.intersystems.com/post/how-export-prj-file-without-breakpoints?page=150#comment-25051
    go to post
Eduard Lebedyuk · Apr 12, 2017

Breaks maybe? AFAIK break points are unaffected by compilation.

0 0 https://community.intersystems.com/post/how-export-prj-file-without-breakpoints?page=150#comment-25031
    go to post
Eduard Lebedyuk · Apr 12, 2017

OPTIONS request should be available to unauthorized users.

0 0 https://community.intersystems.com/post/authentication-rest?page=150#comment-25026
    go to post
Eduard Lebedyuk · Apr 12, 2017

1. Convert excel files into csv (manually or automatically)

2. Use csv import in %SQL.Util.Procedures class.

2 0 https://community.intersystems.com/post/how-import-exel-files-cache?page=150#comment-92731
    go to post
Eduard Lebedyuk · Apr 11, 2017

Use ##SafeExpression instead of ##Expression to generate code once.

0 0 https://community.intersystems.com/post/copy-base-method-derived-class-tricks-debuger?page=150#comment-92691
    go to post
Eduard Lebedyuk · Apr 11, 2017

You set tSC variable equal to a string:

"/ensemble/data/transfer/AncillaryPDF/TMSAUDIO/Apr-11-1/980512729TMSAUDIO1046784936436537800.pdf"

However, this variable was (probably) intended to be used as a %Status. Somewhere there is probably a check:

$$$ISERR(tSC)
$$$ISOK(tSC)

Or status variable is set from tSC.

0 0 https://community.intersystems.com/post/invalid-status-code-structure-error?page=150#comment-92686
    go to post
Eduard Lebedyuk · Apr 11, 2017

Possible reasons

  • Class doesn't have a %Open method. Check class value, and try to execute in a terminal: zw ##class(<class>).%Open(oid)
  • Passing id instead of oid. Try to use %OpenId method instead.
0 0 https://community.intersystems.com/post/error-while-opening-cach%C3%A9-class-instance?page=150#comment-92681
    go to post
Eduard Lebedyuk · Apr 11, 2017

Please provide my_property definition.

0 0 https://community.intersystems.com/post/python-cache-binding-unable-set-list-property-2d-python-array?page=150#comment-24916
    go to post
Eduard Lebedyuk · Apr 11, 2017

1. Do you send Authorization Basic header? What's the status code?

2. Include session cookie with the request. It should be done automatically.

0 0 https://community.intersystems.com/post/authentication-rest?page=150#comment-92626
    go to post
Eduard Lebedyuk · Apr 10, 2017

1. Go to: SMP -> Menu -> Web Apps -> Your web app.

2. Click on DeepSee checkbox.

3. Press Save.

0 0 https://community.intersystems.com/post/how-turn-deepsee-flag-web-app?page=150#comment-92616
    go to post
Eduard Lebedyuk · Apr 10, 2017

1. Export cube registry class from source server

2. Import cube registry class into target server

3. Execute in a terminal on a target server:

set ^DeepSee.CubeManager("activeRegistry") = "Cube.Registry.Class"
1 0 https://community.intersystems.com/post/how-move-and-deploy-cube-registry?page=150#comment-92581
    go to post
Eduard Lebedyuk · Apr 10, 2017

Unit tests should be on a server. Copy your files to "/usr/cachesys/mgr/unittests/" and point ^UnitTestRoot  global to it.

1 0 https://community.intersystems.com/post/cache-unittest-manager-runtest-error-5007?page=150#comment-92571
    go to post
Eduard Lebedyuk · Apr 7, 2017

To check new prompt $system.Process method can be used:

do $system.Process.TerminalPrompt(8,2,4)

Here's a description of all possible values. For me 4 (Current time) is very useful as it allows for a quick performance tracking.

3 0 https://community.intersystems.com/post/where-am-i-adding-extra-information-terminal-prompt?page=150#comment-24776
    go to post
Eduard Lebedyuk · Apr 6, 2017

You're trying to connect to cache from the same cache process. I think the error arises from that.

0 0 https://community.intersystems.com/post/python-cache-binding-dll-load-failed-when-trying-import-intersyspythonbind3-using-zf-1?page=150#comment-24706
    go to post
Eduard Lebedyuk · Apr 6, 2017

You can output to current device, and read that in Caché. Here's a relevant discussion.

0 0 https://community.intersystems.com/post/python-cache-binding-dll-load-failed-when-trying-import-intersyspythonbind3-using-zf-1?page=150#comment-24696
    go to post
Eduard Lebedyuk · Apr 6, 2017

Why are you running script connecting to Caché from Caché?

0 0 https://community.intersystems.com/post/python-cache-binding-dll-load-failed-when-trying-import-intersyspythonbind3-using-zf-1?page=150#comment-24686
    go to post
Eduard Lebedyuk · Apr 5, 2017

Use %Last somehow?

0 0 https://community.intersystems.com/post/how-get-measure-last-day-month-deepsee?page=150#comment-24681
    go to post
Eduard Lebedyuk · Apr 4, 2017

What about %ZEN.Auxiliary.JSONProvider:%WriteJSONFromObject?

0 0 https://community.intersystems.com/post/convert-json-string?page=150#comment-24591
    go to post
Eduard Lebedyuk · Apr 4, 2017

You can click "Add new comment" label under the post you want to reply to.

0 0 https://community.intersystems.com/post/ntlm-authorisation?page=150#comment-24546
  • first
  • ‹ previous
  • …
  • 149
  • 150
  • 151
  • 152
  • 153
  • …
  • next ›
  • last
Eduard Lebedyuk
@Eduard.Lebedyuk
Senior Cloud Architect at InterSystems
MOD
Follow
Open Exchange profile

User statistics

Posts
313
Replies
3.5K
Likes
2.3K
Applications
39
Badges
90
Followers
49
People reached
322.6K
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