Hi,
I need help setting up a web service on IIS (v5.0 or higher) for .NET 2.0. I am familiar with setting up web service in .NET 1.1 where I create a virtual directory (ie wservice) on IIS and copy the files: service.asmx, web.config, global.asax, and the bin folder to the directory, then you can access the web service (I assume localhost) through the url http://localhost/wservice/service.asmx. I am new and trying the web service created...
User Profile
Collapse
-
IIS setup for web servcie
-
I'm using IIS 5.1 on windows XP on a local machine during development, I will eventually deploy it on IIS 6.0 on windows server 2003.
I am not getting any error, I just need some help on how to set up the web service created in .NET 2.0 similar to how I described it on how to set up the web service created in .NET 1.1. I can't get it to work and I don't know if I am missing something or the set up is different on .NET 2.0.
... -
IIS settings can be restored if a backup was made.
If not, there is still some chance that you can restore portions if not all of the IIS configuration.
Please read this link: <http://support.microso ft.com/kb/234429/EN-US/> and its related articles.Leave a comment:
-
-
Web service setup
Hi,
I need help setting up a web service on IIS (v5.0 or higher) for .NET 2.0. I am familiar with setting up web service in .NET 1.1 where I create a virtual directory (ie wservice) on IIS and copy the files: service.asmx, web.config, global.asax, and the bin folder to the directory, then you can access the web service (I assume localhost) through the url http://localhost/wservice/service.asmx. I am new and trying the web service created... -
Hi mdaRock,
I discovered that I was using a faulty machine (errors in some MS updates previously) and by simply re-setting up the IIS and NET framework, all the components worked properly.
Thanks for your advice....Leave a comment:
-
Web Service Deployment
Hi,
I need help in deploying a web service. I already have a working web service on a server, I want to create a local copy on a machine. I have copied the necessary files required for the web service locally on the machine, the \bin folder, global.asax file, the asmx file and the web.config file. I added it to the IIS and also create it as an application on the property page. But as i try to access the web service using <http://localhost/appname/service.asmx>,... -
It looks like you are trying to create some type of game, so you must define your own classes and program your functions to the behavior you expect. so i would guess that Game class will have some variables (or reference) for Character class as well as Venue class. The Character class would probably have some characteristic (or information) of each player, maybe you want to keep track of score, player name, etc.. The Venue class would probably be...Leave a comment:
-
please refer to link for sample (but only in Windows platform):
http://www.codersource .net/mfc_ado_select. htmlLeave a comment:
-
most books usually have some goals listed on what you will learn after reading the book. Please check and match the list that you want to achieve with the book, this will also help you evaluate other books as well.Leave a comment:
-
The Deitel and Deitel book series is a good beginner to intermediate level book: http://www.deitel.com/Leave a comment:
-
-
-
I don't want to give out the solution so i just give the idea that you need to do a modulo of 2 to get the remainder and then get the whole number part of the input divided by 2. plus I explicitly mention that the input part wasn't done as I believe as you said that this problem is some type of learning exercise in school setting. I also agree that it won't compile since I don't even have the function declaration....Leave a comment:
-
please refer to link for sample: http://www.codersource .net/mfc_ado_select. html...Leave a comment:
-
this is one way to do it (simplified):
int input=7;
int r=0, x=0;
while(input>0)
{
int y = i%2;
input /= 2;
x += y * pow(10,r++);
printf("%d\n",x );
}
where
"input" should be in some form of scanf( ) or other input command and statement "x += y * pow(10,r++);" should be change to some type of strcat( ) to prevent overflow.Leave a comment:
-
-
you need to add the subform/subreport object on your form, set the source object and both link child and master fields.Leave a comment:
-
EXE compiled in VB6 or older will not run on other machines without some sets of DLL files, the files are usually packaged if you run the set and deployment wizard to create an installation files.Leave a comment:
-
you can also use this approach:
char let[ ] = "ABCDEF...X YZ";
the array let[ ] will be indexed the same as yours.
let[0] will be equal to 'A'
let[1] will be equal to 'B'
etc
etc
etc
let[25] will be equal to 'Z'...Leave a comment:
No activity results to display
Show More
Leave a comment: