• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Sequence Diagram: How to display JSP to JSP transition?

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
An action on Input.jsp returns Output.jsp as outcome to the Actor. How do we display this basic interaction in sequence diagram? By default the return arrow comes back to where we started from (which is Input.jsp) but that is not what actually happens.

Is it fair to remove the return arrow from Controller to Input.jsp
Actor --> Input.jsp --> Controller --> Backend

And then show:
Actor --> Output.jsp
 
Ranch Hand
Posts: 462
Scala jQuery Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why can't you just do something like:


 
san kumar parihar
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Will - If "return" arrow (as you depicted) is synchronous invocation to Output.jsp from OtherStuff, then will Actor invoke same "execution occurance" on Output.jsp (verical rectangle running down) for the next activity? I hope that does not break any UML standard.

PS: I am using Rational Software Architect.
 
If tomatoes are a fruit, then ketchup must be a jam. Taste this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic