| T.R | Title | User | Personal Name
 | Date | Lines | 
|---|
| 5757.1 | .def file there? | BIKINI::KRAUSE | European NewProductEngineer for MCC | Wed Nov 24 1993 09:14 | 5 | 
|  | There has to be an appropriate mcc_appl_*.def file in mcc_system. Maybe 
the installation wiped it out or replaced it with a buggy one, or 
replaced it with a template that has to edited first...
*Robert
 | 
| 5757.2 | Well done Robert..... | PLUNDR::LOWEG | WANTED!! A modern day Robin Hood. | Thu Nov 25 1993 06:45 | 18 | 
|  |     
    
    Thanks Robert, exactly right.
    
    The customer found a mcc_appl_chipcom.def and a mcc_appl_chipcom.old in
    /usr/mcc/mcc_system. Both looked identical, then the customer swapped
    the files so the .old was the .def and it works ok.
    The customer is going to send me both files so I can check for any
    differences.
    However, this Chipcom OnDemand V2.0 is an advanced copy. Its official
    release is January 1994, so I was told by Chipcom UK. At this moment
    of time no UK Chipcom specialist have been trained (again, so I was
    told by Chipcom UK) so I can't get any advice from them.
    I am looking into gaining a different contact in Chipcom (ie the person
    who forwarded the advanced copy to digital's Dublin office), for
    support.
    
    Gary Lowe UK MCS Nets&Comms.
 | 
| 5757.3 | from this.. | PLUNDR::LOWEG | WANTED!! A modern day Robin Hood. | Mon Dec 13 1993 10:39 | 70 | 
|  |     
	The problem was due to comment fields on the released software
        containing 2 many characters. I vi'd the definition file
	/usr/mccc/mcc_system/mcc_appl_chipcom.def and changed it from
#/***************************************************************************
# *   ___
# * /\\__\ Copyright (c) Chipcom Corporation, 1993.   All rights reserved
# * \//__/ Copyright (c) Chipcom Ltd, 1993.   All rights reserved
# *
# * File: 	@(#)mcc_appl_chipcom.def	53.1
# *
# * Purpose:	Chipcom OnLine Launch Application Interface Definition
# *		File for Digital's Network Management Platforms.
# *
# * Author: 	Allan Moore (amoore)
# *
# * Reviewer: 	
# *
# * Current Maintainer: 	Allan Moore
# *
# * Walkthrough date: 	
# * Creation Date: 	Thu Mar  4 18:00:04 1993
# * Last Update: 	10/21/93
# *
# * Modification History:
# *
# * Ver   Date          By     Why? What?
# * ---   ----          --     ----------
# *
# * Description:
#
#      file must be placed in /usr/mcc/mcc_system or ~/ OR
#      in directory defined by MCC_APPL_SYS_LOCATION or
#                              MCC_APPL_USER_LOCATION
#
#	ONdemand must be started from applications pull down menu before
#       hub displays can be launched from selected entities using the 
#       operations pull down.
#
#
# *
# ***************************************************************************/
#	
DEL_KEY:  *
Menu:  Operations
	Button:  Open Chipcom Hub
	  applies_to:  snmp
	  binary:  /bin/mcc_to_ncs
	  COMMAND: open *<InternetName>*
	  env_type:  WINDOW
        Button:  Close Chipcom Hub
          applies_to:  snmp
          binary:  /bin/mcc_to_ncs
          COMMAND: close *<InternetName>*
          env_type:  WINDOW
   
Endmenu:
		 
MENU: Applications
  BUTTON: Chipcom ONdemand
  BINARY: /bin/ncs
  ENV_TYPE: window
ENDMENU
    See next note for working def file.
 | 
| 5757.4 | to this.. | PLUNDR::LOWEG | WANTED!! A modern day Robin Hood. | Mon Dec 13 1993 10:40 | 53 | 
|  |     
	To the following. Basically I have taken out the ***** lines at
	the top and bottom of the comment field and reduced the length
	to no longer than 72 characters. With this definition file I have
	proved the ability to launch Chipcom OnDemand from mcc ultrix.
	To save time using cut and paste I have missed out a lot of the
	comment field, but it can be included if you stick to 72 char max.
# *   ___
# * /\\__\ Copyright (c) Chipcom Corporation, 1993. All rights reserved
# * \//__/ Copyright (c) Chipcom Ltd, 1993.   All rights reserved
# *
# * File:       @(#)mcc_appl_chipcom.def        53.1
# *
# * Purpose:    Chipcom OnLine Launch Application Interface Definition
# *             File for Digital's Network Management Platforms.
# * Description:
#      file must be placed in /usr/mcc/mcc_system or ~/ OR
#      in directory defined by MCC_APPL_SYS_LOCATION or
#                              MCC_APPL_USER_LOCATION
#
#       ONdemand must be started from applications pull down menu before
#       hub displays can be launched from selected entities using the
#       operations pull down.
#
# *
#
#
DEL_KEY:  *
Menu:  Operations
        Button:  Open Chipcom Hub
          applies_to:  snmp
          binary:  /bin/mcc_to_ncs
          COMMAND: open *<InternetName>*
          env_type:  WINDOW
        Button:  Close Chipcom Hub
          applies_to:  snmp
          binary:  /bin/mcc_to_ncs
          COMMAND: close *<InternetName>*
          env_type:  WINDOW
Endmenu:
MENU: Applications
  BUTTON: Chipcom ONdemand
  BINARY: /bin/ncs
  ENV_TYPE: window
ENDMENU
    
    
    	Gary Lowe Warrington CSC Nets&Comms.
 |