Search

You searched for the word(s): userid:835945

Matching Posts

  • Error using remoting services channel

    I'm attmempting to hook a client up to the server via remoting. The client code is an ASP.NET app and I'm running through VS2008. The client remoting code is the following: EmailEnableGroupsWrapper.EmailEnableGroups service; TcpChannel channel = new TcpChannel(); //ChannelServices.UnregisterChannel(channel); try { ChannelServices.RegisterChannel(channel, false); } catch (RemotingException re) { Console.WriteLine(re.StackTrace); ChannelServices.UnregisterChannel(channel); ChannelServices.RegisterChannel
    Posted to Enterprise Services Integration (Forum) by awclements on 7/2/2009
    Filed under: Remoting, .net remoting
  • Re: Error using remoting services channel

    It appears that the IIS server that VS2008 is using is on continously and it is holding the channel, keeping it registered through each debug session I run. If I stop the IIS after each debug session, the channel needs to be registered anew. It least it stopped the RemoteException. Doesn't explain why the UnregisterChannel method doesn't work, however. If anyone knows feel free to explain. I'm curious what I have set up wrong. --Andy
  • Re: Calling CDOEXM.dll from an ASP.NET web page

    It appears that in order to do this, I need to setup a Windows 2003 server with SP3 and Visual Studio - install Exchange 2003 on it, install the management tools and then add the references in the correct order to VS and I might be able to get it to compile. Apparantly I'm not the only one with this problem: http://www.velocityreviews.com/forums/t87995-cdoexm-error-adding-assembly.html If Microsoft is wondering why it is losing market share to Open Source... this might be a good place to start
  • Calling CDOEXM.dll from an ASP.NET web page

    Hello Forum Folks, If I picked the wrong category to put this problem in, I kindly apologise in advance. Synopsis: I have an ASP.NET web application in C#. Under certain conditions, it will create security groups in AD. I need to email-enable these AD groups. It is my understanding that this can be accomplished through CDOEXM with the following example code: //Bind to group using account with permission to mail enable objects DirectoryEntry ADGroup = new DirectoryEntry("LDAP://mydc.com/"
    Posted to Enterprise Services Integration (Forum) by awclements on 6/24/2009
    Filed under: ASP.NET, COM interop, dll, C#
  • Re: Excel instance will not stop after calling asp.net page

    Thanks worldspawn. I will give that a try. Do you know where I can find documentation from Microsoft stating that Office apps in a Web application is a bad idea? It would help tremendously in getting my superiors to try another route. Thanks again! --Andy
  • Excel instance will not stop after calling asp.net page

    Hello Forum Folks, I'm attempting to download an Excel spreadsheet, adjust the columns as needed and save it as a .prn file so that it can be uploaded to an AS400. I'm currently running this all through VisualStudio 2008 before I try to put this all on a IIS server. The problem here is after I adjust the columns and close excel, excel continues to run in the background. Here is the code dealing with Excel: 1 // get the workbook from the filepath. 2 oXL = new Excel.Application(); 3 oWB =
    Posted to Enterprise Services Integration (Forum) by awclements on 11/4/2008
    Filed under: Excel, C#
Page 1 of 1 (6 items)