How to draw a web service using UML [closed] - web-services

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
What's the best and most elegant way to represent a web service interface using a UML class diagram?

Well it is just a diagram to help pass a point so whatever is clear. One option is to use stereotypes put "contract" on the interface and put "web service" on the class.

I would use a Sequence Diagram not a Class Diagram.
Web Service with UML

Related

Running C++ functions from a web page [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 months ago.
Improve this question
I have a complicated C++ function that takes as input some files describing geometry and outputs some files describing resulting geometry. I'd like to provide an interface to this function on a webpage with the function being computed on a powerful computer. What are some good options that don't require me to rewrite the function in another language?

Encapsulation of structure in class [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Is it good practice to encapsulate a structure used by a class inside the class if only the class uses it and not the user who will end up using the class, or does it not matter?
It is generally poor practice to expose any internal details in the headers.
See GotW #100: Compilation Firewalls for more details.

Unit Test for classes that extend SysOperationServiceBase [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
My question is simple for someone who has a good experience in developing for AX.
Do we write Unit tests for classes that extends SysOperationServiceBase?
Yes, you should write unit tests for classes that extend the SysOperationServiceBase, because they contain business logic.
Perhaps you could provide more details on why you wouldn't write unit tests for that particular set of classes?

Cool html reports for Junit [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I'm looking for some cool report generators from Junit results, I used maven surefire but it's so poor, I need charts graphs and so on.
You could run your builds with Jenkins (www.jenkins-ci.org). Jenkins is easy to setup and it creates pretty diagrams and browsable reports from your JUnit results.

What is the best approach to follow in WebService developments? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Is it starting from WSDL or from coding?
I believe what you are asking is what is better: bottom up (coding first) vs top down (wsdl first).
There are many, many articles on the topic, so you can do a quick google search. This looks like a good article I found by searching.
It is depends on requirement and feasibilty.But mostly in case of service provider,first we write the code then generate the wsdl and publish it..When consumer wants to consumes the service then ,they generate the client code from wsdl and invoke the services....That how most application works......