You are not registered yet. Please click here to register!


 
 
plc storereviewsdownloads
This board is for PLC Related Q&A ONLY. Please DON'T use it for advertising, etc.
 
Try our online PLC Simulator- FREE.  Click here now to try it.

---------->>>>>Get FREE PLC Programming Tips

New Here? Please read this important info!!!


Go Back   PLCS.net - Interactive Q & A > PLCS.net - Interactive Q & A > LIVE PLC Questions And Answers

PLC training tools sale

Reply
 
Thread Tools Display Modes
Old May 27th, 2011, 12:56 PM   #1
Booze
Member
United States

Booze is offline
 
Join Date: Dec 2008
Location: Ogden
Posts: 6
code 16#0317 Connection Request Error:Connection not scheduled

I'm trying to set up a produced and consumed tag between a 1769-l23e-QBFC1 "producer "and a 1756-L61 "consumer" I have a produce tag created and configured the IO and downloaded the projects to both plc's ,everything shows that that things are communicating fine and the IO is happy as soon as i create a consumed tag and download the project I get a code 16#0317 error in the 1769E-QBFC1 module in the 1756-L61 project. I've set up a controlnet produce and consumed tag with no problems this is over ethernet/IP I've also used Rsnetworx for ethernet/ip uploaded the network config and then enabled edits and downloaded the config I'm using version RSlogix v.17
  Reply With Quote
Old May 27th, 2011, 03:34 PM   #2
Operaghost
Member
United States

Operaghost is offline
 
Operaghost's Avatar
 
Join Date: Apr 2002
Location: Seattle, WA USA
Posts: 1,747
RsNetWorx for Ethernet/IP is unnecessary. EtherNet/IP is an unscheduled network so it does not need to be scheduled like ControlNet does.

Can you post a copy of both programs (Compact & CLX) so we can take a look at it? You can remove the logic if there is anything proprietary. It's the setup of the I/O config that matters here.

OG
  Reply With Quote
Old May 27th, 2011, 03:49 PM   #3
Ken Roach
Lifetime Supporting Member + Moderator
United States

Ken Roach is offline
 
Ken Roach's Avatar
 
Join Date: Apr 2002
Location: Seattle, WA
Posts: 8,583
That error code is usually associated with ControlNet, as it indicates a Connection is not scheduled.

Posting the two projects would be ideal.

If you can't describe the tag type (atomic, array, UDT ?) and verify that it's identical on both sides. Just being the same size doesn't do it; the tags must be of identical data type and of course you have to get the tag name precisely correct on the Consumer side.
__________________
"Intelligence is the capacity to know what we are doing and instinct is just instinct. The results are about the same."
  Reply With Quote
Old May 30th, 2011, 12:48 AM   #4
daba
Lifetime Supporting Member + Moderator
United Kingdom

daba is offline
 
daba's Avatar
 
Join Date: Jul 2004
Location: uk
Posts: 2,147
I suspect that you may have two "paths" in your IO Config, and when you use the dropdown in your Consumer configuration, to select the producer, the software picks up the ControlNet path, not the EtherNet path.

Perhaps the only way round this is to delete, or break, the ControlNet path, create the Consumed tag, then put your ControlNet config back again.
__________________
___________________________
ControlLogix & SLC Training
a-b train ltd.
abtrain@tiscali.co.uk
www.abtrain.co.uk
tel: 07506 73 9999
self-help and help-yourself often get confused - ancient daba proverb


  Reply With Quote
Old May 31st, 2011, 06:28 AM   #5
Booze
Member
United States

Booze is offline
 
Join Date: Dec 2008
Location: Ogden
Posts: 6
These are the programs without the logic cant seem to get the consumer program small enough to upload
Attached Files
File Type: zip Producer.zip (296.2 KB, 9 views)

Last edited by Booze; May 31st, 2011 at 06:40 AM.
  Reply With Quote
Old May 31st, 2011, 07:06 AM   #6
daba
Lifetime Supporting Member + Moderator
United Kingdom

daba is offline
 
daba's Avatar
 
Join Date: Jul 2004
Location: uk
Posts: 2,147
Unfortunately it is the Consumer program that is important.

In it you specify the producer.....

