How to draw an Enterprise Architecture Diagram? - diagram

I am assigned a task in the job to draw a enterprise architecture diagram. We have stack of applications and they talk to each other. For example, Customer fill up the registration form from main site then it goes to one of our main applications to approve then once it is approved then customer can able to log in to portal. The portal is actually a REST api on back-end.
How can I express this in a diagram? What type of diagram it could be? Should it really call enterprise architecture diagram? Does it fall to any category?What type of UML notation I can use if any?
Thanks a lot in advance

There is no such thing as an "Enterprise Architecture Diagram"
"Enterprise Architecture" is software design and process at an enterprise level. Instead of working with class diagrams, you are working with full applications. The best standard as of Jan 2017 of Enterprise Architecture is Togaf 9 (or Zachman).
The list of diagrams that an Enterprise Architect would typically produce are here:
http://pubs.opengroup.org/architecture/togaf9-doc/arch/chap35.html
http://pubs.opengroup.org/architecture/togaf9-doc/arch/chap34.html
34.3.2 Core Architecture Artifacts
Solution Concept Diagram
Business Footprint Diagram
Business Service/Information Diagram
Functional Decomposition Diagram
Product Lifecycle Diagram
Conceptual Data Diagram
Logical Data Diagram
Data Dissemination Diagram
Application Communication Diagram
Application and User Location Diagram
Application Use-Case Diagram
Environments and Locations Diagram
Platform Decomposition Diagram
Project Context Diagram
Benefits Diagram
Sounds like you want an Application Communication Diagram.
Customer fill up the registration form from main site then it goes to
one of our main applications to approve then once it is approved then
customer can able to log in to portal. The portal is actually a REST
api on back-end.
How can I express this in a diagram? What type of diagram it could be?
Should it really call enterprise architecture diagram? Does it fall to
any category? What type of UML notation I can use if any?
I would read the above links, but be mindful that this is high level guidance.
Then think about what message you want to relay, for example, do you want your boss to approve the flow? Do you want to tell the users how the system works? Are you the architect and supplied the developers with a schematic? WHY are you creating this diagram?
Then, when you understand what you are trying to achieve, it should be obvious what diagrams to produce. In this situation I would probably produce two diagrams:
A diagram showing the physical parts of the system, UI, main applications, tomcat/apache server, database. I would probably do this from top to bottom and isolate the tiers, UI at the top (presentation), then business logic, then datastore at the bottom. Alternatively, left to right would work.
A diagram showing the "registration form" process. I would probably structure this as an event trace diagram or sequence diagram (UML) showing the lifelines (UI, app, db) and show the sequence of events, 1. fill in form, 2. security, 3. persist, 4. return. (The "registration form" process would ideally have been lifted from a use case diagram)
If this is one diagram of many then then second diagram could show other flows, such as "update user details" or "failure scenarios".
However if this is a short one off exercise then you could overlay the behaviour on top of diagram. There's no official name for a combined diagram like that but it sometimes helps get the message across.

"I am assigned a task in the job to draw a enterprise architecture diagram"
Short answer: first understand what your boss (or whoever is asking this) wants. In TOGAF's terms, what views are they interested in?
Once you have that info you can use whatever modeling language is most appropriate (UML or AchiMate are typical such language when it comes to Enterprise Architecture).

I guess you wanted a conceptual enterprise architecture diagram a typical stack of applications (logical), if so there are simple approaches that can work for you.
Conceptual Logical diagram (see here for example)
Technology based big picture (see here for example) - created using the below mentioned free online tool.
Hope this helps you to get going, it is typically depends on the CIO organization style you are in or IT eco system demands.
I also suggest a completely free online tool to draw these diagrams
It has lot of built-in templates as well for cloud related architectures, it helps to create technical architecture, solution architecture, application architectures, data architecture, integration architecture and enterprise architecture etc.

Related

Can there be a use case diagram for an app that is completely offline?

