Questions tagged [intersystems-ensemble]

Ensemble is an enterprise application integration system developed by InterSystems in Cambridge, MA.

Ensemble is an enterprise application integration system developed by InterSystems in Cambridge, MA. It combines an integration server, application server and database in one system. It allows you to create business processes to handle messages and data from many disparate systems.

39 questions
8
votes
7 answers

Version control for InterSystems Ensemble/Caché

I'm in a group which is starting to develop using InterSystems Ensemble (an integration framework built on top of InterSystems Caché). InterSystems has not made the Ensemble Management Portal source-control-aware and this seems a source of problems…
fglez
  • 8,422
  • 4
  • 47
  • 78
3
votes
1 answer

How to create a unique GUID in intersystem's cache?

Looking through the documentation I don't see a GUID datatype. Is there a function or something to generate a random GUID? What is it?
O.O
  • 11,077
  • 18
  • 94
  • 182
2
votes
1 answer

Execute stored functions at run-time

I am trying to retrieve stored functions from a table and have them executed at run-time. Ex MyTableFieldValue contains: $PARAMETER(MyClass,MyParameterName) Where MyTableFieldValue is a field value in a table called MyTable. MyParameterName…
1
vote
3 answers

How do I reference a local method's name property in code?

I have a cache object property that I'd like to set to the current class and method in context's name, in order to do some tracking on what methods/classes are generating the largest frequency of these objects. I can easily grab the current class'…
1
vote
1 answer

How change namespace of Soap ns2 message in %SOAP.Webclient

I've created a soap client connection using the wizard of Atelier and it has created all messages (request and response) and the business operation object. This soap connection will be used to connecto with other SOAP Webservices (changing the URL)…
1
vote
3 answers

Sending An HTTP Request using Intersystems Cache

I have the following Business Process defined within a Production on an Intersystems Cache Installation /// Makes a call to Merlin based on the message sent to it from the pre-processor Class sgh.Process.MerlinProcessor Extends…
1
vote
1 answer

COS How to set Ens.StringContainer to String Value

I like to understand how you can set Ens.StreamConainer to a string value. I just see a class for setting the OriginalFilename but nothing for setting the body. s pRequest = ##class(Ens.StreamContainer).%New() s pRequest.OriginalFilename = "Test" d…
Jefferson
  • 173
  • 2
  • 12
  • 32
1
vote
0 answers

%Net.FtpSession Trace Mask method

In %Net.SSH.Session there is a method settraceMask and that will create a wireshark cap file for help with troubleshooting a connection. I dont see any class in Net.FtpSession that can be used for troubleshooting. Is there a different method that I…
Jefferson
  • 173
  • 2
  • 12
  • 32
1
vote
1 answer

COS Setting keyboard-interactive

Is there any config setting in Net.SSH.Session that will let you set keyboard-interactive I don't see any option to set this in…
Jefferson
  • 173
  • 2
  • 12
  • 32
1
vote
1 answer

Cache Object Script How to MakeDirectory FTP Class

In Cache Object Script how can I make a remote directory on an FTP Server. I do see the class MakeDirectory but that is returning 0 when I call it? set ftp=##class(%Net.FtpSession).%New() d ftp.Connect(COMServer,c.Username,c.Password) d…
Jefferson
  • 173
  • 2
  • 12
  • 32
1
vote
1 answer

How can I get the file extension

In MUMPS how can I get the file extension is there a class I can use? Class(%File).GetFilename that will return the Full Message name but i would just like the extension? Set tNameIn=##class(%File).GetFilename(pRequest.OriginalFilename)
Jefferson
  • 173
  • 2
  • 12
  • 32
1
vote
2 answers

Set a datatype java.util.Date property of proxy Java Object in Cache by Gateway Java

I'm implementing a solution that integrates a Caché application with a Java application by a Java Gateway. In the Java application I have a object what have a property of datatype "java.util.Date" and I have to set this in the Caché application.…
1
vote
1 answer

Intersystem's ENSEMBLE JDBC SQL Gateway example

I'm trying to connect to an Oracle DB from an Ensemble 2010 machine, on a server that i can only access remotely. So, I first tried it locally: I installed the same Ensemble 2010 with Oracle 10g and Created a new JDBC Gateway Connection which seems…
ggerena
  • 11
  • 4
1
vote
1 answer

Caché OREF Error - Getting More Information

I'm am trying to integrate with a Caché Web Service and I'm getting an error message similar to: ERROR #5002: Cache error: zMethodName+45^AA.wsClass.8 I do have have access to the code (albeit just a copy, so read-only), and I'm…
Chad Gorshing
  • 2,998
  • 32
  • 30
1
vote
1 answer

Check Directory for files after FTP operation

I currently have two custom business operation scripts that detect whether a file or files have been ftped. If the job was successful an email is sent. I am looking to check if the directory is empty and if so send an email letting the user know…
baxterxc60
  • 57
  • 9
1
2 3