Jump to content
Xtreme .Net Talk

Jarda

Members
  • Posts

    5
  • Joined

  • Last visited

About Jarda

  • Birthday 03/09/1977

Personal Information

  • Visual Studio .NET Version
    Visual Studio .NET Professional 2003
  • .NET Preferred Language
    VB.NET

Jarda's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Yeah, this should be fine. The user ASP.NET Machine Account has to have at the least read permissions (Read & Execute, List Folder Contents and Read) up to the this folder. Don't you have another rights which would block write access? Did you propagated these permissions on all subfolders correctly?
  2. Hi Derek, thanks, but I didn't help. Don't you have any another idea? Something with dataslots ... Thanks a lot Jarda
  3. Hi, did you check the ASP.NET write privileges? Please realize that .NET needs to have the privileges from the root (c:\) in case you want to create folders! Good luck Jarda ================== Jaroslav Lhotak Internet Team Radio Free Europe / Radio Liberty Inc. http://www.rferl.org/
  4. Hi guys, I'm developing some project for synchronizing through the SSL channel. This operation takes long time and when you're running in from web, you don't see the progress, that's why I decided to use threads. All is working fine since is the web interface used only by one user. In the moment when another user runs another synchronization, currently running thread is killed and it starts new one. It seems to me there is problem with assigning of slots for new threads. I don't know how to force to create new threads with new unique ID. I'm using following simple code: Dim CoreThread As Thread = New Thread(AddressOf SynchroCore) CoreThread.Priority = ThreadPriority.Highest CoreThread.ApartmentState = ApartmentState.MTA CoreThread.Name = Now.ToString CoreThread.Start() Please can someone help me? Thanks a lot Jarda ================== Jaroslav Lhotak Internet Team Radio Free Europe / Radio Liberty Inc. http://www.rferl.org/
  5. Hi, essentially you don't need FrontPage extenstions (if you don't like it as me :D ). I'm using virtual folder named 'solution' which points to the folder on the server where are located .sln and .vbproj files, I disabled anonymous access to this folder too. The second thing I did is shared folder 'project_name_solution' on the server, this is also protected with password. If you're migrating from localhost project to remote project, don't forget to change the file(s) .vbproj.web and .sln file to match current location.. When you're adding a new project in VS you gonna be asked to enter URL, here use the URL including 'solution' virtual folder, in the second dialog enter the UNC path \\....\project_name_solution I've proved this approach and it's worknig fine. Good luck Jarda ================== Jaroslav Lhotak Internet Team Radio Free Europe / Radio Liberty Inc. http://www.rferl.org/
×
×
  • Create New...