I am building an app that is completely client side with 0 backend, as all the data is completely static and non modifiable. From what I understand of USE case diagrams, they are supposed to represent actions and reactions between user and server. But if there is no involvement of a server, can there be a USE case diagram??
I tried looking up on reddit and stack overflow but didn't find anything on specifically on client side apps. I am expecting an explanation.
You can use a use-case as long as you have an actor, a subject (i.e. a system), and a goal. According to the UML specifications:
Each UseCase specifies some behavior that a subject can perform in collaboration with one or more Actors. UseCases define the offered Behaviors of the subject without reference to its internal structure.
Front-end, backend, client-side app, server are about internal structure of your system. They don't matter for the use-case. What matters is the goal that an actor (user) wants to achieve with your system.
Use-cases are not either meant to describe the details of the interaction with your system. Modeling such details requires somehow to take into account the sequence of the interactions or the flow of events. Use-cases, on contrary, have no sequential order and no workflow. There are other modeling for that.
Last but not least, use-cases shall not to be confused with user-interfaces. User interface is about how the interaction happen, whereas use-case is what the interaction is about. Use wireframes or other techniques for user-interfaces. Even the inventor of use-cases, Ivar Jacobson, explained that it was a bad thing to let user interface design be tied to use-cases.

Use Case / UML scenario for App and an external system

I am currently working on the use cases for a car sharing app.
The simple diagram for the process of registration looks like this:
At the moment I am stuck with the following scenarios.
When a new customer is registered, a process is carried out at the head office (central)in which the following points are checked
Scenario 1 - Head office side:
1. The identity of new customers is carried out externally with
the post. Two possibilities: presenting the identity card at a post office branchor carrying out by video.
2. The verification of the customer's bank details is carried out externally with the bank.
3.The system will verify that the contact details (email address) are correct
4.the consent to the GTC has been obtained
My sketch for the confirmation process looks like this:
How do I show that the system verifies that the contact details (email address) is correct ? How do I show that consent to the GTC has been given ?
Scenario 2 - Customer's side: A customer can view and edit the information of his registration.
1.Edit profile data
2.Edit contact information
3.Edit bank details.
If information is changed during editing, verification must be carried out again by the head office.
What would the two use case diagrams look like ?
One or two apps?
(Posted before diagrams were added to the question)
Nothing in the narrative says that you need two systems. It's too early to decide about system architecture. You could have the following variants, each with pros and cons:
one and the same system (e.g. post office and customer access it via the web);
one and the same system that is accessible using different components on different devices (e.g. a rich client in the post office, a web interface for the customer on her mac/PC and a mobile app for a customer when using a smartphone);
several independent systems (e.g. a back office in the post-office, and an independent app that would connect not only to the back office, but also to other back-end services e.g. from other companies).
But how do you want to decide before first knowing what is needed and how the needs are related?
First, you have to understand the big picture of what's needed. Focus on the users not on the inner details of your solutions, as explained in the UML specifications:
UseCases are a means to capture the requirements of systems, i.e., what systems are supposed to do. (...)
a UseCase (...) specifies a set of behaviors (...), which yields an observable result that is of value for Actors or other stakeholders (...)
(...) without reference to its internal structure
Look into your narrative to find actors (people, organisation, responsibilities), their goals (what do they need to do?) and how they could relate to each other. Just try a first sketch.
Your current model
(Posted after the diagrams were added)
I still see no reason to go for 2 distinct systems. You are working on a solution for car sharing. It may have different sub-systems/components, but the actors do not care. And neither does your customer. But:
If you'd go for two independent systems, you'd draw two disginct diagrams, and in each diagram you'd have an actor representing the other system that interacts with the system under consideration. As said, this makes sense only if it's an independent system.
In your case, I could imagine this for the bank account verification and the video identity verification: unless you intend to develop your own super-secured AI component capable of doing this, you'd probably outsource this to a specialized company, that may offer this service via an automated API.
The identify verification is at a different level of details than the other use-cases. You may want to show it in a separate diagram, in order not to pollute the main diagram.
And lastly, your second diagram has some issues:
the arrows of extend and include should not following the same direction: the target of an include is the included use case whereas the target of the extend arrow should be the use case that is extended (and not the use case that is extending the normal use case as you have shown).
ID correct and Bank correct are states. Use cases do not show states. The end-state can be specified in the description of the use-case but not in the use-case diagram.
Post office, Bank account, Video seem to be use-cases, but they are not well described.
A possible diagram could therefore be:
Note: I'd personally prefer specialization of Ensure identity. This corresponds more to the reality that there are two very distinct behaviors. But extension is ok.
Just to stress this fact: you do NOT describe a scenario with use cases. A use case is "just" to show the added value a system under consideration delivers to one of its actors. What you are asking is functional decomposition and that's just plain wrong. You would describe a scenario with an activity diagram (or as plain text like in the Cockburn way).

Sequence Diagram: Consuming Web Service from Android

