web reference errors

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • iprogrammer
    New Member
    • Feb 2008
    • 14

    web reference errors

    i have two projects under one file....Parrale lization and RemoteExecutorT ester....now the execution begins from a file Program.cs under the project RemoteExecutorT ester and transfers control to the Parrallelizatio n.cs under project Parralelization .....which returns values to Program.cs

    the namespace in Parralelization is NSParrallelizat ion
    the namespace in RemoteExecutorT ester is RemoteExecutorT ester

    now i have to add a web reference to the file Parralelization .cs....say reference name is "populate"....b ut when i do it in Parralelization .cs it gives me a error saying.....

    using NSParralelizati on.populate;

    "the type or namespace populate cannot be found in namespace NSParralelizati on ( are you missing a using directive or assembly directive ).
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    Is populate a class or a method? Make sure to use public on classes and methods that you want to access from other classes.

    Nathan

    Comment

    • iprogrammer
      New Member
      • Feb 2008
      • 14

      #3
      thinks nathan,

      populate is the reference name that i m giving to my service

      Comment

      Working...