It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
can any one give me the functional requirements documentation for the reservation tracking system ,it is going to be implemented in asp.net and the details are as follows,
1)The main theme of this application is gathering reservations from different clients and updated in particular intervals of time to the Fitzserver then these reservations will be send to the particular driver.
2) Then driver information is retrieved through mobile application using webservice and updated in the Fitzserver.
3) The information of driver from Fitzserver is send to the client as link to email.
No, nobody can unless they are either the user/stakeholder of a similar system or the developer/architect of a similar system.
You should execute the requirements process. Talk to the endusers, write down what they expect.
Examples/guidelines on how to go forward:
http://epf.eclipse.org/wikis/openup/index.htm
See Practices > Technical Practices > Use Case Driven Development
http://en.wikiversity.org/wiki/Technical_writing_specification
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a project that's in the design phase and looking at my options have decided on using Postgresql for the application backend because of licensing and features. I have searched around but I am unable to find any solid information on using Postgresql in Xcode or even with OSX applications. Could someone point me in the right direction any help would be greatly appreciated.
You have not given quite a lot of context.
On the application side there are quite a few pieces of software running under OS X that interface with PostgreSQL, for example the standard GUI pgAdmin.
But I believe you're more concerned about the developers perspective. Probably the most common way is to use the libpq library that comes with PostgreSQL. It is well documented and rather stable. Integration into your software project should be straightforward.
If you are looking for an Objective-C framework, you could try out BaseTen. Never used that one, though.
If you want more specific help, you have to ask more specific questions.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to get the clock's alarm information on iOS, is there any way to fetch the information?
No, there's no way to do that.
I don't know how I can add credibility to my answer, except from saying that in iOS, apps are "sandboxed", so they don't "talk" with each other. The only way they can interact (in a very restricted way) is if they share a part of their App ID. As the stock clock app is made by Apple, there's no way your app will ever have access to data from the stock apps.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Here Malte talking about MT4 Server API. Could anybody tell me some simple "how to"?
where to get the DLL, install and run it inside the mt4 terminal
any known "protocol commands" via the API (as Malte told, it is undocumented)
So, i don't want reverse engineer the metatrader protocol, but want use the official api and need some more info about it.
thanx for any pointer in advance ;)
I reversed engineered the protocol to the point where I realised that it changes slightly for each broker and can be updated on the fly with LiveUpdate.exe In short it is near impossible to reverse engineer a general reliable solution.
Note: MT4 uses the standard FIX Protocol which is documented here: http://www.fixprotocol.org/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to make a web bot (desktop application not web application) which sends HTTP requests and POST data to different web pages.
What is the best solution to do such bot?
What language and IDE to use?
Witch libraries to install... etc.
Depends on what expirience you are having.
Basicaly sending HTTP-Requests with post data should be pretty easy in most modern languages.
Personally I would use C#/.net and Visual Studio. The .net-FW has everything built in to aquire that task (e.g. this example).
But if you are expireinced in PHP, Java or similar use that and just search for the suitable methods.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How does the Apache web server work? Can someone explain it in detail?
Start with the Apache architecture overview to understand the basic components and data flows for Apache. Then, you probably want to go into the developer documentation, as the list module configuration options in the docs is not too helpful in understanding how does everything work.
Finally, comparing Apache to other popular open-source servers such as Lighttpd would show you what tasks are approached in a similar way by different programs, and where there are trade-offs (speed vs. features, for example) that differentiate between the servers.
It's magic. Don't even bother trying understand it.