Webpage sending Telegram

This is a discussion on "Webpage sending Telegram" within the Web Page Design section. This forum, and the thread "Webpage sending Telegram are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Closed Thread
 
LinkBack Thread Tools
  #1  
Old Apr 16th, 2005, 05:43
Junior Member
Join Date: Jul 2004
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Webpage sending Telegram

I hope i'm not asking stupid questions. i need to design a web interface for a Substation Integoration & Monitoring System (SIMS), is the web interface able to send and receive telegram out to the ethernet port?

Will appreciate any advices and comments.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Apr 16th, 2005, 09:43
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
I'm not 100% sure what telegram is, but it sounds like it's not actually based on tcp/ip or anything similiar? You'll have to point me in the right direction on that one!

Normal http pages are transferred over port 80. In order to use the ethernet port for anything else, you'll have to use some sort of application. Flash can't do it, as it doesn't have access to hardware like that. Java *might* be able to do it, but I'm not sure. Last up is an activex control, which you would have to write yourself (or get a team to write). As far as I know, an active X control is written in C/C++, so it can do pretty much anything, but it'll be difficult and expensive to write.

I'm afraid that the web was never intended for this sort of use, and so you won't find any technology that'll do this easily.

I expect the easiest way would be to use a dedicated web server and actually call applications (dlls, exes, shell scripts, whatever) to do the work for you and output their progress as HTML.

Does anyone else have any idea of how this sort of thing is usually done?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Apr 16th, 2005, 10:41
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
ASPsock could do this, as could Winsock.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old Apr 18th, 2005, 06:48
Junior Member
Join Date: Jul 2004
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks guys.

Sirkent, do u mean a dedicated web server embedded in the SIMS? Can you explain more on that part of calling applications?

Rob, ASPsock and Winsock are able to do the telegram part or calling applications?

So now, I shall narrow my scope to Winsock, ASPsock and Active X? Wht kind of skills required in these?

Million thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old Apr 18th, 2005, 10:08
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
redkyna,

We still do not know what you mean when you say 'telegram', so we are just guessing what you mean.

Can you please let us know exactly what you mean, or are trying to do and we'll be able to help you better.

My skills extend to ActiveX, ASPSock and WinSock, so I should be able to help.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old Apr 23rd, 2005, 07:46
Junior Member
Join Date: Jul 2004
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
We want to develop a web interface for a Substation Interogation Monitoring System (SIMS), which is a small device running on an Intel Processor. Its function is to control the settings of relays at power stations.


The web should have a database storing some parameters of each relays, the parameters will be used to establish a connection between the web and the relay through the SIMS. The SIMS would want to accept the parameters in the format of a telegram in order to make that connection.

Back to my question, I need to find out if by any web technology, some data in a telegram format can be sent out through the ethernet port? and also, to accept some kind of acknowledgement from the ethernet port in a telegram format?

Thank you guys for ur time.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old Apr 23rd, 2005, 09:18
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,192
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Firstly, disregard 'ethernet port'. Let's assume your machines are connected to the internet, and so is SIMS.

You need to be passing data to SIMS over TCP and receiving an ACK back over TCP letting you know all was clear.

TCP would definitly be the best protocol to use because you have many tools at your disposal already to send / receive TCP info.

I would certainly recommend that you look into WinSock or another TCP component. Obviously you'll need to have some small application running on SIMS to listen, carry out tasks and send back the ACK's.

Hope I've given you some food for thought... let me know if you need any assistance.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old Apr 24th, 2005, 12:59
Junior Member
Join Date: Jul 2004
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Yes, we have found a software that creat a virtual TCP link between SIMS and the relays. So the data will be through TCP.

I have start looking at the sites about winsock and it says it's a API that allow windows program to send data over any network transport protocol. My experience in web is only limited to an online database using ASP and ACCESS, will this still be useful since we will also have a database in this case...? I mean the ASP, ACCESS and winsock, will they work together?

There will be someone else looking after the the application on SIMS, we were discussing on the data format between the web interface and SIMS and that's where he raised the telegram issue.

What do you think?

Thanks again.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
webpage, sending, telegram

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sending Email Paul00000001 JavaScript Forum 3 Jul 29th, 2006 03:16
Automatic Sending accessman Databases 0 Sep 25th, 2005 17:25
sending an e-mail by ASP benbacardi Classic ASP 5 Sep 1st, 2004 19:33
Sending Fax in ASP humair Classic ASP 4 Sep 17th, 2003 17:15


All times are GMT. The time now is 22:40.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved