Learning Documentation Community Open Exchange Ideas Portal Global Masters Certification Partner Directory Startup Hub
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,520)
  • Mentions (372)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Followers (49)
  • Following (0)
AllAccepted answers
    go to post
Eduard Lebedyuk · Aug 5, 2023

It is setting headers, yes. But in your previous sample code you were using ..Adapter.Post method which does not take tHTTPRequest.

0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-232061
    go to post
Eduard Lebedyuk · Aug 5, 2023

Sync BO with Deferred Response. BO defers, Second BS resumes.

0 0 https://community.intersystems.com/post/looking-functionality-business-process-wait-another-bpbs?page=11#comment-232056
    go to post
Eduard Lebedyuk · Aug 1, 2023

Go to routines and search for *%fm2class* - you should be able to export 5 items available there.

Alternatively, request WRC to provide you an xml file.

0 0 https://community.intersystems.com/post/fm2class-code-converting-fileman-cache-sql-classes?page=11#comment-231561
    go to post
Eduard Lebedyuk · Jul 31, 2023

If you have more than one BH referring to the same property, either use System Default Settings or Production settings.

0 0 https://community.intersystems.com/post/enshost-enscontextsearch-and-drop-down-property-editors?page=11#comment-231466
    go to post
Eduard Lebedyuk · Jul 31, 2023

Also you need to pass your tHTTPRequest as pHttpRequestIn (using Send* methods of the adapter) - as currently none of your headers are sent.

0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-231456
    go to post
Eduard Lebedyuk · Jul 31, 2023

When you use DEBUG=1 the request is not actually sent, just displayed, so you get downstream errors, ignore them.

First you need to check your request with DEBUG=1, verify that everything is okay and after that switch to DEBUG=2.

With DEBUG=2 the request is sent (but not displayed) and you get response back (which would be displayed).

0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-231451
    go to post
Eduard Lebedyuk · Jul 31, 2023

I guess we are hitting some other limit.

I  went with approach 4 myself.

0 0 https://community.intersystems.com/post/creating-classestables-more-999-properties-intersystems-iris?page=11#comment-231441
    go to post
Eduard Lebedyuk · Jul 31, 2023

Could you try DEBUG=1 please?

I think 1 is to show request and 2 is to show response.

0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-231436
    go to post
Eduard Lebedyuk · Jul 31, 2023

You can also audit queries:

0 0 https://community.intersystems.com/post/get-sql-statement-has-been-executed-resultset-or-libraryresultset?page=11#comment-231416
    go to post
Eduard Lebedyuk · Jul 31, 2023

You need to set

Parameter DEBUG As %Integer = 2;

in adapter, not in BO.

You'll get output on the current IO device (that's why you need to run BO in Foreground Mode), when your code gets to this line:

 set tSC = ..Adapter.Post(tURL)
0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-231401
    go to post
Eduard Lebedyuk · Jul 28, 2023

I thought the "irispip install *.whl" would install the wheel file.

That is correct. Download pycryptodomex wheel same as you downloaded  pycryptodom wheel, thansfer it to your server and try to install first  pycryptodomex, then  pycryptodom.

0 0 https://community.intersystems.com/post/irispip-cryptodome-c-error?page=11#comment-231281
    go to post
Eduard Lebedyuk · Jul 28, 2023

First install pycryptodomex wheel.

0 0 https://community.intersystems.com/post/irispip-cryptodome-c-error?page=11#comment-231251
    go to post
Eduard Lebedyuk · Jul 28, 2023

Try adding --no-index

0 0 https://community.intersystems.com/post/irispip-cryptodome-c-error?page=11#comment-231241
    go to post
Eduard Lebedyuk · Jul 28, 2023

I don't think there's a way to do that, but calling @Benjamin De Boe - maybe he has an idea.

Also you can GetABC Query text using %Dictionary.QueryDefinition class.

0 0 https://community.intersystems.com/post/get-sql-statement-has-been-executed-resultset-or-libraryresultset?page=11#comment-231231
    go to post
Eduard Lebedyuk · Jul 28, 2023

Assuming you are using EnsLib.HTTP.OutboundAdapter, you can do this:

1. In your adapter set DEBUG flag to 1 or 2:

/// This is the debug flag setting (0 do nothing, 1 show request, 2 show request/response)
Parameter DEBUG As %Integer = 1;

2. Start BO in foreground.

0 0 https://community.intersystems.com/post/rest-api-request-logging?page=11#comment-231221
    go to post
Eduard Lebedyuk · Jul 28, 2023

Download wheel from a computer that does have internet connection and transfer the wheel file into the target system somehow.

0 0 https://community.intersystems.com/post/irispip-cryptodome-c-error?page=11#comment-231216
    go to post
Eduard Lebedyuk · Jul 28, 2023

Why are you building from source? Use wheels:

.\irispip install https://files.pythonhosted.org/packages/3f/a1/72ad8fbeb2630e74fa89622ab24ec0ce46dc93dc172156f1a112eb76c014/pycryptodome-3.18.0-cp35-abi3-win_amd64.whl --target C:\InterSystems\IRIS\mgr\python
0 0 https://community.intersystems.com/post/irispip-cryptodome-c-error?page=11#comment-231206
    go to post
Eduard Lebedyuk · Jul 28, 2023

User must have U on %Ens_MessageContent to view messages, on your screenshot user only has R.

0 0 https://community.intersystems.com/post/how-allow-new-user-see-messages-content?page=11#comment-231156
    go to post
Eduard Lebedyuk · Jul 28, 2023

Run MONLBL to see where your code spends time.

0 0 https://community.intersystems.com/post/any-other-options-iterating-entries-global-faster?page=11#comment-231151
    go to post
Eduard Lebedyuk · Jul 28, 2023

You can call %fm2class using %SYSTEM.OBJ.FM2Class class.

To obtain the XML file open %fm2class routine and export it using Studio.

0 0 https://community.intersystems.com/post/fm2class-code-converting-fileman-cache-sql-classes?page=11#comment-231141
  • first
  • ‹ previous
  • …
  • 10
  • 11
  • 12
  • 13
  • 14
  • …
  • 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
325.9K
Accepted answers
787
  • 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