Updates an existing outbound enabler proxy configuration with a given ID.
void updateOutboundEnablerProxy(java.lang.Integer outboundEnablerProxyId,
OutboundEnablerProxyVO outboundEnablerProxy)
throws com.sybase.sup.admin.exception.SUPAdminException;
If successful, updates the outbound enabler proxy configuration. If unsuccessful, returns SUPAdminException.
Iterator<OutboundEnablerVO> iter = supServerConf
.getOutboundEnablers().iterator();
if (!iter.hasNext())
return;
OutboundEnablerVO oe1 = iter.next();
oe1.setCertificateFile("4321");
supServerConf.updateOutboundEnabler(oe1.getID(), oe1);