Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PhilJohnson

    remoting issues with memorystream passing through remoting boundary

    SOLUTION The issue turned out to be with a method that accepted a memory stream..... I found some good advice here and implemented an overloaded method that took a byte array parameter instead... http://www.dotnet247.com/247reference/msgs/26/133439.aspx
  2. PhilJohnson

    Problems attaching to explorer.exe process

    Hi guys, I appreciate there are issues using C# with shell extensions, but the issues I faced were due to behaviour of com interop and not shell extension specific..... The same issue would occur on an asp.net 1.1 website if the first page browsed to was not asp.net (i.e. html) and contained an...
  3. PhilJohnson

    remoting issues with memorystream passing through remoting boundary

    I added this call to set the memory stream back to the start before it was deserialized and it showed that the memorystream can indeed be serialised and deserialised by the binary formatter. objSerializedStream.Seek(0, SeekOrigin.Begin); SO does anybody have any idea why my remoting is failing...
  4. PhilJohnson

    remoting issues with memorystream passing through remoting boundary

    Hi, I am using dotnet remoting with a binarry formatter. I have a property that returns a memorystream that has had a file loaded into it. When I try to access this property though I get an error regarding "the proxy has no channel sink....[]...or no suitable Client channel to talk to the...
  5. PhilJohnson

    Problems attaching to explorer.exe process

    Thanks for the help guys, I got this though..... The explorer process will load the com interop layer in the latest version of .net installed on the machine (in my case 2.0) even though my dll is then running in version 1.1... so you can't attach the debugger process from VS 2003 onto the 2.0...
  6. PhilJohnson

    Problems attaching to explorer.exe process

    Im trying to create something that appears as an icon in My Computer that you can browse like a folder/file system but which maps to business objects running on the server. Is it possible to create something like this using PInvoke? If it is, do you have any decent links or tutorials? I'm...
  7. PhilJohnson

    Problems attaching to explorer.exe process

    I am using VS2003 to create a C# dll that uses shell namespace extensions. I need to debug my code but it is running in the explorer.exe process and when I open my namespace extension from My Computer so its running, then try to attach to the explorer.exe process with VS2003 I get the...
  8. PhilJohnson

    problem setting remoting URL from hardcoded string - appsettings works

    Thanks for the response. I tried it but it did not seem to work unfortunately... good suggestion though.
  9. PhilJohnson

    problem setting remoting URL from hardcoded string - appsettings works

    I have a dll that uses Rocky Lhotka's CSLA. The CSLA relies on some settings in an app.config for remoting but my dll is not used by one of my apps so I have no control over the app.config. The point where the string is set with the url of the remote object is: string data =...
  10. PhilJohnson

    .net remoting error windows shell namespace extension dll

    I am using business objects that are built on top of Rockford Lhotka's CSLA Business Object framework. I have a simple windows application that uses the objects configured for remoting and the app logs on without any problems. I have now created a Windows Shell Namespace Extensions...
  11. PhilJohnson

    Source control - working on projects remotely

    SourceOffSite by SourceGear is a source safe addin that enables access to source safe via the internet.... http://www.sourcegear.com/sos/
  12. PhilJohnson

    Custom My Documents Type of Folder - where to start

    Thanks TazUK, I noticed after posting that I had inadvertently strayed into "Legacy VB" and quickly found the C# Forum, sterilising my typing fingers as I went ;-D
  13. PhilJohnson

    run file when folder opens

    Hello, Is there any way I can get an application to start when a folder is opened, similar to autorun.ini on a CD. If there isnt a simple file I can create to do this, does anybody know what API calls could be used? Thanks, Phillip
  14. PhilJohnson

    Where to start with a custom my documents folder

    Hello I am a .net developer tasked with creating a 'plugin' that adds a 'folder' inside the user's My Documents folder (like the My Music folder or the My Pictures folders). This folder will 'map' to a business object that has a collection of 'folders' and those 'folders' will contain either...
  15. PhilJohnson

    Custom My Documents Type of Folder - where to start

    I am a .net developer tasked with creating a 'plugin' that adds a 'folder' inside the user's My Documents folder (like the My Music folder or the My Pictures folders). This folder will 'map' to a business object that has a collection of 'folders' and those 'folders' will contain either...
  16. PhilJohnson

    Sharepoint Impersonation Problems

    That was exactly it, thanks. We also found you could put it in Intranet zone if you also checked the radio button to use current username and password. Spent a bit of time on that, would have spent more if you hadn't given us the solution! Cheers, Phil
  17. PhilJohnson

    Sharepoint Impersonation Problems

    Hello, Having a problem with an installation of Sharepoint we are currently implementing. We have IIS set to Digest Authentication and the web.config file has Impersonate set to true and the authentication mode set to Windows. Every time any user goes to the site they are prompted for their...

Part and Inventory Search

Back
Top