MVC4 Application Design/Solution Layout [closed] - asp.net-mvc-4

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 am going to build a new MVC4 web based application, so i would need to create new solution and different kind of projects. So my question what type of projects i would need in my solutions.
My requirement is as following-
We have different travel agents working with us each having its unique name. May be 4-5 for now. The plan is to create 4-5 different URLs and handle it over to those travel agents.
Here is a sample User Story
User (for e.g travel agent id 1) should be able to come to URL mywebsite/agent/1 and he sees all the available tickets related to that agent which will coming from external web service and is not under my control.
He selects the products and click buy which again calls up some web service goes to their service and comes back with confirmation number.
This is pretty much it for the application.
So my question is in terms of what all projects should i create for such application.
Thanks

I would suggest you get a copy of either Pro ASP.NET MVC 3 Framework, Third Edition or Pro Asp.Net Mvc 4. Either way, i usually do a blank solution and then add 3 projects like Something.WebUI, Something.Domain, Something.UnitTests (Only if you want to write tests, highly recommended).
Another option is you can head to Pluralsight and watch a video by Scott Allen

Related

Develop Application using extjs [closed]

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.
Recently my company asked me to gather knowledge in EXTJS. I have seen a lot of examples from Sencha
But, when I want to develop applications using extjs what should i do? Now I want to dive into building application using ExtJS. Please give me some link.
There's definitely a bit of a learning curve with Ext, but the best place to start really is their MVC application tutorial and just reading the application documentation:
Tutorials:
Ext MVC Intro
App Architecture pt 1
App Architecture pt 2
App Architecture pt 3
Documentation:
App documentation
In addition, I would make sure to get an understanding of how the event system works in extjs as it is the core of how wiring the components together works. Have a look at the base observable class to get some detailed information - all the components that can fire events inherit this class. Generally speaking, the documentation is your friend in Ext though.
One thing I did while learning ext was read over Jay Garcia's book ExtJS In Action. By no means will it teach you everything you need to know, but it gives a good overview of what Ext is capable of and some common usage patterns.

Game authentication like minecraft? [closed]

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'm making a game in C# and was wondering how to authenticate a user. I want it to be similar to minecraft where user makes an account and can pay to make their account premium. People on the team know most languages, so that isn't a limitation. We have a fairly large budget so that isn't a limitation either.
How would I go about doing this?
If you know how to do this and you want to be part of the team just post a comment.
Thanks
Just within the .NET framework you have multiple options. You could allow impersonation for anonymous access to certain parts of the site and maintain different users for paid accounts (doesn't need to be an AD/whatever user per paid account).
If you don't want to use AD user per account etc. you could write an identity service which passes back a token, allowing your game/site to log the person on as a certain user. If you want claims based identity, you could use the WIF SDK.
If you're happy with AD based basic authentication per user, that's pretty simple. You could pull the user's principles from AD to see if they are in the paid for group etc.

Online Chess by VB.net [closed]

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.
as the topic header shows my question is about Coding an online chess by VB.net.
I coded the chess game with all rules , now I designed a login form for it, but I don't know how to connect to a Database and send query , to check the User and pass.
I searched about connecting to a DB and I found something. but i didn't found anything about sending query.
I need a code that contains connecting to a DB and sending query for example about checking username and password to DB.
thanks.
Well, the simplest answer is to use what's called ADO.NET. It's basically a set of classes within the .NET Framework which are used to access a database. Depending on the database you use, there may be a built-in driver (MS SQL, Access, etc.) or you may need to use a 3rd party one (MySQL, PostgreSQL, etc.).
Here are a couple of examples. There are many more.
You can also use LINQ to SQL, which internally uses ADO.NET but presents the data access to the developer is a more fluent way. Or take it another step and use Entity Framework. Etc.
Essentially the question itself is very broad. There are a number of ways you can access a database. But these are the places to get started. If/When you run into specific issues with code not working the way you expect, we'll be happy to help.

Web service: Ruby on Rails versus WCF [closed]

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 would like to setup a web service, to be accessed via a mobile device. The main purpose of the server is data storage. I would like to know some of your opinions on the advantages\disadvantages between RoR and WCF for building the server-side of the web service.
I think you're looking at this the wrong way. What does the web service do?
The fact that it's a web service a mobile device talks to is itself not a big deal. Lots of stuff exists to do that. WCF is pretty good at it. I don't know anything about RoR but it probably is too.
So once the mobile device makes a request, what's going to happen on the server? Who is building it, and what languages/frameworks do they already know? What if any infrastructure is already in place?
If you can answer those questions, I think the answer to your question will become more apparent. :)

functional requirement specification for the following abstract [closed]

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