cancel
Showing results for 
Search instead for 
Did you mean: 

How to stop only Sender Channels

Former Member
0 Kudos

How do I stop or stop only sender channels using the url:

http(s)://host:port/AdapterFramework/ChannelAdminServlet?party=party&service=service&channel=channel&action=action

Accepted Solutions (0)

Answers (5)

Answers (5)

baskar_gopalakrishnan2
Active Contributor
0 Kudos

Use wget and followed by the above your URL

example:

for starting

wget http(s)://host:port/AdapterFramework/ChannelAdminServlet?party=party&service=service&channel=channel&action=start

stopping

wget http(s)://host:port/AdapterFramework/ChannelAdminServlet?party=party&service=service&channel=channel&action=stop

and put in the script.  If you want trigger the script using batch file. That's it.

Former Member
0 Kudos

I am already aware of it. My question was how to stop and start only the sender channels using the URL.

baskar_gopalakrishnan2
Active Contributor
0 Kudos

one simple approach is manually create a list of sender channels and pass it programatically in a for loop for the above URL  channel='channelname'.   Another approach is using directory api as Raja mentioned.

rajasekhar_reddy14
Active Contributor
0 Kudos

you have to develop java based(servelet) application which can read communication channel details in drop downlist and perform some action for that you have to understand the architecture like how to read details.

This is kind of complex development and who knws better java coding can do that.

Bhargavakrishna
Active Contributor
0 Kudos

Hi,

Refer below link to start and stop communication channels by using directory API

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40165864-4d7c-2d10-b1b9-f98f7ebbe...

OR

you can use abap program to start and stop the communication channels

Refer below link

http://scn.sap.com/community/pi-and-soa-middleware/blog/2011/05/24/startstop-a-communication-channel...

Hope it will helpful..

Regards

Bhargava krishna

Former Member
0 Kudos

Hi Vicky,

     In the cc monitoring select the direction as Sender ......and from the list of cc

      you can stop it............Try following link

                          

                       http://help.sap.com/saphelp_nwpi71/helpdata/en/12/5dd23aaad7b3408dde3c1577fda5b3/frameset.htm

Regards,

Anirban

rajasekhar_reddy14
Active Contributor
0 Kudos

try to use Directory API.

Former Member
0 Kudos

Which one and how?