Error runnning sample code on 64 bit windows

Hello,
I am using VS 2010 express to execute the sample SAP connector client code provided by dataxstream on windows 7 and I have installed the 64 bit version of the connector. I added the references required to execute the code, but I get the below mentioned error. Can someone tell me what am I missing here?
Could not load file or assembly 'sapnco, Version=3.0.0.42, Culture=neutral, PublicKeyToken=50436dca5c7f7d23' or one of its dependencies. An attempt was made to load a program with an incorrect format.
Thanks

Note the header of this forum:
This forum is dedicated to development and deployment of .Net applications
that connect and interact with BusinessObjects Enterprise, BusinessObjects
Edge, or Crystal Reports Server. This includes the development of applications
using the BusinessObjects Enterprise, Report Application Server, Report
Engine, and Web Services SDKs.
Looks to me like you posted in an incorrect forum. Unfortunately I am not sure what forum may be best for you. Checking with your account manager may be the way to go(?).
- Ludek

Similar Messages

  • Error in sample code

    How come we have so many errors in Jdeveloper sample code for creating db schema.

    You will really have to provide more information (what errors, what are you trying to do), because no one will be able to do anything with this kind of limited information.

  • 32 Bit c\c++ code with 64 bit Windows 2003 exproc

    NOTE - This was posted previously under ther PLSQL forum. If this forum is also incorrect, I apologize - please guide me to the correct location.
    Several years ago we implemented the Shell exproc example ( Metalink Note:136527.1) on our NT server – It uses a snippet of c/c++ code and a free downloadable borland compiler. It turned out to be very handy and we have a lot of packages based on it. We recently migrated to a 64 bit Windows 2003 server where the library fails (ORA-06520) and need to recompile the C/C++ code for a 64 bit platform.
    I have access to Visual Studio 2008, but it has been years since I’ve played with C and I’ve never used Visual C++. Does anyone have the clift notes for recompiling this example for windows 64 bit enivronment using Visual Studio? Is there a better compiler (simpler ide) to be using?

    This is not a SQL or PL/SQL question.
    Please repost in the appropriate forum.
    Thanks.

  • Error while trying to deploy 32 bit windows 7 using mdt

    I am trying to deploy 32 bit windows 7 on a 64 bit machine using MDT. After the initial loading it gives an error stating that windows failed to start.
    File:\Windows\system32\drivers\stm_tpm.sys
    status: 0xc000035a
    info: windows failed to load because a critical system driver is missing or corrupt.
    I tried disabling the drivers .. still seeing the same error.
    STMicroelectronics System tpmdrv.inf 1.00.04.14
    STMicroelectronics System tpmdrv.inf 1.00.04.15(1)
    STMicroelectronics System tpmdrv.inf 1.00.04.15(2)
    Can some one help me out..thank you very much

    If you are still getting the same error, then it would suggest that the drivers weren't removed from the image.
    IF this is the WInPE image generated by MDT, then be sure that you run a *Full* update of the deployment share.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Compilation error, When moving code from 32-bit to 64-bit

    Hello,
    This Code compile on 32 bit system, but Getting Compilation error fro 64 bit,
    :/export/home/pshirode/rel_v95/cc_lib > make
    Making dependencies...
    cc -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd -H -w -E 2>&1 >/dev/null Bitmap.cc BitmapData.cc BitmapInputTxnStream.cc BitmapOutputStream.cc UnexpectedException.cc FieldData.cc FieldDataCollection.cc FieldDefinition.cc FieldDefinitionCollection.cc OutputFixedStream.cc ParsingEngine.cc Schema.cc Statistics.cc String.cc TraceStream.cc TxnStream.cc c_api.cc SocketImpl.cc Socket.cc ServerSocket.cc UnixSocket.cc Thread.cc test.cc | grep -v License | grep -v command | ../dvl.bin/mkdep >.depends
    Dependencies updated...
    CC -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd -c Bitmap.cc
    "RuntimeException.h", line 131: Error: Function RuntimeException::~RuntimeException() can throw only the exceptions thrown by the function std::exception::~exception() it overrides.
    "RuntimeException.h", line 97: Error: Could not find std::exception::exception(const char*) to initialize base class.
    "RuntimeException.h", line 121: Error: xmsg is not a member of std::exception.
    "Bitmap.cc", line 62: Error: Cannot return int(Bitmap::*)()const from a function that should return int.
    4 Error(s) detected.
    make: *** [Bitmap.o] Error 4
    CFLAGS in Makefile
    # The system include directory must be specifically included first because some of the
    # ghost includes use system include file names (e.g., generic.h)
    # Modified these section to compile on TVLAPP1HAG
    CFLAGS += -D $(STDOUT_TRACE)
    #CFLAGS += -g -D$(MAINLINE) $(OUR_COLLECTION)
    #CFLAGS += -compat -Qoption ccfe -abirel=4.1
    #CFLAGS += -Qoption ccfe -abirel=4.1
    CFLAGS += -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd
    #CFLAGS += -I. -mt
    # Add the flag for multi-threaded apps
    LDFLAGS += -lsocket -lnsl -lthread
    # declare an empty macro for compiler directive flags, to be command-line
    # driven (ie, for -D directives)
    CCFLAGS=
    CCFLAGS += -DRW_NO_CPP_RECURSION
    # The following manipulation of CC and overriding the .cc.o suffix
    # dependency is removed here to use what is supplied by default int
    # the h/common.mak file.
    #XX = CC
    #CC = CC
    #COMPILE = $(CC) -o $*.o $(CFLAGS) $(CCFLAGS) -c $*.cc
    #.cc.o:
    # $(COMPILE)
    #.DEFAULT:
    # $(COMPILE)
    #all: $(TEST_OBJS) $(PGM_EXEC)
    all: $(TEST_OBJS)
    #install:
    # $(INSTALL) $(PGM_EXEC)
    $(TEMPLATE_CONTAINER).o: $(TEMPLATE_CONTAINER).cc
    $(CC) -o $*.o $(CFLAGS) -pta -c $*.cc
    # Uncomment the following lines, and uncomment the appropriate MAINLINE
    # setting to create your desired test program for a cc_lib routine. Normally
    # we simply want to create the cc_lib .o files so this is commented out.
    #test exec
    $(PGM_EXEC): $(INCLUDES) $(TEST_OBJS)
    @echo Linking test...
    $(CC) -g -o $(PGM_EXEC) $(TEST_OBJS) $(LDFLAGS) $(ROOT)/util/libutil.a
    checksum:
    /export/home/pshirode/rel_v95/cc_lib > CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    Please help ASAP

    This looks like exactly the same question you asked in the thread
    [http://forums.sun.com/thread.jspa?threadID=5335510]
    Please do not ask the same question in more than one thread.

  • Error in sample code UseMatrix

    oForm = SBO_Application.Forms.AddEx(creationPackage)
    At the above statement following error is fired,
    An unhandled exception of type
    'System.Runtime.InteropServices.COMException' occured in Project.Exe
    Additional information :Form already exists [6600-11]

    hi dilip,
    i tried the same code. it is working fine..
    as u told, u r facing a error "form already exist"..
    just do one thing, close and reopen SAP Business one..
    then it will work...
    hope it wil work..
    if satisfied, rewards good points.
    regards
    nirdesh

  • Error on sample code Oracle's JMS Resource Adapter for WebSphere MQ Series

    Hi,
    I've succesfully assembled and deployed demo application located at the following url
    http://www.oracle.com/technology/tech/java/oc4j/1013/how_to/how-to-mq-jms/doc/how-to-mq-jms.html
    However, during testing of the app, i've discovered strange error: It seems that
    instead of 6 messages returned only 3 messages (those replies generated by MDB), while 3 messages expected to be rolled back to the queue are disappeared.
    After turning trace on MQ i've discovered that for some reason MDB commits after every transaction, even if setRollbackOnly() method id called.
    I.e. log contains 12 XACOMMIT() calls ( 9 call for 9 messages being consumed by the MDB and 3 for 3 messages being submited as replies), while it's supposed to contain only 9 commits.
    Could you explain why this happens ?
    I've trace files and OC4J output at hand if you're might interested.

    Shouldn't I be getting a com.evermind.sql.OrclCMTConnection created instead of a com.evermind.sql.OrionCMTConnection (per the stack trace)? OJMS is complaining that it doesn't have an OracleCOnnection but how do I tell it to use the "OrclCMTConnection" class instead?
    Brian

  • TNS-00511: No listener- 64-bit Windows Error: 61: Unknown error

    SO - windows 2008 server R2 standard
    I've install oracle 10g r2 - 10.2.0.4 ( with some problem - i have modified oraparam.ini to install - 6.1 )
    Now when i try to start listener but i have some problems :
    LSNRCTL> start
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    and
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.11)(PORT=1521
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    64-bit Windows Error: 61: Unknown error
    LSNRCTL>
    i can connect
    sqlplus / as sysdba
    i can't conn user/user@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.11)(PORT=1521))
    i don't have the service OracleOraDb10g_home1TNSListener

    Windows 2008 R2 version is not yet certified for Oracle products by Oracle.
    You need reconsider your decision of using this operating system or switch to a certified combination.

  • 64-bit Windows Error: 61: Unknown error

    Hi all,
    I have install 10.2.0.4 64 bit on windows 2008 64 bit. But i am running in to problem with listener:
    Please help:
    my listener.ora fiel:
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = servername)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = ETEST)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1\)
    (SID_NAME = ETEST)
    Tnsnames.ora:
    ETEST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = servername)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ETEST)
    error
    1)
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server1.NTS.rethi.com)(P
    ORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    64-bit Windows Error: 61: Unknown error
    2)
    and for tnsping from my computer:
    TNS12535 TNS: operation timeout.

    hi,
    yes.
    I get
    TNS-12560: TNS: protocol adaper error
    TNS-00530: Protocol adapter error.
    and in status it gives:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server1.NTS.rethi.com)(P
    ORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    64-bit Windows Error: 61: Unknown error
    Thanks

  • TNS-12224: TNS:no listener - 32-bit Windows Error: 61: Unknown error

    Hi,
    I have a fresh install of 11.5.10.2 in windwos 2003 and I'm facing the following error in both nodes (1st node database, admin, cms (mcorafinbdcl)----- 2nd node forms and web (mcfinappcl) in 8.0.6 listener:
    Error when I start the lisneter manually or I do a status:
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=mcorafinbdcl)(Port=1626))
    TNS-12224: TNS:no listener
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    I have recreated the listener removing the srvice and doing a lsnrctl80 start APPS_D11i but still not working!
    Please help! Thanks

    Hi!
    The issue I'm facing it is vaery strange and partially fixed:
    1-) If you start the listener via script adalnctl.cmd or via command line "lsnrctl80 start APPS_D11i" it fails always.
    2-)If you start the apps listener via services, start --> Administrative tools --> Services. It works
    I'm connecting via terminal services, I have read somewhere that this could be an issue!
    As well and related with this issue, when I run autoconfig (in terminal services using remote desktop connection) it hangs in step:
    adsvalsn.cmd --> this command creates the apps listener
    And the autoconfig finish with error:
    adsvalsn.cmd INSTE8_APPLY -1
    Due this adpatch is giving me an error
    Thanks

  • I am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    i am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    download the 64bit installer,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Error while compiling CS5.5 sample code

    Hi,
    I have just started on using InDesign CS5.5. I am trying to compile the sample code on Windows 7 and with Visual Studio 2008. On compilation it is giving me an error of SDKLib.sdk.lib
    "LINK : fatal error LNK1181: cannot open input file '..\..\..\build\win\objr\SDKLib.sdk.lib'"
    Have I missed some settings. I have set the Bin folder in the tools option. If anyone knows about this error please do let me know.
    Thanks all in advance.
    Regards,
    Farzana.

    Hi to all again,
    I just noticed that I don't have the SDKLib.sdk.lib file in the folder. Neither for Debug or for Release I have this file. Do I need to download this from somewhere??
    Thanks in advance.
    Regards
    Farzana.

  • Epson Stylus Pro 9800 errors on 32-bit Windows 7 with Adobe CS4

    Epson Stylus Pro 9800 errors on 32-bit Windows 7 with Adobe CS4
    Question: We are experiencing some major errors with printing to our Epson Stylus 9800 Pro. Some of our large files are spooling about 16K, then crashing Photoshop. Sometimes we are getting partial prints (the left most 3-4 inches of print, or the file starting to print about 1/2 way into the file itself), sometimes it just spools for a few minutes, then stops, with nothing coming from the printer at all.
    At Epson's request, we have tried the following:
    reinstalling Windows 7 print driver
    Reinstalling Adobe CS 4
    Installed NEW NIC in printer
    Installed new network line to printer
    Installed new main board on printer
    Printed from a PC directly connected to printer via USB and crossover cable
    This issue is very bizarre in that it is random and sporatic. Same file will cause one of the above errors, then, another attempt to print same file will be successful. We have several Windows 7 machines that get the issue, while several Windows XP machines are fine. Epson instructed us to install the newest (win7) driver on the XP machines, issue then affects XP machines. Uninstalling new driver and re-installing old driver on XP machines resolves issue on XP machines.
    Is this an issue with the Epson driver? CS4 on Windows 7? Or some other malady?
    When Photoshop crashes, the following error log is created: Log Name:      Application
    Source:        Application Error
    Date:          10/6/2010 1:31:16 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      _PCNAME_._OUR_DOMAIN_.com
    Description:
    Faulting application name: Photoshop.exe, version: 11.0.2.0, time stamp: 0x4bf2d4f6
    Faulting module name: E_FJBLDBE.DLL, version: 0.1.1.7, time stamp: 0x469dea6c
    Exception code: 0xc0000005
    Fault offset: 0x0001c9ba
    Faulting process id: 0x1cf8
    Faulting application start time: 0x01cb657c010cac1c
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe
    Faulting module path: C:\Windows\system32\spool\DRIVERS\W32X86\3\E_FJBLDBE.DLL
    Report Id: 85870535-d16f-11df-b849-406186f3bc8f
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-10-06T17:31:16.000000000Z" />
        <EventRecordID>5497</EventRecordID>
        <Channel>Application</Channel>
        <Computer>_PCNAME_._OUR_DOMAIN_.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Photoshop.exe</Data>
        <Data>11.0.2.0</Data>
        <Data>4bf2d4f6</Data>
        <Data>E_FJBLDBE.DLL</Data>
        <Data>0.1.1.7</Data>
        <Data>469dea6c</Data>
        <Data>c0000005</Data>
        <Data>0001c9ba</Data>
        <Data>1cf8</Data>
        <Data>01cb657c010cac1c</Data>
        <Data>C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe</Data>
        <Data>C:\Windows\system32\spool\DRIVERS\W32X86\3\E_FJBLDBE.DLL</Data>
        <Data>85870535-d16f-11df-b849-406186f3bc8f</Data>
      </EventData>
    </Event>

    Giving that a go.
    Thanks!

  • Windows environment error while trying to execute 16-bit  applications.

    Hi guys,
    I'm executing applications in Windows using
    process = Runtime.getRuntime().exec(cmd,null,dir);where cmd[0] is the command e.g. "c:\timeout.exe" and dir is the
    working directory e.g. "c:\".
    This works fine for 32-bit programs and I can quit them using
    process.getErrorStream().close();
    process.getInputStream().close();
    process.destroy();However, executing 16-bit applications results in a popup error dialog
    box
    16 Bit MS-DOS Subsystem
    c:\windows\system32\ntvdm.exe
    Error while setting up the environment for the application
    Choose close to terminate the application
    I can change the execution command to
    cmd[0] = "cmd.exe"
    cmd[1] = "/C"
    cmd[2] = "c:\timeout.exe"and the problem goes away. The problem is process.destroy() kills
    cmd.exe not my application!
    Does anyone know of a fix for this?
    Thanks.

    You could check the EXE file and verify the file format. It's different for 16-bit DOS, 16-bit Windows, and 32-bit programs. 16-bit DOS programs are marked "MZ" at the beginning. 16-bit Windows programs have the same "MZ" at the beginning, but an "NE" (New Executable) marking a little farther down the file. 32-bit programs finally are marked with "MZ" and "PE" (Portable Executable) farther down.
    You can find more information at Wotsit: http://www.wotsit.org/search.asp?s=EXE
    Inspecting the files is tedious, but the only way of doing this without native code. If you want to use native code, you can probably find the process that was spawned by CMD and destroy it separately.
    Hope this helps, good luck.

  • Error while running a sample code

    Hello,
    I 'm getting the following error while i'm trying to run a
    sample code which I have imported into Flex 3.
    ===================================================================
    Severity and Description Path Resource Location Creation Time
    Id
    unable to open 'C:\Documents and Settings\sn55179\My
    Documents\Flex Builder
    3\FlexForDummies_Chapter3_Code\libs'FlexForDummies_Chapter3_Code
    Unknown 1237909480511 215
    ===================================================================
    Can anyone help me in resolving this issue.
    Many thanks in advance.

    It's very frustrating that FB stops working when the libs
    folder is missing. If you are checking in project files to a source
    control app like Perforce, empty folders don't get added, so if you
    don't add an initial dummy file, the next time you do a clean sync,
    the libs folder may not be there, and even though there is nothing
    there, FB complains. :-(

Maybe you are looking for

  • How do I get the Firefox icon to stay on the bottom bar of my Mac?

    How do I get the Firefox icon to stay on the bottom bar of my Mac computer?

  • Cannot re-save a file into the same folder

    Hi. I have a odd issue where users are unable to resave their documents into the folder that they have opened them from.  The folders in question are their home folders to which each user has full permission to access. You cannot save over the origin

  • PDF file name from servlet

    Hi we have a site from where users get PDF documents. every pdf document's name will vary from the user who is logged in currently. When users right click on pdf icon and click save as they see the correct file name in there 'save as' dialog. however

  • SNMP configuration of Aironet1200 (ios based)

    Hi, Could somebody explain where I am going wrong with my SNMP configuration of my Aironet 1200AP. I am trying to set up a new SSID, with a WEP key, some radius server info and the ability to toggle requireEAP and requireMAC on and off. The sequence

  • I just want to mount my external USB drive (connected to AEBS)!!

    I'm sure there's a post out there, but I have yet to find it after repeated searches for this topic. I've got to be missing something very very simple. I'll try to be complete on the set-up, please let me know if I've missed any configuration... MacA