cancel
Showing results for 
Search instead for 
Did you mean: 

Calling transaction from url

former_member331989
Participant
0 Kudos

Hi,

I know MII transactions are web services at the sametime.

Is it possible to call transaction as url with parameter?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

agentry_src
Active Contributor
0 Kudos

Hi Cemil,

Sure, you can do that. Just would not recommend it if you are doing the webservice call from within MII. Use the Call Transaction action blocks instead.

Search for Runner in the MII help document for the syntax and more information.

Regards,

Mike

Answers (1)

Answers (1)

Former Member
0 Kudos

what version of MII?

former_member331989
Participant
0 Kudos

Hi,

MII Version : 12.2.2

Regards.

Former Member
0 Kudos

This is the generic Runner call for 12.1 and 12.0 but i'm pretty sure it will work with 12.2

http://<server>:<port>/XMII/Runner?Transaction=<folder>/<TransactionName>&<InputParamName1>=<value1>... n>=<value n>&OutputParameter=<YourOutput>&Content-Type=<YourContentType>

There are several different params for the Runner, this should get you started though. Usually your content-type will be text/xml.

former_member331989
Participant
0 Kudos

Hi Doug,

You have missed

&XacuteLoginName=user&XacuteLoginPassword=password

code for end of url.

Thanks.