Service XMPP

from xmpp import XMPP

Port NameLocationProtocolInterfaces
iplocalXMPPInterface

List of Available Interfaces

XMPPInterface

Operation NameInput TypeOutput TypeFaultsDescription
connectConnectionRequestvoid
XMPPExceptionundefined
sendMessageSendMessageRequestvoid
XMPPExceptionundefined

Types

ConnectionRequest:
Type Declaration
void {
  password[1,1]: string // 
  port[0,1]: int // 
  resource[0,1]: string // 
  host[0,1]: string // 
  serviceName[1,1]: string // 
  username[1,1]: string // 
}
SendMessageRequest:
Type Declaration
string {
  to[1,1]: string // 
}