Can i use the output of a model as source of another model?

Can i use the output of a model as source of another model?

massimo_c
Not applicable
2 Views
1 Reply
Message 1 of 2

Can i use the output of a model as source of another model?

massimo_c
Not applicable
 
0 Likes
Accepted solutions (1)
3 Views
1 Reply
Reply (1)
Message 2 of 2

arunTTT2P
Explorer
Explorer
Accepted solution

Hi @Massimo C,

Yes, you can make use of the socket communication to enable this requirement. In this case one model serves as the client and the other as a sever.

Basically, through socket communication, you will be sending strings from one model to another.

Send message to another model, when a flow item goes to it's end point in the model. On receive of the message you can create a flow item, which will act as a source.

you have to use socket commands commands like:

clienconnect(); clientcreate(); clientreceive(); clientsend(); serveraccept(); servercloseconnection(); serverclosemain(); servercreatemain(); serverreceive(); serversend(); socketend();

Here's a sample example provided in the forum.

Regards,

Arun KR