Author |
Message |
tomvermoesen
|
Posted: Thu Jul 10, 2008 11:57 am |
|
|
Newbee |
Joined: Wed Jul 09, 2008 2:19 pm Posts: 10
|
Hi,
I want to make call back with a tixi alarm modem. In the manuals I found that under ISP two things are needed
CBIS definition (smtp-server, tel nr,...) and IncomingCallTrigger.
Also under system, there must be a CBIS request.
I inserted all these lines, CBIS def and incomingCallTrigger under their specific folders in TICO (I believe there is a line at the top and bottom to write the data to the ISP folder?). The CBISRequest I wrote under Eventhandler/system hidden=1
When I try to call, The logging tells me he doesn't find the path of the CBIS command.
How can I configure the CBIS properly?
Tom
|
|
|
|
|
tomvermoesen
|
Posted: Thu Jul 10, 2008 2:20 pm |
|
|
Newbee |
Joined: Wed Jul 09, 2008 2:19 pm Posts: 10
|
The TAM recognizes the CBIS procedure now, but I get an error during smtp mail transfer, error -100.
At the end of the job processing log I get this message:
<LastCmd>
<LastCmdLine>
<ReceivedLine>
<StatusDesc>
What does this mean???
Tom
|
|
|
|
|
tomvermoesen
|
Posted: Thu Jul 10, 2008 2:23 pm |
|
|
Newbee |
Joined: Wed Jul 09, 2008 2:19 pm Posts: 10
|
The Tixml script is gone in my previous message, I try again
"<LastCmd>
<LastCmdLine>
<ReceivedLine>
<StatusDesc>"
|
|
|
|
|
tomvermoesen
|
Posted: Thu Jul 10, 2008 2:26 pm |
|
|
Newbee |
Joined: Wed Jul 09, 2008 2:19 pm Posts: 10
|
***k it,
The message is
CONN
MAIL FROM: <CBIS@tixi.com>,
550 5.1.8 Only registrated user are allowed to use this system {mp-eu005}
5.1.8 Only registrated user are allowed to use this system {mp-eu005}
|
|
|
|
|
Tixi-Support
|
Posted: Thu Jul 10, 2008 2:33 pm |
|
|
Tixi-Support-Team |
Joined: Mon Oct 10, 2005 1:40 pm Posts: 94 Location: Berlin
|
There are two ways to configure CBIS:
The "old" method with the /ISP/CBIS Database (described in the Webserver TiXML Manual) requires a CBIS-Server (some sort of SMTP-Server) without email authentication. In fact that SMTP servers without authentication are no longer available, we recommend to use the "new" method described in the TiXML Reference Manual, which uses the /ISP/ISP email servers for sending the CBIS email.
Assuming that your Alarm Modem is already configured with a dialup account and an ESMTP E-Mail account, you have to add following settings:
An incoming call trigger at TICO register "20-incoming CallerID alarms":
[<SetConfig _="ISP" ver="y">
<IncomingCallTrigger>
<No1 _="0301234567" event="CBIS"/>
</IncomingCallTrigger>
</SetConfig>]
An EventHandler at TICO register "10-EventHandler":
[<SetConfig _="EVENTS" ver="y">
<EventHandler>
<CBIS>
<SendMail _="MessageJobTemplates/CBIS"/>
</CBIS>
</EventHandler>
</SetConfig>]
A MessageJobTemplate at TICO register "11-MessageJobTemplates":
[<SetConfig _="TEMPLATE" ver="y">
<MessageJobTemplates>
<CBIS _="CBIS">
<Recipient _="/D/AddressBook/Contact_0"/>
<Sender _="/D/AddressBook/MySelf"/>
</CBIS>
</MessageJobTemplates>
</SetConfig>]
The Timeout to keep the connection online for the given time, on TICO register "28-CBIS":
[<SetConfig _="ISP" ver="y">
<CBIS>
<ResponseTime _="180s"/>
</CBIS>
</SetConfig>]
_________________ Tixi Support Team
E-Mail-Support, Mo-Fr, 9:00am - 5:00pm, Tixi-Support@tixi.com
Support-Hotline, Mo-Fr, 9:00am - 5:00pm, +49-30-406 08 300
|
|
|
|
|
Tixi-Support
|
Posted: Thu Jul 10, 2008 2:34 pm |
|
|
Tixi-Support-Team |
Joined: Mon Oct 10, 2005 1:40 pm Posts: 94 Location: Berlin
|
tomvermoesen wrote: The Tixml script is gone in my previous message, I try again
"<LastCmd> <LastCmdLine> <ReceivedLine> <StatusDesc>"
I had the same problem, seems to be a forum bug related to the last update.
Please activate "disable HTML in this posting", then it will work.
_________________ Tixi Support Team
E-Mail-Support, Mo-Fr, 9:00am - 5:00pm, Tixi-Support@tixi.com
Support-Hotline, Mo-Fr, 9:00am - 5:00pm, +49-30-406 08 300
|
|
|
|
|
tomvermoesen
|
Posted: Thu Jul 10, 2008 3:56 pm |
|
|
Newbee |
Joined: Wed Jul 09, 2008 2:19 pm Posts: 10
|
The CBIS was succesful! I called to the TAM, received an IP adress via e-mail and accessed the website.
Is there however some way I can access the PLC via this IP adress?
Thanks,
Tom
|
|
|
|
|
Tixi-Support
|
Posted: Thu Jul 10, 2008 5:01 pm |
|
|
Tixi-Support-Team |
Joined: Mon Oct 10, 2005 1:40 pm Posts: 94 Location: Berlin
|
tomvermoesen wrote: Is there however some way I can access the PLC via this IP adress?
You can create your own website with references to the variables, or you can use an HTTP-Request to get XML data:
http://%IP-Address/System/Properties/Process/Bus1/Device_0/
_________________ Tixi Support Team
E-Mail-Support, Mo-Fr, 9:00am - 5:00pm, Tixi-Support@tixi.com
Support-Hotline, Mo-Fr, 9:00am - 5:00pm, +49-30-406 08 300
|
|
|
|
|
|