Enabling Debug Exceptions from OpenCV in VS2012 c++/cli

I am using VS2012 c++/cli on a Win 8.1 machine, 64 bit with OpenCV 2.4.9.
One issue I have is catching exceptions issued by OpenCV in try/catch blocks.
When I run my app in Debug mode from within VS2012, I never get an OpenCV exception.
However, when I run the exe generated by VS2012 in Debug mode outside of VS2012 (by just navigating in Explorer to the exe), exceptions are being generated by OpenCV and caught by mt try/catch blocks.
What do I need to set so that I can see these exceptions when running in Debug mode form within VS2012?
Any help greatly appreciated.
Regards,
James

So zsh is telling you that the command didn't work, since it claims that there is no such file or directory. I had a lot of trouble with getting the echo command to work, as well. I found that if out of these lines:
export CONFIG_CFG80211_DEBUGFS=y
export CONFIG_MAC80211_DEBUGFS=y
export CONFIG_ATH_DEBUG=y
export CONFIG_ATH9K_DEBUG=y
export CONFIG_ATH9K_DEBUGFS=y
If the first and second line above were not uncommented in the config.mk file, I couldn't leave the last line above uncommented as well, or else makepkg would fail and give me an error. So originally I had only the 3rd and 4th lines above uncommented/inserted in my config.mk. With that configuration, I could not get the echo command to work, no matter what. Have you uncommented or inserted all of the above 5 lines into your config.mk?
After making sure all of the above 5 lines were in my config.mk, the echo command still didn't work, even if I preceded the command with sudo, or entered a su session. Bash would tell me that there was no such file or directory. I found that if I actually logged out of my normal user, and then logged back into the computer as root, the command would work. If your shell does not give you any feedback (particularly, "no such file or directory"), then the command worked. In order to get the command to run every time the computer boots, I used a systemd service, so that the command is issued as root. For some reason, it doesn't work if you put the command into /etc/profile.
Oh, and it would probably be helpful to mention that for the compat-drivers-patched package from the AUR, the PKGBUILD checks to see what your _selected_drivers variable is before compilation. If you set _selected_drivers=ath9k, your compile times will be much shorter.

