[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

3098.0. "Data presentation?" by VFOVAX::OUTMAN () Thu May 28 1992 19:07

    I am fairly new to the world of MCC and I'm trying to add a function
    module fortracing a  message through a mail system.
    
    My problem is how to present the information to the user. Let me
    explain.
    
    For different types of mesages and different steps of the trace process
    an altogether different set of data needs to be presented to the user.
    
    For example step one might be to return the X400 domain name of the
    originator, the time the message arrived and the MPDU ID.
    
    Then continuing the trace the user will want to know when it left 
    our X400 domain and to which nodes the message was sent. (MR mailbox
    name).
    
    The the user would want to know for each recipient on each node 
    what time the message was delivered to each user.
    
    This has to be coupled with error routines such as we could not deliver
    to one recipient therefore a non-delivery message was sent for that
    user but the toerh deliveries went ok, etc.
                                              
    My problem is in the iconic display, each step of the trace overwrites
    the last step so it is no longer visible. I have not found a way
    to present this data in any tabular format. The Forms and command line
    interface work fine because they scroll but this really isn't an
    option.
    
    Does any one have any ideas or thoughts on how to present this type
    of information to the user using the iconic interface? Any suggestions
    would be appreciated.
    
    
    
    			Chuck
    
    					Chuck
T.RTitleUserPersonal
Name
DateLines
3098.1IOSG::WDAVIESWinton Davies,IOSGFri May 29 1992 14:1825
    I can't really answer this for you directly, but I was alerted to this
    note by ::Kennedy (sorry never got the first name)
    
    I've started work on a Cross-Network tracker for ALL-IN-1 IOS.
    The basic idea will be to send a probe message (to avoid fanout on
    multi-user messages and to avoid the problem of 'rollover' of logfiles.
    
    It will then use a mailbox and /Run to exceute a comfile on each node
    to figure out the fate of the stated Mr-id, then pass on to the next 
    destination. 

    There are some hairy bit here, such as figuring out what to go next -
    is MRGATE a default_decnet node or the MRGATE we know and love...
    Also passing back the final status report might be a bit dodgy
    (initially I might just use MAIL-11 :-) )     
                                                  
     I keep getting told, that there is NO REQUIREMENT FOR THIS (by Mail
    Engineering), yet you are the second or third person who seems to think
    this is not a bad feature at all. If you could forward me customer
    opinion (internal or external), that backs the need for this
    feature,then contact me on IOSG::WDAVIES
    
    Thanks,
       Winton 
     
3098.2TOOK::STRUTTManagement - the one word oxymoronMon Jun 01 1992 18:1039
    Chuck,
    you pose an interesting question. The need is obvious. What is less
    obvious is that the existing presentation modules in DECmcc are
    sufficient to meet your needs.
    
    It is perhaps possible, and maybe someone else will suggest exactly
    how, to use the existing FCL or IMPM to help present the information
    you want to show to your user/manager.
    
    However, the existing PMs are mostly geared around the request/response
    paradigm that is user to express most of the (dare I call them) simpler 
    management operations. Thus, if your problem is capable of being
    expressed in terms of requests and responses, then the existing PMs
    will work just fine for you.
    
    Unfortunately, your problem (and those of others) does not seem to lend
    itself to such a representation. Therefore, what seems to be more
    likely to be needed is that you need to write an "application" that
    encompasses both PM and FM capabilities. Note that we have already done
    this with Notification Services (which has its own PM and its own FM
    to do what it does) and the Autoconfiguration applications (which are
    command script based).
    
    Assuming that the basic objects (in your case, parts of the X.400 mail
    system) are manageable, and there is an Access Module  that supports
    these objects, then your application (which you might consider to be
    a combined PM/FM) can get to the operations and data it needs, and 
    present the results, or inquire of the user, in any way you see fit.
    
    If, as occurs in some scenarios, you wish to separate the user
    interface aspects from the 'functional' aspects (normally done so you
    may reuse the functions for other purposes) then you would want to
    have your own FM and PM as separate units. This is exactly the scheme
    that Notification Services chose to use.
    
    Hope this helps, some.
    
    Regards
    Colin
3098.3Great input, thanksVFOVAX::OUTMANTue Jun 02 1992 08:1221
    RE <.1> 
    
    Clinton, There is a need for such a tool, We are working with customers
    that press the envelope (love that term) of our current messaging
    products. Perhaps with a little field input we can get such a tool in
    the new MTA. I will send you a mail message as soon as things settle
    down here a little.
    
    RE <.2> Colin,
    
    Thanks for the great input, this sound exactly like the functionality 
    we need. Are there any documents, or samples, of this type of
    functionality? By samples I mean code that we might use as a starting
    point. 
    
    We have a prototype due the end of June do you have any hints for work
    arounds that we might be able to use for the prototype?
    
    				Thanks
    				Chuck
    
3098.4TOOK::STRUTTManagement - the one word oxymoronSun Jun 07 1992 01:5716
.3>    Thanks for the great input, this sound exactly like the functionality 
.3>    we need. Are there any documents, or samples, of this type of
.3>    functionality? By samples I mean code that we might use as a starting
.3>    point. 
    
    I don't know of any "existing code" or templates to point you to.
    However, I don'see why any DECwindows or Motif code would not
    be appropriate to use as the basis for your application's user
    interface. Based on your original description, you have a
    single-purpose application in mind, so it would probably not need to
    interact (much) with the iconic map - other than being launched as
    an "application". Yes, I know this is less desireable than being
    selected from the 'operations' menu, but......
    
    Colin