I am really consufed and i can't indetify the parts of an sequence diagram. I see ppls make simple sequence diagrams for some process, and other ppls make it extremly detailed.
Can you please help me to find an good (not the best) sequence diagram for the following actions: Login Register
Let me explain you:
There is an Android application that Call web service in IIS Server
When user ask for login, get back as response Full Name if success (i don't want to represent failure in diagram)
In case of registration, user send data in Web Service. The Web service create an folder in HDD with user name. (It is file server, so we create user folder)
So, How i can represent the upper bullets in sequence diagram?
This is what i've done. I have no idea if it is right.
Sequence Diagram 1
Sequence Diagram 2
There is no right or wrong here. The level of detail exposed in your sequence diagrams is a choice your team should make. The only 'wrong' way of doing it, is when you have multiple SDs for the same application, showing different levels of detail.
Who are going to use these sequence diagrams? Let's assume that they are developers who must implement it and, in the future, technical designers who must know how the current version of the product works, in order to design extensions to it.
In my opinion, the level of detail should be such, that the SDs give a clear overview of the flow, which provides enough information to know where to look in the source code (once it's finished) if you want to know more details.
You should sit together with the developers and your fellow designers and decide which lifelines (the official word for the participating objects) are valuable to show in the SDs. Once you know which lifelines to draw, I think it is the best strategy to include all messages interchanged by these lifelines.
If your audience consists of people like architects or product owners, then sit together with them. They may be interested only in a global view, in which case you should include less details.
Looking at your SDs, you seem to be in doubt whether to include 'Login Activity' as a lifeline. Personally, I'd say yes, so I'd prefer Sequence Diagram 2.
For more information about sequence diagrams for web applications, check my paper, chapter Scenarios.
All you want are method calls and return values, so basic SD things.
Make a life line for the Android app and send a message from it to the IIS.
Show the return value (full name) in the return message.
You can send a message to a file service in the web server after authentication to create a folder. Eventually use an alt-fragment to show that it's doing that only on positive authentication.
So that's it. It's pretty much straight forward.

UML use case - who is the actor?

The UML 2.4 documentation defines an actor as following:
An actor specifies a role played by a user or any other system that interacts with the subject.
In my case, the subject is a web service provided by a Soccer Association. The operations of the service are the 4 ones in the middle. Now, the website (or a web application) is the one which really interacts with the system (web service), but it won't do it by itself; it needs a user.
So, who is the actor?
Below you have an example of how I thought the diagram should look like, but I have doubts regarding its correctness.
I have one remark, and that's about the title 'Asking information use case'. The outer rectangle is the system boundary, so maybe 'Asking information system' would be more convenient. It is actually not a use case, it's the complete system you are describing.
Edit: after the change of the diagram: i would make the relationship between the 'visit webpage' use case and the other use cases as an 'include' (with the arrow pointing away from the visit webpage use case).
Then i would tend to agree with it.
I would split the use-case diagram into two diagrams. One for the web application and the other for the web service, since these are really two different systems.
In the first diagram, there will be two actors: the fan and the web service.
In the second diagram, there will be three systems actors: the web application, the Soccer Association, and the meteorological agency.
This splitting has the advantage that you can think of more use cases for the web applications without getting bogged down the details of the web service -- these two ideally should be independent systems.

Use Case Diagram with Database and Web Servers

I'm finding it hard to get around my head how the specific scenario would work out:
I have a database server, a web server and a user.
When the user registers a service is created to the web server, the web server then goes to the database server and returns to the web server to register the details.
How would I actually illustrate this.
I have created the three Actors; User, Web Server, Database Server.
As a note I have read many online resources, and also a Book on UML.
Thanks in advance.
Are the DB/web servers part of the system you're implementing? If so you don't need them as Actors. UC Diagrams should only show actors outwith the scope of your system.
So you only need one Actor (User) in this case. The Use Case should describe the goal from the User's perspective (e.g. "Buy a Widget").
You could show the servers in a diagram showing how the UC is realised - usually a sequence diagram or activity diagram. Although I'd typically expect to see logical entities (classes) as well / instead of the physical servers.
hth.
I agree with maple_shaft's last statement. A high-level UC (use case) is a vehicle for capturing requirements.
Req'ts are the "what" of a system. What is the system supposed to do. What does the user need to accomplish. What interaction does the user need from the system.
By capturing system components in your UC you are injecting "how" into it and that's inappropriate for a UC. You don't want your use case to say how the system will accomplish something as that's an implemenation decision.
In short, I disagree that you really want to create a Use Case diagram. This sounds more like a component diagram.
Use case diagrams should represent user flow and non-technical flow from a user perspective, not demonstrate underlying architectural structure.

Resources