共用方式為


使用 Siebel 建立通道

本節示範如何藉由提供及取用 XML 訊息,建立通道以使用 Siebel 直接傳訊。

//create a channel factory, capable of sending a request to Siebel and receiving a reply (IRequestChannel)  
IChannelFactory<IRequestChannel> factory = binding.BuildChannelFactory<IRequestChannel>(new BindingParameterCollection());  
  
//open factory  
factory.Open();  
  
//obtain a channel from the factory by specifying the address you want to connect to  
IRequestChannel irc = factory.CreateChannel(address);  
  
//open the channel  
irc.Open();  
  
//perform operations  
…………  
…………  
…………  
  
//close the channel  
irc.Close();  
  
//close the factory  
factory.Close();  

建立通道之後,您就可以使用該通道在 Siebel 上執行作業。

另請參閱

使用 WCF 通道模型開發 Siebel 應用程式
使用 WCF 通道模型搭配 Siebel 配接器在商務元件上執行作業