RFC Windows SDK compile error

Hello.  I downloaded the RFC SDK for Windows (RFC_23-20000056.SAR) and I am attempting to compile some example code I found out on the Web.  I am NOT a C+/C person so I am new to the build process and requirements for linking, etc..  I am using Bloodshed Dev-C+ to edit, compile and build and I am running into the following errors with 'undefined references' to RFC methods:
++++++++++  LOG OUTPUT  ++++++++++++++++++++++++++++++
Compiler: Default compiler
Building Makefile: "C:\DEV\RFC_Test_console\Makefile.win"
Executing  make...
make.exe -f "C:\DEV\RFC_Test_console\Makefile.win" all
g+.exe -c main.cpp -o main.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"  -I"C:/Dev-Cpp/include/c/3.4.2/backward"  -I"C:/Dev-Cpp/include/c/3.4.2/mingw32"  -I"C:/Dev-Cpp/include/c+/3.4.2"  -I"C:/Dev-Cpp/include"  -I"C:/DEV/RFC_Test_console/rfcsdk/include"  
g++.exe main.o  -o "RFC_Test_console.exe" -L"C:/Dev-Cpp/lib" -L"C:/DEV/RFC_Test_console/rfcsdk/lib"  rfcsdk/bin/librfc32.dll 
main.o(.text+0x1ad):main.cpp: undefined reference to `ItCreate@16'
main.o(.text+0x203):main.cpp: undefined reference to `RfcOpen@4'
main.o(.text+0x23e):main.cpp: undefined reference to `RfcCall@16'
collect2: ld returned 1 exit status
make.exe: *** [RFC_Test_console.exe] Error 1
Execution terminated
+++++++++++++  END LOG OUTPUT  +++++++++++++++++++++++++
I have my Dev-C++ project include directory set to ..\rfcsdk\include and my project lib directory set to ..\rfcsdk\lib.
Here is my code:
#include <cstdlib>
#include <iostream>
#include <vector>
#include "saprfc.h"
#include "sapitab.h"
using namespace std;
int main(int argc, char *argv[])
    static RFC_ENV            new_env;
    static RFC_OPTIONS        rfc_opt;
    static RFC_CONNOPT_R3ONLY rfc_connopt_r3only;
    static RFC_PARAMETER      exporting[1];
    static RFC_PARAMETER      importing[1];
    static RFC_TABLE          tables[1];
    RFC_HANDLE                handle;
    RFC_RC                    rc;
    char *                    exception_ptr;
    ITAB_H                    ltab;
    char                      lst[100];
    char *                    lpt;
    int                       line, lnr, len;
    //Objects for data retrieval
    struct apr_rule
      int product_key_1;
      int product_key_2;
      double alpha_1;
      double alpha_2;
      double gamma;
      std::string operation;
   //std:: vector<apr_rule>          APR_VEC;
   rfc_opt.client   = "003";
   rfc_opt.user     = "FRESINA";
   rfc_opt.language = "EN";
   rfc_opt.password = "init21";
   rfc_opt.trace    = 0;
   rfc_opt.mode     = RFC_MODE_R3ONLY;
   rfc_opt.connopt = &rfc_connopt_r3only;
   rfc_connopt_r3only.hostname = "ld1051.wdf.sap.corp";
   rfc_connopt_r3only.sysnr = 9;
   ltab    = ItCreate( "BARMI", 100, 0, 0 );
   importing[0].name = NULL;
   exporting[0].name = NULL;
   tables[0].name = "A";
   tables[0].nlen = 1;
   tables[0].type = TYPC;
   tables[0].ithandle = ltab;
   tables[0].leng = 100;
   handle = RfcOpen( &rfc_opt );
   if( handle == RFC_HANDLE_NULL )
        return 1;
Install error handler
    //new_env.allocate = NULL;
    //new_env.errorhandler = rfc_error;
    //RfcEnvironment (&new_env);
   rc = RfcCall (handle,
                      cU("RFC_SYSTEM_INFO"),
                      exporting,
                      tables);
    if (rc != RFC_OK)
        //rfc_error (cU("RfcCall"));
    return EXIT_SUCCESS;
Any ideas why this won't compile?  I have also tried the sample code in the SDK (sapinfo.c) and this will not compile as it has an issue with the printfU() macro and a statement around '_MSC_VER'.
Thanks.
Anthony

Hi,
This problem usually occurs when you are installing from an ISO build for a different architecture.
Windows SDK now have different ISO’s for different architectures. Please download the correct ISO based on your system platform and architecture type.
Karen Hu
TechNet Community Support

Similar Messages

  • Windows sdk installation error for 64 bit OS

    Whiel i try to install windows SDK for 64 bit OS , i receive following error
    Setup could not find the file WinSDK_amd64\WinSDK_amd64.msi at any of the specified source locations
    Please help me to resolve this issue.
    Regards,
    Rahul

    Hi,
    This problem usually occurs when you are installing from an ISO build for a different architecture.
    Windows SDK now have different ISO’s for different architectures. Please download the correct ISO based on your system platform and architecture type.
    Karen Hu
    TechNet Community Support

  • [Q]rfc c library compile error

    Hello!
    I am establishing the IVR call to the SAP.
    The IVR machine is SUNOS 5.6.
    IVR should use the library, librfc.a,
    but when I compile with this library,
    I got the compile error like below.
    The error message is
    undefined first reference
    symbol in file
    select_large_fdset ./lib/librfc.a(cpictlib.o)
    ld: fatal: Symbol referencing errors. No output written to saprfccl
    I compiled with the below option,
    /opt/SUNWspro/bin/cc -Xc -xcg92 -I ./include -L ./lib
    saprfccl.c -o saprfccl -lrfc -lsocket -lnsl -ldl -lm -lw.
    librfc.a is the library referencing the function, select_large_fdset.
    but I don't have the program source because it is only provided as .a by the SAP.
    It looks that the standard library in this OS version does not have this function, select_large_fdset,
    according to my company technical support investigation.
    Are there any ways to get the library with this function without server upgrades?
    Thanks
    Myoung Ju Youm

    Thanks for your help.
    librfc.a is provided by SAP.
    I put this library in ./lib directory.
    and used the -L option to link with it.
    Anyway I put this path to LD_LIBRARY_PATH,
    but it is same.
    The problem is
    that librfc.a is referencing the function, select_large_fdset.
    This function is normally in the standard c library, libc.so.
    But because the SUNOS that I am using is so low, ver.5.6,
    libc.so in the standard c library does not have this function, select_large_fdset.
    So my question is how can I use this library, librfc.a without the server upgrade to the upper version
    that has the standard library that has function,select_large_fdset.
    Is it not possible?
    Please tell me yes.
    Myoung Ju Youm

  • Flex 4.1 SDK compilation error=3

    I just downloaded SDK 4.1 and tried to compile my application but I'm getting the following error:
    C:\projects\MyProject\build.xml:119:Execute failed: java.io.IOException:CreateProcess: "C:\Program Files\Adobe\Adobe Flash Builder Plug-in Beta 2\sdks\4.1\bin\mxmlc.exe" -strict=true -show-actionscript-warnings=true -keep-generated-actionscript=false -use-network=true -target-player=10.0.0 -source-path=C:\projects\MyProject-Flex/ui/trunk/src -library-path+=C:\projects\MyProject -Flex/ui/trunk/libs -output=C:\apache-tomcat-5.5.25/webapps/MyProject/Main.swf C:\projects\MyProject-Flex/ui/trunk/src/Main.mxml error=3
    Line 119 in build.xml is the starting of the following:
            <exec executable="${FLEX_HOME}/bin/mxmlc.exe">
                <arg line="-strict=true" />
                <arg line="-show-actionscript-warnings=true" />
                <arg line="-keep-generated-actionscript=false" />
                <arg line="-use-network=true" />
                <arg line="-target-player=10.0.0" />
                <arg line="-source-path=${sourceDirUI}" />
                <arg line="-library-path+=${FLEX_BASE_DIR}/ui/trunk/libs" />
                <arg line="-output=${webDirUI}/Main.swf" />
                <arg line="${sourceDirUI}/Main.mxml" />
            </exec>
    Any idea what's going on and what error=3 stands for?
    The same ant build.xml has been working with sdk 4.1.0.15735
    Thanks.

    @Jason Villmer,
    I believe the issue you're describing is http://bugs.adobe.com/jira/browse/SDK-26940.
    There is a workaround listed in the bug report which should work (based on my testing), or you could probably set the direction and layoutDirection styles globally using a Style block.
    Peter

  • ShObjIdl.h compile error when including Photoshop SDK header?

    I develop photoshop plugins on both Mac 10.6 and Windows 7, now my code has been built and run successfully on Mac, but on Windows there are curious compile errors in a file "ShObjIdl.h", this is a Windows SDK header file. ( my VC++ version is 2010 ). It seems including some adobe SDK header file will cause the error. Is there someone who had met this? I guess some macro define conflicts.

    Sophie
    did your program work ok under 10.3.6? Is it just Tiger that gives the problem?
    I have not used xmlrpc but I have used Pro*C on OS X with no probelms.
    Where did the xmlrpc.h you are using come from? I could not find it on OS X on either Tiger or Panther. However I do find an xmlrpc.cp and a make file so I assume you would include a shared library from it in the make file for your program to be able to make the xmlrpc calls you need to.
    In general, the include files are in sub directories of /System/Library/Frameworks and it would be worth a grep -r for the declarations you want to include and put the path in the include parameter to proc.
    I hope this info helps.
    Paul

  • How can I read ALL the compilation errors in a DOS window?

    On compilation using a DOS window, if the number of errors exceeds the window size, some of the errors disappear off the top of the window and I cannot read them.
    Is there an effective solution to somehow use scrolling of the DOS window or transfer the compilation errors to a file?

    Hey buddy,
    When I first started programming with Java, I wondered the same thing. I have the very best solution for you. This one is waaay easy!!!!
    There is a text editor which will not only color code your text for you, but you can easily configure it to give you the compiler /DOS output for Java. Just go to this website and download the program. Enjoy!
    http://www.textpad.com/

  • Adobe AIR 3.9 beta sdk&compiler with ios 7 for windows download broken

    Hi,
    I couldn't download:
    Download AIR 3.9 SDK & Compiler for Windows — with iOS7 support (ZIP, 204 MB)
    from http://labs.adobe.com/downloads/air.html
    The download gets to about 56mb or so and then cuts out. All other downloads work fine, just this one stops. I think that maybe the file was not uploaded right.
    Cheers,
    Grant

    Hi,
    The links is active and working, looks like some network issue at your end, please try again.
    -Thanks
    Pahup

  • Application builder Error: Windows SDK function returned an error. (Error code -12) *** End Error Report

     try to create an installer in Labview 8.6.  The build fail and I got this message.
    CDK_CreateNewWizard_Invoke.vi.ProxyCaller >> CDK_CreateNewWizard_Invoke.vi >> CDK_InstallerConfiguration_Editor.vi 
    >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> CDK_Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi
    Loading product deployment information
    Loading product deployment information
    Loading product deployment information
    Loading product deployment information
    Adding files to installer
    Done adding files
    Preparing to build deployment
    Copying products from distributions
    Copying distribution 'NI LabVIEW 8.6.1 Datalogging and Supervisory Control Module' from: 
    D:\software\application\LabView\NI.LABVIEW\NI-Labview 8.6.1 DSC Module\ to: C:\Documents and Settings\Lidaoling\桌面
    \Builds\generate waveform\My Installer\
    Building deployment
    Copying setup files
    Setting merged database information
    Setting product information
    Setting developer part information
    Starting final build
    Validating...
    Copying files...
    Updating files...
    Creating merged database...
    *** Error: Windows SDK function returned an error. (Error code -12)
    *** End Error Report
    Done building deployment 

    Solution

  • Adding Engine component causes: "Compiler errors occurred when generating a Windows Forms wrapper...​"

    I got this error when I tried to drop a TestStand Engine class onto my main form in VisualStudio.NET.
    Compiler errors occurred when generating a Windows Forms wrapper for ActiveX control 'AxNationalInstruments.TestStand.Interop.API'
    The error message went on to say that it saved the source in ./obj/AxInterop.TS.cs so I added that to the project. When I try to build it, I get this error:
    The designer must create an instance of type 'System.Windows.Forms.AxHost' but it cannot because the type is declared as abstract.
    I am using TestStand 3.0 evaluation, Version 7.1.3088 of Microsoft Development Environment 2003, and .NET Framework 1.1 Version 1.1.4322 SP1.
    Is this aximp.exe problem?
    Can someone suggest how to fix this?
    Thanks,
    Jeff

    TestStand installs pre-built interop wrappers for the TestStand engine and all the TestStand UserInterface controls. You can find them in \API\DotNet\Assemblies\CurrentVersion\.
    However, the best thing to do is usually to add the ApplicationMgr control to your .NET form and then call form.axApplicationMgr1.GetEngine() to get the engine. Doing this automatically adds references to the interop assemblies to your project. You can find this control in the TestStand tab of your .NET toolbox when you have a form active.
    Ideally, you should start with the .NET simple operator interface examples which are in \OperatorInterfaces\NI\Simple\CSharp\ and \OperatorInterfaces\NI\Simple\VB.Net\
    - James

  • "Compiler errors occurred when generating a Windows Forms wrapper...

    "Compiler errors occurred when generating a Windows Forms wrapper for ActiveX control 'AxNationalInstruments.TestStand.Interop.API'."

    Sorry, I accidentally hit enter as I was composing this post. Please see my full post at:
    http://forums.ni.com/ni/board/message?board.id=330&message.id=5633

  • Error when attempting to install Windows SDK 7.1

    I have not been able to install Windows SDK 7.1 (the machine runs Win 7 Pro x64).
    The error message shows up in a message box as:
    "SDKSetup encountered an error: Input string was not in a correct format."
    By browsing to my %TEMP% directory, I find log files as mentioned at http://stackoverflow.com/questions/1901279/windows-7-sdk-installation-failure
    Sample content:
    16:52:06 Friday, 06 February 2015: -------------------------------------------------------------------------------------------------
    16:52:06 Friday, 06 February 2015: [SDKSetup:Info] Begin
    16:52:06 Friday, 06 February 2015: [SDKSetup:Info] SDKSetup Version 7.1.7600.30111
    16:52:09 Friday, 06 February 2015: [SDKSetup:Info] Beginning download of file http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab to C:\Users\[username]\AppData\Local\Temp\SDKSetup\SDKSetup.cab
    16:52:09 Friday, 06 February 2015: [SDKSetup:Info] Successfully downloaded the file http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup\SDKSetup.cab to C:\Users\[username]\AppData\Local\Temp\SDKSetup\SDKSetup.cab
    16:52:09 Friday, 06 February 2015: [SDKSetup:Error]: Input string was not in a correct format. Stack:    at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)       at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)       at System.String.System.IConvertible.ToInt32(IFormatProvider provider)       at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)       at System.Data.XSDSchema.HandleElementColumn(XmlSchemaElement elem, DataTable table, Boolean isBase)       at System.Data.XSDSchema.HandleParticle(XmlSchemaParticle pt, DataTable table, ArrayList tableChildren, Boolean isBase)       at System.Data.XSDSchema.HandleComplexType(XmlSchemaComplexType ct, DataTable table, ArrayList tableChildren, Boolean isNillable)       at System.Data.XSDSchema.InstantiateTable(XmlSchemaElement node, XmlSchemaComplexType typeNode, Boolean isRef)       at System.Data.XSDSchema.HandleTable(XmlSchemaElement node)       at System.Data.XSDSchema.HandleParticle(XmlSchemaParticle pt, DataTable table, ArrayList tableChildren, Boolean isBase)       at System.Data.XSDSchema.HandleComplexType(XmlSchemaComplexType ct, DataTable table, ArrayList tableChildren, Boolean isNillable)       at System.Data.XSDSchema.InstantiateTable(XmlSchemaElement node, XmlSchemaComplexType typeNode, Boolean isRef)       at System.Data.XSDSchema.LoadSchema(XmlSchemaSet schemaSet, DataSet ds)       at System.Data.DataSet.ReadXmlSchema(XmlReader reader, Boolean denyResolving)       at SDKSetup.SDKSetupDll.LoadConfiguration()       at SDKSetup.SDKSetupDll.Init(List`1 sourceFileLocations, Boolean quiet, Boolean showHiddenFeatures, InstallModeType installMode, List`1 featureParams, List`1 productParams)       at SDKSetup.SDKSetupDll.RunSetup(List`1 sourceFileLocations, String logFileName, String loggingSwitches, Boolean quiet, Boolean showHiddenFeatures, InstallModeType installMode, List`1 featureParams, List`1 productParams, List`1 DisabledFeatures, Boolean sqmOptInFromCmd, String installLocation, String installLocationSamples, Boolean ignoreDependentProducts)
    16:52:12 Friday, 06 February 2015: [SDKSetup:Info] End
    16:52:12 Friday, 06 February 2015: -------------------------------------------------------------------------------------------------
    I tried both the web installer and the ISO image file (the x64 version), with the same result, except that the ISO file omits the downloading step in the log file. 
    Note:
    I have one version of the Microsoft Visual C++ 2005 Redistributable (x64) installed, and one version of the Microsoft Visual C++ 2008 Redistributable (x64) installed.  No 2010 (or later) version — see http://blogs.msdn.com/b/vsnetsetup/archive/2012/03/14/unable-to-install-microsoft-windows-sdk-for-windows-7-and-net-framework-4.aspx. 
    I then noticed it is required to have Microsoft .NET Framework installed, so I installed version 4.5.2. 
    This did not affect the results.  I got the same error message, and the same logged events. 
    Clean boot did not resolve this.  Repairing the .NET Framework installation did not resolve this.
    Thanks for any guidance,
       DIV

    You need to know what you have already.
    Open Disk Utility, go to the First Aid tab, take a screenshot of the lefthand sidebar.
    I won't advise on partitioning until I know what is there. (The BCA page where you create the partition will not show whether there is another, it will just fail if there is)

  • An integrity error during the installation of windows sdk 8.1

    Hello, I'm having troubles in intalling the windows sdk 8.1 here is what I'm facing here and my connection is good:

    Hi,
    thanks to the steps of the webpage you have posted I´ve seen the code of the error in the log of my computer:
    error 0x80073D0A: when trying to install the package XXXXXXXX, the system couldn´t register the extension windows.repositoryExtension owing to the next error: The package couldn´t be installed because the service "Firewall of Windows" is
    not running. Enable the service "Firewall of Windows" and try again.
    It matches with one of the codes of your link.
    I think this question should be fixed. I (and I suppose much more people) already have a Firewall different than Microsofts´one and I want to have access to the Windows Store running only my "third-part firewall". Having two Firewalls running is a waste
    of resources.
    Regards.

  • Error: Windows SDK function returned an error. (Error code -12)

    I receive this error when attempting to build an installer for my Labview application.
    CDK_Item_OnDoProperties.vi.ProxyCaller >> CDK_Item_OnDoProperties.vi >> CDK_InstallerConfiguration_Editor.vi >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> CDK_Engine_Build.vi >> NI_MDF.lvlib:MDFDistCopyList_CopyItem.vi
    Loading product deployment information
    Loading product deployment information
    Adding files to installer
    Done adding files
    Preparing to build deployment
    Copying products from distributions
    Copying distribution 'NI-DAQ 8.0.1' from: D:\ to: C:\DARTS\ATS_TE_Project\DARTS_NI-DAQ_HP3561A_Dynamic_Signal_Analyzer\Installer\
    *** Error: Windows SDK function returned an error. (Error code -12)
    The system cannot find the file specified.
    *** End Error Report
    Done building deployment

    I was able to get the install builder to build an installer for my
    Application today 6/6/07. These are the steps I performed along with good amounts of trail and error.
    1) I attempted to re-install the NI-DAQ 8.0.1 drivers however I didn't
    perform this because it said it remove NI products which I didn't want
    removed. But it didn't tell me what it would remove.
    2) Instead, I copied the entire NI-DAQ 8.0.1 distribution to a directory on my hard drive.
    3) I set the NI-DAQ 8.3 install build type to FULL in install builder.
    4) In install builder when prompted for the components from the NI-DAQ
    8.0.1 I browsed to the NI-DAQ 8.0.1 directory on the hard drive and
    also un-checked the cache box.
    5) It through another error this time saying it couldn't find
    C:\NI-DAQ8_0_1\8.0.1\Products\LabVIEW_Broker71\LVBroker71Deu.mst (and,
    LVBroker71Fra.mst, LVBroker71jpn.mst, LVBroker1071Deu,
    LVBroker1071Fra.mst, LVBroker1071jpn.mst). It also could not find the
    LVBroker1071 files in the
    C:\NI-DAQ8_0_1\8.0.1\Products\LabVIEW_Broker1071 directory either.
    6) I performed a search for these files and they did not exist in the
    NI-DAQ 8.0.1 directory on my hard drive or the 8.0.1 CD I have.
    7) These files DID exist in my NI-DAQ 8.3 directory located on my hard drive.
    8) I copied the LVBrokerxxxx.mst (listed in 5 above) files from the
    NI-DAQ 8.3 directory on my hard drive to the corresponding location in
    the NI-8.0.1 directory on my hard drive.
    9) This time when I rebuilt the installer for my application the build was successful.
    Additional information:
    When I built my application I only selected English for language
    support. In Install builder in "Dialog Information I also selected
    English.
    I haven't attempted to try the installer on my target yet so I'm not
    quite sure how successful I really was but at least I have a installer.
    Let me know if this also works for you.
    Rich...

  • AYUDA me sale --Error code-12-- Windows SDK function returned an erro

    Buenas compañeros, necesito una super ayuda ya que quiero instalar en mi laptop q tiene wind7 y me sale este error:
    Error:  Windows SDK function returned an error (Error code-12)
    End Error Report
    Por favor ayudemen con alguna solucion para poder instalar el Labview 2008 8.6, ya que necesito hacer mi tesis.
    Les estare agradecido por todo, estamos en contacto y gracias

    Try posting in english here
    Translation 
    I need a super help because I want to install on my laptop has wind7 q and I get this error:
    Error: Windows SDK function returned an error (Error code-12)
    End Error Report
    Please help me with some solution to install the Labview 2008 8.6, and I need to do my thesis.

  • Compile error: Eclipse confuses Type with Window.Type

    Hi there,
    I'm using Eclipse Luna (Version: Luna Service Release 1a (4.4.1)) and JDK 1.8.0_31.
    Our projects are build with Maven. Maven build works without any problems and also our Netbeans users do not have any issues.
    But Eclipse shows compile errors and it seems, that it confuses the generic Java Type with java.awt.Window.Type which was introduced with Java 1.7.
    I created the following minimized example, which reproduces the compile problem.
    This class creates a instance of MyDialog which uses the generic Java Type:
    public class TypeTest {
    public static void main(String[] args) {
    String str = new String();
    MyDialog<String> dialog = new MyDialog<String>();
    String x = dialog.getValue(str);
    And this is the implementation of the dialog of type Type:
    import javax.swing.JDialog;
    public class MyDialog<Type> extends JDialog {
    public MyDialog() {
    super();
    public Type getValue(Type value) {
    return value;
    Eclipse persists that for getValue in MyDialog the Type is a Window.Type, which is wrong!
    This is the compile error message:
    The method getValue(Window.Type) in the type MyDialog<String> is not applicable for the arguments (String)
    Since it works without any issues for the maven build and the netbeans users, it seems to me that this is an Eclipse issue or bug? Or can someone give me a hint, how this can be solved?
    Thanks and kind regards,
    Daniel

    I just found that this question has never been answered, and from a cursory look I wasn't actually sure if this is a bug or not.
    Turns out I already wrote a little "essay" on what seems to be the same issue, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=396378#c6
    Bottom line: JLS doesn't seem to specify how to interpret / handle a conflict between an inherited member type and a same-named type parameter.
    This seems to impliy that both implementations, javac and ecj - although different - are both valid wrt JLS.

Maybe you are looking for

  • How can you create a pdf report to attach to an email?

    I have a need to create a PDF report with graphics and signature and somehow attached the PDF document to and email to send out. This is all hopefully done in my APEX application. Has anyone done anything similar?

  • Infinite Loop Question - should be simple

    Ok I think I have a simple question to ask here. I am attempting to create a program that creates an infinite loop for multiples of two... ex: 2, 4, 8, 16, etc... The math behind it is simple, x^2 when x = 2. I then want the result of each equation t

  • 'contains' query  clause in GET_SEARCH_RESULTS

    Hi, I'm using UCM & Oracle DB 11g and I would like to do invoke GET_SEARCH_RESULT service with a query string like this; "dDocTitle <contains> `alle*`". If I run this query I obtainn the error: "Unable to find parsed elements with engine label 'DATAB

  • Printer not working with Airport for Win XP

    I installed an Airport Extreme and am able to successfully print with my Macbook pro, but can't get my Windows PC to find the printer at all. The Windows XP PC is connected to the Airport with an ethernet cable. Any suggestions?

  • [solved] Execute permissions on directory

    Well this is a bit embarrassing as well as confusing, but anyway here's the question. I had always heard that the execute permission was required to cd into a directory, but recently someone demonstrated to me that it's possible to cd into the direct