Executing a C# proj...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Saravanan Krishnan
    New Member
    • Mar 2008
    • 11

    Executing a C# proj...

    Hey guys,

    I've developed an application with multiple C# projects in it, those projs interact well and clean they also communicate with SQL2k5 for fetching and writting data via web service, now what i need is to run my app in another comp sys without copying the entire app files instead i want to copy .dll files(i dont want to deploy it at this instance) or if anyother way exsists, can anyone please assist me on this...

    thanks in advance,
    Saravanan Krishnan
  • madankarmukta
    Contributor
    • Apr 2008
    • 308

    #2
    Hi,
    This is just a doubt about the post you did.
    Do you mean .. you want to launch your application at the remote without deploying it..?

    Comment

    • Saravanan Krishnan
      New Member
      • Mar 2008
      • 11

      #3
      thanks for ur reply madan...

      you are right i wanted to do the same, i want to run my app in a remote sys without deploying it,

      orelse just tell me how to host my web service proj in my local IIS...

      Comment

      • Plater
        Recognized Expert Expert
        • Apr 2007
        • 7872

        #4
        So you want to keep the program located on one computer, and run it on another?
        You can attempt a few things.
        If the computers that will use your program are connected withen a network and have windows shares (samba) you can fiddle with the .NET security permisions to allow running programs from a remote computer.
        (i.e. Run with: \\myhostingcomp uter\SomeShare\ myProgram.exe)

        Or you could set up the webservice/application and restrict access. Then give your users access rights?

        Comment

        Working...