Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
May you please tell me the steps and programming languages in which i have to write: for making an software application that use SOAP web service?
for example, i want to create an desktop app, that i can reserve ticket for buss sit.
So, i have to write codes for app, for Database, for web service, i just don't know the steps, which came first, and their programming languages..
Just tell me for example: first you write the code in Java or C# for the application, than....?
Posted
Updated 18-Jan-15 2:18am
v2

There is no simple answer to this question. The first thing to do for any application, is to analyse the requirements, such as:

  • data: what type, where to store it, how to store it
  • business requirements: what does the application need as inputs, outputs, how are they transformed
  • user interface: is it desktop, web based etc.

and any other issues relevant to the problem.

When you have a more specific technical question then you can come back here and try again.
 
Share this answer
 
Comments
qikee 18-Jan-15 9:04am    
thank you for your response. i want to create a simple application, desktop application of an Organization that has 3 objects. So, when a person goes there to reserve a place on a buss,(buy a ticket), the seller puts the relevant bus, and relevant place as buyer wanted. Then the system, using Internet looks if there is the place free, or has been reserved from somebody else..Then the system get back with the response, Yes there is a place, or No..
so, i need to know steps when the seller "ask from system request if there is a unreserved place, and get back the response"..
so, i need a Database Server with datas, but just want to know what else is need? and which programing languages?
I hope you understand cos English isn't my first language
Richard MacCutchan 18-Jan-15 9:27am    
What you are suggesting is definitely not a "simple application". You really need to do a lot more studying to understand the concepts, and the challenges, in creating such an application. It would almost certainly be a web-based application, so you need to understand how to create a website, add a shopping cart, deal with bad requests, synchronize with the database, etc. I would suggest starting at http://www.asp.net/. You can also look at the Articles section here on CodeProject for tutorials on these subjects.
Usually opinion-based questions are off-topic here (because you first need to be sure about the data you're concerned with, the frameworks and platforms you're going to consume your service on, until you're sure we cannot provide any specific and helpful answer) but I can give you a solution (or more like a suggestion), you might want to develop the application using the WCF framework. It would use C# language (from the choice of your Java vs C#) and would run on Windows systems; I am unaware of changes in platforms are the .NET open source thing. You might also want to read an article I wrote in past, Creating a Web Service to be consumed by connected Devices via Internet[^]. Chances are that you're going to get enough understanding on creating a service and using it through clients...

Windows Communication Foundation (on MSDN)[^]
 
Share this answer
 
v2
If there were an exact instance of steps used to write some program, someone would write a program actually doing these steps.

This is programming. The knowledge never can be reduced to the sequence of steps; if it was possible, it would not have value.

Good luck.
—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900