User Profile

Collapse

Profile Sidebar

Collapse
rgb
rgb
Last Activity: Aug 5 '07, 05:20 PM
Joined: Aug 29 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rgb
    started a topic IIS setup for web servcie
    in IIS

    IIS setup for web servcie

    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...
    See more | Go to post

  • rgb
    replied to Web service setup
    in .NET
    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.
    ...
    See more | Go to post

    Leave a comment:


  • rgb
    replied to IIS default web site restore
    in IIS
    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.
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Arrays as arguements
    in C
    pass a pointer of the array as an argument.
    See more | Go to post

    Leave a comment:


  • rgb
    started a topic Web service setup
    in .NET

    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...
    See more | Go to post

  • rgb
    replied to Web Service Deployment
    in .NET
    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....
    See more | Go to post

    Leave a comment:


  • rgb
    started a topic Web Service Deployment
    in .NET

    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>,...
    See more | Go to post

  • rgb
    replied to How to get started (Concept)
    in C
    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...
    See more | Go to post

    Leave a comment:


  • rgb
    replied to using ADOQuery
    in C
    please refer to link for sample (but only in Windows platform):
    http://www.codersource .net/mfc_ado_select. html
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Starting
    in C
    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.
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Starting
    in C
    The Deitel and Deitel book series is a good beginner to intermediate level book: http://www.deitel.com/
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Insertion algorithm
    in C
    what type of insertion do you need?...
    See more | Go to post

    Leave a comment:


  • rgb
    replied to help in VC ++ dll linked to VB
    in C
    are you using "__stdcall" on your return value?...
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Reqd a prog in C++ for conversions
    in C
    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....
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Database Handling
    in C
    please refer to link for sample: http://www.codersource .net/mfc_ado_select. html...
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Reqd a prog in C++ for conversions
    in C
    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.
    See more | Go to post

    Leave a comment:


  • rgb
    replied to No another Text File =]
    in C
    tokenize sample link: http://www.cplusplus.com/ref/cstring/strtok.html
    See more | Go to post

    Leave a comment:


  • rgb
    replied to creating a subform form in Ms Access
    you need to add the subform/subreport object on your form, set the source object and both link child and master fields.
    See more | Go to post

    Leave a comment:


  • rgb
    replied to Can not find VBRUN300?
    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.
    See more | Go to post

    Leave a comment:


  • rgb
    replied to array
    in C
    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'...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...