#Ensemble

23 Followers · 2.4K Posts

InterSystems Ensemble is a complete and easy-to-use integration platform that enables users to connect people, processes, and applications in record

time.

Learn more

Documentation

Edit
Question Thembelani Mlalazi · Mar 12, 2018

I have a service that that I would like to use to  poll the database table in MySQL server 2012 and get an id to use if the condition is met but have trouble achieving this here is what I have so far any suggestions please.

Method OnProcessInput(pInput As EnsLib.SQL.Snapshot, Output pOutput As %RegisteredObject) As %Status
{
 
  set pRequest=##class(SamsReq).%New()
      set pRequest.pID=pInput.Get("pID")
     
     
 

< set sc=.
0
0 8
Edit
Question Carey Grant · Feb 10, 2017

Hopefully a quick question regarding the SendFormDataURL() class method.   I have the following:

Set tSC = ..Adapter.SendFormDataURL(..Adapter.URL,.restResponse,"POST",,,pRequest)

I get the  following error response.

ERROR #5001: ERROR <Ens>ErrHTTPStatus: Received non-OK status 500 from remote HTTP server: 'HTTP/1.1 500 Internal Server Error' : <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <exc:exception xmlns:exc="http://mywebsite.com/ri/exception"> <message>The request content type must be application/xml</message> </exc:exception>

http://docs.

0
0 10
Edit
Question Thembelani Mlalazi · Jun 22, 2018

I have a service that takes a file and pass it through to the production .While I am passing the file through I get the file stream and set it to a variable within my message and the variable is of type %Ens.StreamContainer. But after all processing and I need to write out my file to a pdf format The file gets written but is a corrupt file since I can not read it I have tried this with asimple pass through everything is fine .But here I do not know what I am doing wrong here is the operation code

 set pInput=pRequest.
0
0 0
Edit
Article Steve Pisani · Oct 27, 2016 1m read

Hi - If you want to embed Ensemble's Workflow Inbox, (that offers workflow task items to workflow users) inside of your application - you can access the URL directly without necessarily giving users access to the Management Portal - but more importantly, you can strip away the Titlebar, Worklists borders etc.

You do this by using the same URL parameters you would use, if embedding a regular DeepSee dashboard into your application.

For example, using &EMBED=1

removes all titles, borders and worklists.

0
0 0
Edit
Article Gevorg Arutiunian · Jul 26, 2018 2m read

(Originally posted on InterSystems CODE by blaise Zarka, 10/27/14) The following code snippet includes methods for Ensemble that migrate the item settings for the given production to default. The class method "test" runs the process, and it takes the name of a production class as a string:


Class blaisezarka.MigrateSettingsToDefault [ Abstract ]
{

/// Migrate all items settings from production productionClassName to system default settings ClassMethod test(productionClassName As %String) As %Status { set production = ##class(Ens.Config.Production).

0
0 0
Edit
Article Steve Pisani · Oct 27, 2016 1m read

Hi - If you want to embed Ensemble's Workflow Inbox, (that offers workflow task items to workflow users) inside of your application - you can access the URL directly without necessarily giving users access to the Management Portal - but more importantly, you can strip away the Titlebar, Worklists borders etc.

You do this by using the same URL parameters you would use, if embedding a regular DeepSee dashboard into your application.

For example, using &EMBED=1

removes all titles, borders and worklists.

0
0 0
Edit
Question Mitch Anderson · May 16, 2017

Hey guys,

I'm working with an EnsLib.XML.X12.Document object which consists of a parent object along with multiple children.

When using the following code, my sent object is losing all references to its children.  I've played with the deep parameter and nothing is working to automatically clone the objects children(group docs ref)along with itself.  (Even though the documentation states that it should..)

objectClone = object.%ConstructClone()

d ..sendRequestAsync("Destination",objectClone)

Any insight would be really helpful.

Thanks!

Mitch

0
0 1