Local computer and develoment server
-
Hi everyone My web project runs on machine (local host) successfully. I deployed it on development server and I met a lot of troubles. I need your solutions for these 1> What is the best way to maintain my application? Here what I did and I don't think this is a good way. Everytime I want to implement my project, I copy files or ftp files from the server back to my machine, fix it on my machine and deploy it back to the server. This is troublesome since application involves a lot of people and some code are hardcoded in the web.config to meet expectations of the path of server. It's really hard for me maintain this large scale web application 2> What I saw on machine does not act exactly what I saw when I run on development server I have validation checks for textboxes which require user to fill in. It will report an error message and expect user to fill it out before can move next. After everytime, an instruction is satisfied it will update database. When testing on my local machine it does not allow to procceed to the next page if instruction is not satisfied. On my server, it just keeps letting user goes through and ingore all the validation checks 3> I would like to know what is the best way to start learning how to use Web Application Test? I tried to practice on the tool. However I still have no clue how to use it. Any instruction on this would be so helpful for me to stimulate testing scenarios for the project. Thanks for everyone
-
Hi everyone My web project runs on machine (local host) successfully. I deployed it on development server and I met a lot of troubles. I need your solutions for these 1> What is the best way to maintain my application? Here what I did and I don't think this is a good way. Everytime I want to implement my project, I copy files or ftp files from the server back to my machine, fix it on my machine and deploy it back to the server. This is troublesome since application involves a lot of people and some code are hardcoded in the web.config to meet expectations of the path of server. It's really hard for me maintain this large scale web application 2> What I saw on machine does not act exactly what I saw when I run on development server I have validation checks for textboxes which require user to fill in. It will report an error message and expect user to fill it out before can move next. After everytime, an instruction is satisfied it will update database. When testing on my local machine it does not allow to procceed to the next page if instruction is not satisfied. On my server, it just keeps letting user goes through and ingore all the validation checks 3> I would like to know what is the best way to start learning how to use Web Application Test? I tried to practice on the tool. However I still have no clue how to use it. Any instruction on this would be so helpful for me to stimulate testing scenarios for the project. Thanks for everyone
caheo wrote: 2> What I saw on machine does not act exactly what I saw when I run on development server Not sure, but... Check the machine.config in the Deploymenr PC I was born intelligent
Education ruined me!. -
Hi everyone My web project runs on machine (local host) successfully. I deployed it on development server and I met a lot of troubles. I need your solutions for these 1> What is the best way to maintain my application? Here what I did and I don't think this is a good way. Everytime I want to implement my project, I copy files or ftp files from the server back to my machine, fix it on my machine and deploy it back to the server. This is troublesome since application involves a lot of people and some code are hardcoded in the web.config to meet expectations of the path of server. It's really hard for me maintain this large scale web application 2> What I saw on machine does not act exactly what I saw when I run on development server I have validation checks for textboxes which require user to fill in. It will report an error message and expect user to fill it out before can move next. After everytime, an instruction is satisfied it will update database. When testing on my local machine it does not allow to procceed to the next page if instruction is not satisfied. On my server, it just keeps letting user goes through and ingore all the validation checks 3> I would like to know what is the best way to start learning how to use Web Application Test? I tried to practice on the tool. However I still have no clue how to use it. Any instruction on this would be so helpful for me to stimulate testing scenarios for the project. Thanks for everyone
1> In the global.asax file you could add some code to the Application_Start function (VB.NET) to read in the servers location and any other information, then store it in the application object: e.g. Application.Set("Variable", value) 2> If you can, install the debug version on your development machine and step through it. 3> Dont know