Virtual Path from a class Object

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Virtual Path from a class Object

    An object resides in memory. As such, there is no path, virtual or otherwise
    to it.
    --
    HTH,

    Kevin Spencer
    Microsoft MVP
    ..Net Developer
    [url]http://www.takempis.com[/url]
    Big things are made up of
    lots of little things.

    "Sunil Menon" <sunil@itb-india.com> wrote in message
    news:de18ec83.0307202221.2128b4af@posting.google.c om...
    > Dear All,
    > I have a WebService that calls some objects to do certain
    > processing. Can I get the Virtual path in these objects? These objects
    > are not derived from System.Web.UI.WebControls. They are simple class
    > object.
    > How do I get the Virtual path in those objects?
    >
    > Please help...
    >
    > TALIA
    > Many Regards
    > Sunil

    Kevin Spencer Guest

  2. Similar Questions and Discussions

    1. Jrun virtual-mapping to UNC path
      Is it possible to set the <virtual-mapping><system-path> in the jrun-web.xml file to point to a UNC path? I want all of the .cfm files to reside...
    2. Virtual Path
      Hi, I have an application with a connection.asp document linking to the MS Access database Previously I have had the database ABOVE the ROOT and...
    3. virtual path problem
      hi, I have a script in a folder which simply creates a file in another dump folder /myscript/script.php /myscript/dumpfolder/ but then i...
    4. Can't find class java.lang.NoClassDefFoundError. (Wrong class path?)
      While creating JVM, I am getting the following error: Can't find class java.lang.NoClassDefFoundError. (Wrong class path?) I gave all the...
    5. Convert Physical path to Virtual path?
      We have a field that gets filled into a database that our ASP website pulls from. What we would like to be able to do is to take that path and...
  3. #2

    Default Re: Virtual Path from a class Object

    If your objects are running in the application domain of your web
    service, this will give you the path.
    System.AppDomain.CurrentDomain.BaseDirectory()

    Please let me know whether this solved your problem.


    "Kevin Spencer" <kevin@takempis.com> wrote in message news:<uP6oGO4TDHA.1712@TK2MSFTNGP11.phx.gbl>...
    > An object resides in memory. As such, there is no path, virtual or otherwise
    > to it.
    > --
    > HTH,
    >
    > Kevin Spencer
    > Microsoft MVP
    > .Net Developer
    > [url]http://www.takempis.com[/url]
    > Big things are made up of
    > lots of little things.
    >
    > "Sunil Menon" <sunil@itb-india.com> wrote in message
    > news:de18ec83.0307202221.2128b4af@posting.google.c om...
    > > Dear All,
    > > I have a WebService that calls some objects to do certain
    > > processing. Can I get the Virtual path in these objects? These objects
    > > are not derived from System.Web.UI.WebControls. They are simple class
    > > object.
    > > How do I get the Virtual path in those objects?
    > >
    > > Please help...
    > >
    > > TALIA
    > > Many Regards
    > > Sunil
    Ram Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139