Similar Messages

  • SP2013 - Unable to Debug/Deploy from VS2013/VS2012

    I've been working on this issue for a while and troubleshooted from every angle I can think.   Can someone please help me squash this so I can get back to
    work?
    Problem: 
    I’m receiving very generic errors when trying to deploy/debug either an SP2013 App project or Web Part project from VS2013 or VS2012.  I’m leaning towards this being a permissions related error even though I’ve granted myself Admin to almost every layer.
    What I’ve tried so far:
    VS is running as Administrator
    I’m a Local Admin, SharePoint Farm Admin,  Site Collection Administrator (on the root site as well as the App Catalog site collection), SPShellAdmin
    I’m a DBO on all SP Content DBs as well as a sysadmin
    I’m using the hosts file IP redirect (Custom Host Header fix)
    I’ve tried from both VS 2012 and 2013 (both installed on the SP dev box)
    I’ve added my user to the User Policy Permissions for the Web Application with Full Control
    The App Management and Subscription Settings Service Applications are configured and running
    The App Prefix has been configured
    App DNS has been configured and tested with: ping Apps-12345678ABCDEF.<domainname>.com
    Web Part deployment error:
    Active Deployment Configuration: Default
      Skipping deployment step because a pre-deployment command is not specified.
    Error occurred in deployment step 'Recycle IIS Application Pool': A task was canceled.
    Exception Message: A task was canceled.
    Exception Type Name: System.Threading.Tasks.TaskCanceledException
    Exception Stack Trace:    at Microsoft.VisualStudio.SharePoint.SharePointConnectionInternal.WaitOnExecuteCommandTask(Task task, CancellationTokenSource cts)
       at Microsoft.VisualStudio.SharePoint.SharePointConnectionInternal.ExecuteCommand[T,TResult](String commandId, T arg)
       at Microsoft.VisualStudio.SharePoint.SharePointCachedConnection.ExecuteCommand[T,TResult](String commandId, T arg)
       at Microsoft.VisualStudio.SharePoint.SharePointProjectCommands.DoesSolutionWithIdExist(ISharePointConnection connection, Guid arg)
       at Microsoft.VisualStudio.SharePoint.Deployment.RecycleApplicationPoolStep.CanExecute(IDeploymentContext context)
       at Microsoft.VisualStudio.SharePoint.Deployment.ConfigurationExecutor.Execute()
       at Microsoft.VisualStudio.SharePoint.Deployment.WspDeploymentHandler.Deploy()
    Error when attempting to add a new item (List) to the App project:

    Hi,
    A suggestion is that you can check whether you have configured your develop environment for SharePoint 2013 correctly.
    The links below about how to configure develop environment for SharePoint 2013 for your reference:
    http://msdn.microsoft.com/en-us/library/office/ee554869.aspx
    http://blogs.msdn.com/b/timquin/archive/2013/01/22/setting-up-visual-studio-2012-for-sharepoint-2013-development-offline.aspx
    http://www.instantquick.com/index.php/configuring-visual-studio-2012-for-sharepoint-2013-and-office-2013-development
    Feel free to reply if there are still any questions.
    Best regards
    Patrick Liang
    TechNet Community Support

  • [SOLVED] Enabling debug for ath9k in compat-drivers-patched from AUR

    Wireless card: TP-LINK TL-WN951N. lspci says that it is an Atheros AR5416 adapter [AR5008].
    Some background: I'm having the same issues as the OP in this thread, which references this bug report. The problem is that I get a 2000 ms ping every 30 seconds. So 2 seconds of inactivity every 30 seconds. I have the same wireless PCI card, as well. I need to fix this, because it's making online gaming impossible. I should also note that the card is working just fine in Windows 8, however. I am using net-auto-wireless. I have tried using wicd, enabling ath9k's nohwcrypt option, toggling the card's power save, installing the latest compat-drivers-patched from the AUR, toggling different settings in my motherboard's BIOS, and removing the antennae from the card. But nothing has made a significant difference.
    I think I'm really close now. I just have to disable ANI. But in order to do that, it seems that I need to enable debugging for ath9k. But this means that I need to either recompile a custom kernel, or somehow enable debug for ath9k in compat-drivers-patched from the AUR. I'd prefer the latter, as that means that I will have a more bleeding-edge driver. That, and I won't have to touch the kernel as much. What I want is described on this page. But it seems too complicated to me. Please let me explain.
    I've installed things from the AUR before, as mentioned above, and have properly configured my makepkg.conf for my system. So I'd like to use the CFLAGS and such that I've set. I don't understand how everything works in the PKGBUILD; I don't have much experience with sed and awk and regular expressions, and haven't done much shell scripting at all. It seems that at some point in the PKGBUILD, I need to enable debugging for ath9k before it is compiled. Apparently on the last page I linked to, I need to add:
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    to some config.mk file. I can only get access to the config.mk file after I install the package with pacman. I've tried adding those lines to my /etc/profile file, and checked, after a reboot, with "set", that those variables are indeed set. But the thing is, with these variables set in /etc/profile, when I run makepkg, makepkg fails with an error 2. I tried again and got the same error. I removed those lines from my /etc/profile, rebooted, tried makepkg again, and everything worked. So putting those lines in my /etc/profile is not the solution, and I feel like I'm doing something very stupid. What am I doing wrong?
    I should also note that I've tried to read the wiki page on compiling a custom kernel using ABS, but it seems to just say "get your custom configuration files" and then just continue (so it assumes that I should already be familiar with the configuration part). The PKGBUILD and Creating Packages wiki pages also seem to be a little... too advanced for me at this point in time.
    So how do I enable debugging for ath9k in compat-drivers-patched from the AUR? I'd prefer to stick with only editing the PKGBUILD and using makepkg, if possible.
    I've really tried to search the web and the arch forums on how to fix this problem myself, but alas, it seems that I need help this time. I greatly appreciate your time for reading my long post.
    UPDATE:
    I've made a lot of progress. I ended up removing the AUR package with pacman by invoking "pacman -Rsn compat-drivers-patched".
    Instructions for [almost] success: First, download compat-drivers-patched from AUR. Then move it to the "builds" directory (or "local", if using ABS). Extract the tarball. After the new directory is created, cd into it. Now here's the important part: run
    $ makepkg -so
    Then cd into src, cd into the directory inside src, then edit the config.mk file. Make sure these lines are uncommented (or created, if not already there):
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    (source)
    Now run "cd ../.." to go back up two directories. Now run:
    $ makepkg -e
    # pacman -U <file that was produced>
    And I ran "mkinitcpio -p linux" just in case, but I'm not sure if that is necessary at all. I'm... not touching the kernel, right?
    Now I ran:
    echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani
    But bash would say that the file or directory doesn't exist. Even if I prepend it with "sudo", I get the same results. I was only able to get the command to work if I logged in as root. I even put the line in my /etc/profile. The 2000 ms ping every 30 seconds is now GONE. HOWEVER! If I reboot and log in as a normal user, the problem is there again. If I reboot and log in as root, the problem is gone. If I then log out and then log back in as a normal user, the problem does not come back.
    So really, I can avoid the problem if I first log in as root, log out, and then log back in as a normal user. But this is a great inconvenience. I would much prefer if I could just log in as a normal user right after boot, and have everything working.
    Now, how do I get the command to automatically run at boot as root (without me having to log in as root), and work?
    UPDATE 2:
    I got it working. Putting the line in /etc/profile is not the solution. I created a custom systemd .service file.
    Put this into /etc/systemd/service (name it "disable_ani.service"):
    EDIT: Wow. I made a glaring typo here. It should be /etc/systemd/system/disable_ani.service
    [Unit]
    Description=disable_ani
    [Service]
    Type=oneshot
    ExecStart=/bin/sh -c "echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani"
    [Install]
    WantedBy=multi-user.target
    Then make sure to "sudo chmod 755 /etc/systemd/service/disable_ani.service", since root owns this file.
    Then run "sudo systemctl enable disable_ani.service".
    EDIT: It has been brought to my attention that there is a much simpler way than creating a custom service.
    Using a tmpfile:
    /etc/tmpfiles.d/disable_ani.conf
    w /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani - - - - 1
    Done.
    Now ANI is persistently disabled between boots, even if I log in as a normal user right after boot.
    Thanks for reading.
    Last edited by vyu223 (2013-03-12 10:20:19)

    So zsh is telling you that the command didn't work, since it claims that there is no such file or directory. I had a lot of trouble with getting the echo command to work, as well. I found that if out of these lines:
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    If the first and second line above were not uncommented in the config.mk file, I couldn't leave the last line above uncommented as well, or else makepkg would fail and give me an error. So originally I had only the 3rd and 4th lines above uncommented/inserted in my config.mk. With that configuration, I could not get the echo command to work, no matter what. Have you uncommented or inserted all of the above 5 lines into your config.mk?
    After making sure all of the above 5 lines were in my config.mk, the echo command still didn't work, even if I preceded the command with sudo, or entered a su session. Bash would tell me that there was no such file or directory. I found that if I actually logged out of my normal user, and then logged back into the computer as root, the command would work. If your shell does not give you any feedback (particularly, "no such file or directory"), then the command worked. In order to get the command to run every time the computer boots, I used a systemd service, so that the command is issued as root. For some reason, it doesn't work if you put the command into /etc/profile.
    Oh, and it would probably be helpful to mention that for the compat-drivers-patched package from the AUR, the PKGBUILD checks to see what your _selected_drivers variable is before compilation. If you set _selected_drivers=ath9k, your compile times will be much shorter.

  • Is it possible to debug "CL_HTTP_PLAIN_OUTBOUND" FROM HTTP RECEIVER ADAPTER

    Hi All,
    In my PI interface the data from R/3 ( using abap proxy ) is getting posted on a external server using HTTP receiver adapter .
    I assume that it triggers this class when you run the HTTP receiver adapter  -CL_HTTP_PLAIN_OUTBOUND
    Please let me know how can i enable debugging for triggering this class.
    Please let me know the steps to debug this class by triggereing from SAP PI system ( when we run the interface on PI system )
    Regards,
    Reddy

    Hi ,
    i am not sure about this,i wolukd prefer developing JAVA Proxy or File Adapter . try this code it read the data from website, try in you stand alone application,it is able to read or not.
    you will face two problems,you have to convert CSC file to XML it is not possible in HTTP Adapter,
    import java.lang.*;
    import java.util.*;
    import java.net.*;
    import java.io.*;
    class URL2AC
            public static void main(String args[]) {
           try {        
              URL url = new URL("http://www.XXXXXXX.com/raj.txt");
              URLConnection uc = url.openConnection();
              BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
              while (in.readLine()!=null)
                   System.out.println(in.readLine());
           catch(Exception e) {
              e.printStackTrace();
    Regards,
    Raj

  • ERROR: "Exception from HRESULT: 0x8007000B" While installing addon in win 7

    Dear Experts,
    i have stuck in addon installation it shows an error of "Exception from HRESULT: 0x8007000B"
    My addon is in C#.net and this Error comes only in Window 7
    Regards,
    Sumeet Vaity

    Dear sumeet,
    If you get this kind of Error then change your value false to true
    To enable just in time (JIT) debugging, the config file for this
    application or machine (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog.
    You will find out machine config of your machine in the following location
    C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG
    Edited by: SHASHANK KOLI on Sep 21, 2011 1:58 PM

  • "'Catastrophic failure (Exception from HResult:0x8000FFF(E_UNEXPECTED))'" when updating a List item

    Hi,
    I am receiving the below error when I update a List item.
    'Catastrophic failure (Exception from HResult:0x8000FFF(E_UNEXPECTED))'
    I have enabled the Verbose logging, and below are the details of the error that I have taken from Log Files.
    Application error when access /sites/exg/Lists/Applics/EditForm.aspx, Error=Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))   at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bMigration, Boolean bPublish)     at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bMigration, Boolean bPublish)
    Kindly advise the resolution to avoid this error.
    Thanks

    Hi shameej,
    i found a similar thread , can you plz check it?
    http://social.msdn.microsoft.com/Forums/en/sharepointdevelopment/thread/2ee9e393-70f9-4ec7-b19b-f107ef204ef7
    http://www.sharepointdev.net/sharepoint--development-programming/catastrophic-failure-after-itemupdatingeventhandler-66510.shtmlBest Regrads,
    Ahmed Madany

  • An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024)

    An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024) 
     while proview the report i will get this error am using sql server 2008R2,
    can u plesae hlep me out for this
     

    <Header>
      <Product>Microsoft SQL Server Reporting Services Version 2009.0100.1600.01 ((KJ_RTM).100402-1539 )</Product>
      <Locale>English (United States)</Locale>
      <TimeZone>W. Europe Standard Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\Logfiles\ReportServerService__01_30_2015_03_09_32.log</Path>
      <SystemName>WEGDACM1</SystemName>
      <OSName>Microsoft Windows NT 6.1.7601 Service Pack 1</OSName>
      <OSVersion>6.1.7601</OSVersion>
      <ProcessID>4880</ProcessID>
      <Virtualization>Hypervisor</Virtualization>
    </Header>
    rshost!rshost!5e4!01/30/2015-03:09:32:: i INFO: Currently registered url http://+:80/ReportServer_MSSQLSERVEREPORT/ on endpoint 2
    rshost!rshost!5e4!01/30/2015-03:09:32:: e ERROR: Failed to register url=http://+:80/Reports/ for endpoint 3, error=b7.
    rshost!rshost!5e4!01/30/2015-03:09:32:: w WARN: Endpoint 3 is enabled but no url is registered for vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportManager.
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: e ERROR: Error creating HTTP endpoint. System.Runtime.InteropServices.COMException (0x800700B7): Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7)
       at Microsoft.ReportingServices.HostingInterfaces.IRsUnmanagedCallback.CreateHttpEndpoint(RsAppDomainType application, String[] urlPrefixes, Int32 cPrefixes, String[] hosts, Int32 cHosts, Boolean wildCardPresent, String virtualDirectory, String
    filePath, Int32 authType, Int32 logonMethod, String authDomain, String authRealm, Boolean authPersist, Int32 extendedProtectionLevel, Int32 extendedProtectionScenario, Boolean enabled)
       at Microsoft.ReportingServices.Library.ServiceAppDomainController.SetWebConfiguration(RunningApplication rsApplication, Boolean enabled, String folder)
    rshost!rshost!65c!01/30/2015-03:09:32:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer_MSSQLSERVEREPORT/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportServer\ReportBuilder.
    rshost!rshost!1e30!01/30/2015-03:09:32:: i INFO: Derived memory configuration based on physical memory as 16776696 KB
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: i INFO: Recycling the service from the default domain
    rshost!rshost!1e30!01/30/2015-03:09:46:: i INFO: Application domain type WindowsService statistics: created: 7, unloaded: 7, failed: 0, timed out: 0.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:46:: i INFO: Appdomain:11 WindowsService_7 started.
    library!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    servicecontroller!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Error initializing configuration from the database: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    resourceutilities!WindowsService_7!1e30!01/30/2015-03:09:47:: i INFO: Reporting Services starting SKU: Enterprise
    servicecontroller!WindowsService_6!1e30!01/30/2015-03:09:47:: i INFO: Service controller exiting.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 unregistered.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 WindowsService_6 unloading.
    appdomainmanager!DefaultDomain!1f40!01/30/2015-03:09:47:: i INFO: AppDomain:10 0 pending unload(s)
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Exception caught while starting service. Error: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Attempting to start service again...
    library!DefaultDomain!202c!01/30/2015-08:04:43:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:25:26:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:26:16:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    The above is my log file pls find it resolve my problem,am trying to add the encryption key to my configuration seetings it will through the error like The profile you were used is temporary profile.

  • Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    I'm new to ADO.NET and need help with this error.
    Currently running Vista Home Premium 64 and Visual Studio 2008 Trial.
    1. Create Win form app.
    2. Add new data source...
    3. New connection - SQL Server Compact 3.5 - Northwind.sdf
    4. Highlight Products and Suppliers.
    5. Drag both onto Win form
    6. Run with debug
    7. Error message "Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
    some blogs advice change dir in SQL Server Compact 3.5 in regedit but regedit doesn't even have SQL Server Compact 3.5; only SQL Server\SQLExpress.
    reinstall SQL Server Compact 3.5 and problem still exists.
    anyone knows how to fix this problem?

     ErikEJ wrote:
    Have you set your solution target to "Any CPU" ?? If so, set to "x86", as SQL Compact only runs in WoW mode on x64. Or use corflags.exe /32BIT+ against your project output (.exe file).
     ErikEJ wrote:
    Look at this blog post for a walk-through: http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
    Hello everyone,
    I have the same problem as mentioned above "Unable to load DLL 'elev.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ", when trying to load the dll file into a window application.  I developed a window application in VS2005 and want to import a dll file from another program into my project and use it.  But when I try to call one of the function in the dll file, I got the error message "Unable to load dll 'elev.dll".  I try all options that say it works to solve this problem, but somehow it doesn't work for me. I put the "elev.dll" file in the bin folder and use P/Invoke to import the dll file into my project.  Can anyone help me out with this?  thanks and really appreciated!
     Here is how I import the dll:
    [DllImport(@"D:\elev.dll")]
    //[DllImport("emap.dll", SetLastError = true)]
    private static extern void EMA_Init();
    and in the code,  I call the function above but failed to load the dll file
    EMA_Init();

  • [solved]How to compile a software with debug symbol from aur?

    How does auch developers compile their project? Seems that archlinux user always trying to avoid build software from git/svn directly. But after searching a lot  I sill haven't found how to compile with debug symbol while using PKGBUILD.
    Anyone help?
    Last edited by ranjiao (2009-08-27 14:28:09)

    ranjiao wrote:PKGBUILD calls autogen.sh before calling make, and gnome-autogen.sh is called in autogen.sh
    I have tried to add --enable-debug while calling autogen.sh and gnome-autogen.sh, but it doesn't work.
    Isn't PKGBUILD just a script? It calls what you make it calls by adding commands...

  • An unexpected error has occurred. Details: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)

    While Integrating Reporting Services with SharePoint 2010 getting below error:
    An unexpected error has occurred. Details: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    Thank,
    Said Al Balushi.

    1- Clicked web service URL, getting the fallowing 
    Reporting Services Error
    The configuration parameter SharePointIntegrated is set to True but Share Point Object Model cannot be loaded. The error was: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'
    or one of its dependencies. The system cannot find the file specified. File name: 'Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' at Microsoft.ReportingServices.SharePoint.Objects.RSSPImpSecurity.set_StaticCatchAccessDeniedException(Boolean
    value) at Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper..ctor() at Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelperFactory.get_ServiceHelper() WRN: Assembly binding logging is turned OFF. To enable assembly bind
    failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1. Note: There is some performance penalty associated with assembly bind failure logging. To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
    . (rsSharePointObjectModelNotInstalled) Get Online Help 
    2- Port 135 is open from WFE (App and WEF is same server) to Reporting server 
    3- I am using default instance
    Thanks,
    Said Al Balushi

  • 32 bit Application calling 32 bit DLL "An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"

    Hi,
    I am developing an application in visual c# which loads few DLLs.
    While loading the DLLs I am getting this error
    "An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"
    Strange thing for me is that I don't get this error always. In most of the cases when I uninstall the application and reboot my PC again when I install again then problem is solved for few days.
    I have followed several threads all suggests that This error comes either "64 bit exe tries to load 32 dll" or "32 bit exe tries to load 64 bit dll". In my case i made sure that both the
    exe and dll are 32 bit.
    In Project property I selected Platform and Platform target to x86. But the problem still occurs.
    Some body please suggest some solutions and why this problem occur.
    Thanks
    Sujeet. 

    Hi,
    How do you load the DLLs? I assume you get an exception and do not call the LoadLibrary API function directly. The latter just returns NULL (Intptr.Zero) if you load a library with the wrong bitness. However, in this case, I do not get error 11 (= 0xB =
    ERROR_BAD_FORMAT), but I get error 193 (= ERROR_BAD_EXE_FORMAT), so I think something else is going on on your machine.
    So, do you get an exception, and which one? Can you catch and examine it? Does it provide details about which library can not be loaded?
    An option is using
    Process Explorer to find out which library can not be loaded by looking at which libraries are being accessed most recently.
    Another option is using Windbg.exe (from the Windows Debugging Tools). By default, it outputs all loaded modules so that the last one your application tries to load should be listed there, too. It should even be listed if it fails to load; at least that
    was the case in my tests.
    Sometimes, if no path is specified for the dll file, the dll can be loaded from the current directory. So depending on what happened at runtime before the library is being loaded, the current directory could have been changed so that you can get variable
    results during debugging.
    When you are saying "when I uninstall the application", do you mean your own application on your own PC? Does the problem (also) happen during debugging inside Visual Studio?
    Armin

  • Desktop.debug: exceptions messages

    Alex and Raju,
    i tried 2 sequence :
    1) If i run the custom auth module (which is using a java Class in /etc/opt/SUNWps/desktop/classes), without adding the the classpath in jvm12.conf -> i get no error messages in both auth logs and desktop logs;
    Here my Authentication not getting complete - i get auth failed error; But i can acess the java class under /etc/... - i see that in my debug logs.
    2) If i do the same by adding the classpath in the jvm12.conf,
    a) I can access my java class ( i see it from the debug messages)
    b) I can bale to login and go to desktop - But the desktop is empty with just my default container (MyFrontPageTabContainer..)
    c) And i got the following desktop.debug exceptions....
    questions :
    If i need to access the classes under /etc/opt/SUNWps/desktop/classes/... in the classes under /opt/SUNWam/lib/... what is the usual procedure ?
    regards,
    Vee
    11/07/2003 11:01:14:141 AM EET: Thread[Thread-36,5,main]
    ERROR: PSContainerProviderContext.initProvider()
    java.lang.NoClassDefFoundError: com/sun/portal/providers/jsp/JSPProvider
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:488)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:106)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:243)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at java.lang.ClassLoader.findSystemClass(ClassLoader.java:652)
    at com.iplanet.server.http.servlet.NSServletLoader.findClass(NSServletLoader.java:152)
    at com.iplanet.server.http.servlet.NSServletLoader.loadClass(NSServletLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:287)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at com.sun.portal.desktop.context.ProviderClassLoader.<init>(ProviderClassLoader.java:60)
    at com.sun.portal.desktop.context.PSContainerProviderContext.initProvider(PSContainerProviderContext.java:209)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getProvider(PSContainerProviderContext.java:159)
    at com.sun.portal.providers.containers.JSPContainerProviderAdapter.getRefreshTime(JSPContainerProviderAdapter.java:114)
    at com.sun.portal.providers.containers.JSPContainerProviderAdapter.getRefreshTime(JSPContainerProviderAdapter.java:118)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:348)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:492)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:306)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.WFilterChain.doFilter(WFilterChain.java:144)
    at com.sun.portal.yahoo.YahooDTFilter.doFilter(YahooDTFilter.java:137)
    at com.iplanet.server.http.servlet.WebApplication.serviceServletFilters(WebApplication.java:1105)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1063)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)
    11/07/2003 11:01:14:144 AM EET: Thread[Thread-36,5,main]
    ERROR: ContainerProviderAdapter.getRefreshTime(): invalid channel MyChannel
    11/07/2003 11:01:16:806 AM EET: Thread[Thread-36,5,main]
    ERROR: PSContainerProviderContext.initProvider()
    java.lang.NoClassDefFoundError: com/sun/portal/providers/jsp/JSPProvider
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:488)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:106)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:243)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at java.lang.ClassLoader.findSystemClass(ClassLoader.java:652)
    at com.iplanet.server.http.servlet.NSServletLoader.findClass(NSServletLoader.java:152)
    at com.iplanet.server.http.servlet.NSServletLoader.loadClass(NSServletLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:287)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at com.sun.portal.desktop.context.ProviderClassLoader.<init>(ProviderClassLoader.java:60)
    at com.sun.portal.desktop.context.PSContainerProviderContext.initProvider(PSContainerProviderContext.java:209)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getProvider(PSContainerProviderContext.java:159)
    at com.sun.portal.providers.containers.JSPContainerProviderAdapter.getRefreshTime(JSPContainerProviderAdapter.java:114)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:348)
    at com.sun.portal.desktop.taglib.containerProviderContext.GetContentTag.doStartTag(GetContentTag.java:33)
    at jsps.etc._opt._SUNWps._desktop._default_en_US._JSPTabContainer._html._tab_jsp._jspService(_tab_jsp.java:783)
    at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabContainerProvider.java:532)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:492)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:306)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.WFilterChain.doFilter(WFilterChain.java:144)
    at com.sun.portal.yahoo.YahooDTFilter.doFilter(YahooDTFilter.java:137)
    at com.iplanet.server.http.servlet.WebApplication.serviceServletFilters(WebApplication.java:1105)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1063)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)
    11/07/2003 11:01:16:809 AM EET: Thread[Thread-36,5,main]
    ERROR: ContainerProviderAdapter.getRefreshTime(): invalid channel MyChannel
    11/07/2003 11:01:17:335 AM EET: Thread[Thread-36,5,main]
    ERROR: PSContainerProviderContext.initProvider()
    java.lang.NoClassDefFoundError: com/sun/portal/providers/jsp/JSPProvider
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:488)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:106)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:243)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at java.lang.ClassLoader.findSystemClass(ClassLoader.java:652)
    at com.iplanet.server.http.servlet.NSServletLoader.findClass(NSServletLoader.java:152)
    at com.iplanet.server.http.servlet.NSServletLoader.loadClass(NSServletLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:287)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at com.sun.portal.desktop.context.ProviderClassLoader.<init>(ProviderClassLoader.java:60)
    at com.sun.portal.desktop.context.PSContainerProviderContext.initProvider(PSContainerProviderContext.java:209)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getProvider(PSContainerProviderContext.java:159)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:418)
    at com.sun.portal.desktop.taglib.container.table.GetContentTag.doStartTag(GetContentTag.java:43)
    at jsps.etc._opt._SUNWps._desktop._default_en_US._MyFrontPageTabPanelContainer._html._tabtable_jsp._jspService(_tabtable_jsp.java:373)
    at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:367)
    at com.sun.portal.desktop.taglib.containerProviderContext.GetContentTag.doStartTag(GetContentTag.java:33)
    at jsps.etc._opt._SUNWps._desktop._default_en_US._JSPTabContainer._html._tab_jsp._jspService(_tab_jsp.java:783)
    at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabContainerProvider.java:532)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:492)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:306)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.WFilterChain.doFilter(WFilterChain.java:144)
    at com.sun.portal.yahoo.YahooDTFilter.doFilter(YahooDTFilter.java:137)
    at com.iplanet.server.http.servlet.WebApplication.serviceServletFilters(WebApplication.java:1105)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1063)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)
    11/07/2003 11:01:17:531 AM EET: Thread[Thread-36,5,main]
    ERROR: PSContainerProviderContext.initProvider()
    java.lang.NoClassDefFoundError: com/sun/portal/providers/jsp/JSPProvider
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:488)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:106)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:243)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at java.lang.ClassLoader.findSystemClass(ClassLoader.java:652)
    at com.iplanet.server.http.servlet.NSServletLoader.findClass(NSServletLoader.java:152)
    at com.iplanet.server.http.servlet.NSServletLoader.loadClass(NSServletLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:287)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
    at com.sun.portal.desktop.context.ProviderClassLoader.<init>(ProviderClassLoader.java:60)
    at com.sun.portal.desktop.context.PSContainerProviderContext.initProvider(PSContainerProviderContext.java:209)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getProvider(PSContainerProviderContext.java:159)
    at com.sun.portal.providers.util.ProviderOrder.order(ProviderOrder.java:77)
    at com.sun.portal.providers.containers.jsp.table.JSPTableContainerProvider.setupColumns(JSPTableContainerProvider.java:179)
    at com.sun.portal.desktop.taglib.container.table.GetColumnsTag.getColumnMap(GetColumnsTag.java:60)
    at com.sun.portal.desktop.taglib.container.table.GetColumnsTag.doStartTag(GetColumnsTag.java:47)
    at jsps.etc._opt._SUNWps._desktop._default_en_US._MyFrontPageTabPanelContainer._html._tabtable_jsp._jspService(_tabtable_jsp.java:450)
    at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:367)
    at com.sun.portal.desktop.taglib.containerProviderContext.GetContentTag.doStartTag(GetContentTag.java:33)
    at jsps.etc._opt._SUNWps._desktop._default_en_US._JSPTabContainer._html._tab_jsp._jspService(_tab_jsp.java:783)
    at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
    at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
    at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
    at com.sun.portal.providers.containers.jsp.tab.JSPTabContainerProvider.getContent(JSPTabContainerProvider.java:532)
    at com.sun.portal.desktop.context.PSContainerProviderContext.getContent(PSContainerProviderContext.java:367)
    at com.sun.portal.desktop.context.PSDesktopContext.getContent(PSDesktopContext.java:957)
    at com.sun.portal.desktop.DesktopServlet.doGetPost(DesktopServlet.java:492)
    at com.sun.portal.desktop.DesktopServlet.service(DesktopServlet.java:306)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.WFilterChain.doFilter(WFilterChain.java:144)
    at com.sun.portal.yahoo.YahooDTFilter.doFilter(YahooDTFilter.java:137)
    at com.iplanet.server.http.servlet.WebApplication.serviceServletFilters(WebApplication.java:1105)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1063)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)

    It is important to understand the difference:
    Login module is part of Identity server
    and a channel belongs to portal server.
    Now, your authmodule needs implementor class in the classpath.
    /etc/.../desktop/classes will be not auto-loaded by identity server.
    And this class don't have to be in /etc/.../desktop/classes it can be e.g. in /opt/SUNWam/lib/
    Further there is no need to investigate first case:
    if implementor class is not in CP - your authmodule will fail!
    Put your class in a different directory and try only the second case with class reference in CP.
    Also I am curious why you are referencing Authmodule in your channel?!
    Cheers,
    Alex :-)

  • Netweaver Administrator - Enable Debugging

    In the Netweaver Administrator web console, we want to enable debugging (System Mgmt > Administration > Systems.  For some reason, the 'Enable Debugging' button is greyed out for the J2EE server process.  Have you seen this before?

    Sorry BOB..I didnt see this message.
    You can enable debugging from visual admin:
    Logon with Visual Administrator ->Server->Services ->u2022     Go to Configuration Adapter:->u2022     On Display Configuration go to: cluster_data -> Propertysheet instance
    ->Switch between Display Mode or change ->->Double-click on u201CProperty sheet instanceu201D opens:
    Make sure the DebugMode is set to u201Cyesu201D to debug the portal.
    You can specify the port here....and siable debugging on some nodes (as per need)
    regards,
    hemanth

  • Getting Error as Unexpected exception from plug-in (Execute)?

    Hi all,
    i was getting an plugin error when writing the data into CRM 2013 using CRM 2013 SDK from SSIS Package. i tried to find out the root cause by debugging and came to know that this is not data issue.seems something related to plugin or else. Can you please
    look at this error and suggest a way to proceed.
    error:
    Unexpected exception from plug-in (Execute): CTB.xRM.Plugins.Addressing.AddressLinesUpdatePlugin: System.Exception: An error occured during the AddressLinesUpdatePlugin
    Thanks &amp;amp; Regards, Anil

    this is not the plugin code that goes on error (CTB.xRM.Plugins.Addressing.AddressLinesUpdatePlugin)
    and you need to explain also what is doing your SSIS package and what does the plugin, and you can also try to debug the plugin first
    My blog: www.crmanswers.net -
    Rockstar 365 Profile

  • Enable Debug on Startup?

    Hi Everyone: is there a way to configure the J2EE engine to enable debugging on startup? Thanks!

    Ian,
    Use the Config tool and expand cluser-data -> instace_idxxxxx -> server_idxxx and left-click on this node.
    In the right had pane you should see a bunch of tabs, the last one being debug. Check the Debugable checkbox and the Enable debug mode one.
    Apply the settings from the File menu, then exit and restart the server process.
    Cheers,
    Steve
    PS - Config tool is launched from go.bat in the directory
    \usr\sap\J2E\JC00\j2ee\configtool\

Maybe you are looking for

  • Photoshop CC 2014 in Creative Cloud reported as CS6?

    Macbook Pro OSX 10.9.4 All CC progs uninstalled and reinstalled and CC cleaner used. All programs working fine but CC still reports PS CC2014 as CS6 not as it is, PS6 long gone from the computer. Is there a file missed somewhere?

  • Player compatibility problem with dual layer media

    I've created a dual layer DVD and there is a problem with compatibility from player to player. It plays fine in one of my DVD players but will not load in the other. The duplicators tested my master on 2 players and it loaded on both, but would lock

  • Creative Cloud does not show applications

    My creative cloud app does not show any of my applications and does not allow me to do any updates. Please help. Thank you.

  • Landed costs with several vendors

    Hi All, I read in the Help File documentation that it is possible to add several vendors to a landed costs posting. P.e. an invoice concerning the handlingcosts and another invoice concerning the transport of the same shipment.(the goods receipts are

  • Need IDML file help

    I need to open a document in InDesign CS5, but it was created in CS5.5. Anyone available to save an IDML file for me? I've uploaded the file to Dropbox here: https://www.dropbox.com/s/5864jlq7d4ohvxv/Diana_Morrow_resume_06-12.indd Many, many thanks!!