To get the size of the consumer program down - Use "save as", and choose L5K file type, then zip that and post it
__________________
___________________________
ControlLogix & SLC Training
a-b train ltd.
abtrain@tiscali.co.uk
www.abtrain.co.uk
tel: 07506 73 9999
self-help and help-yourself often get confused - ancient daba proverb



Last edited by daba; May 31st, 2011 at 07:22 AM.
  Reply With Quote
Old May 31st, 2011, 02:11 PM   #7
Booze
Member
United States

Booze is offline
 
Join Date: Dec 2008
Location: Ogden
Posts: 6
Consumer program
Attached Files
File Type: zip Consumer.zip (4.7 KB, 15 views)
  Reply With Quote
Old May 31st, 2011, 02:22 PM   #8
Ken Roach
Lifetime Supporting Member + Moderator
United States

Ken Roach is offline
 
Ken Roach's Avatar
 
Join Date: Apr 2002
Location: Seattle, WA
Posts: 8,583
OK, that explains it.

You can't create an I/O connection or Produced/Consumed Tag connection with more than one network link in between the controller and the device.

What you have is a ControlLogix with a ControlNet I/O system, with a 1756-ENBT in a remote ControlNet chassis. From that remote 1756-ENBT, you've created a Produced/Consumed connection over EtherNet/IP to the remote CompactLogix controller.

If the 1756-ENBT were in the chassis with the ControlLogix, this would work. Because it's located across a ControlNet link, it won't.

I've had a handful of users make this assumption and it always leads to a "show me where it says I can't do that" discussion. Unfortunately RSLogix 5000 doesn't analyze the I/O connection schema and alert you that you've created an unworkable configuration.

And even worse.... it will work, sometimes. The reasons are a little obscure; it involves connection buffers and resource allocations.

There are two workarounds: put the 1756-ENBT into the local chassis with the ControlLogix, or switch to using MSG instructions instead of Produced/Consumed Tags.
__________________
"Intelligence is the capacity to know what we are doing and instinct is just instinct. The results are about the same."
  Reply With Quote
Old May 31st, 2011, 02:39 PM   #9
Booze
Member
United States

Booze is offline
 
Join Date: Dec 2008
Location: Ogden
Posts: 6
Awsome Thanks Ken
  Reply With Quote
Old May 31st, 2011, 02:42 PM   #10
jkerekes
Member
United States

jkerekes is offline
 
jkerekes's Avatar
 
Join Date: Aug 2007
Location: NJ
Posts: 1,325
Many years ago, i was driving myself insane at a customer site trying to get a similar configuration to work with Producer/Consumer. Had to change the config. to all ethernet.
  Reply With Quote
Old June 2nd, 2011, 08:49 AM   #11
kamenges
Member
United States

kamenges is offline
 
kamenges's Avatar
 
Join Date: Nov 2002
Location: Brillion, WI
Posts: 2,879
Quote:
Originally posted by Ken Roach:

I've had a handful of users make this assumption and it always leads to a "show me where it says I can't do that" discussion. Unfortunately RSLogix 5000 doesn't analyze the I/O connection schema and alert you that you've created an unworkable configuration.
Although I've never tried this I would have been one of the people saying "show me". I thought that one of the big "selling points" of the whole CIP-over-[every conceiveable network] thing was that you would be able to do just this type of thing.

Keith
  Reply With Quote
Reply
Jump to Live PLC Question and Answer Forum

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Forum Jump

Similar Topics
Thread Thread Starter Forum Replies Last Post
CIP over Ethernet/IP on VMS -- 0x6a error when writing to a tag? vorfeed LIVE PLC Questions And Answers 10 August 20th, 2010 05:41 PM
Help with Profibus CPU315-2 DP Rafael Guedes LIVE PLC Questions And Answers 5 September 3rd, 2007 06:44 AM
Simulator, Simulation, Shadow Code Terry Woods LIVE PLC Questions And Answers 1 January 2nd, 2005 01:40 PM
starting out Brendan Dixon LIVE PLC Questions And Answers 8 June 20th, 2004 08:48 PM
Automatin Direct Changes Download ArikBY LIVE PLC Questions And Answers 53 May 12th, 2004 12:05 AM


All times are GMT -5. The time now is 12:36 AM.


.