How to use install obj file in tuxedo for win2000

here i got some compiled tuxedo service files,(*.obj),how can i install
these service in my tuxedo system on win2000?

yeah,thanks.:)
"Peter Holditch" <[email protected]> дÈëÏûÏ¢ÐÂÎÅ
:[email protected]..
fish,
So you compiled a C or C++ service function with
cl /c [... other options] myservice.c
and now you have myservice.obj?
In that case, use
buildserver -f myservice.obj [ .. other options ] -o myserver.exe
to generate a Tuxedo server called myserver.exe
Regards,
Peter.
fish wrote:
here i got some compiled tuxedo service files,(*.obj),how can i install
these service in my tuxedo system on win2000?

Similar Messages

  • How do I install a file named "firefox_plugin_2.1.1.0720.fzip" ?

    Hi,
    I am trying to install a firefox extension from Foxit software (PDF reader) but firefox always comes back and says it is unable to start anti-virus program
    Then when I get past that the file: how do I install a file named "firefox_plugin_2.1.1.0720.fzip" will not unzip or load into firefox. How do I get the program/extension to load?
    Thank you
    Jsteff
    [email protected]

    Hi and thanks for getting back to me.
    Normally I am able to do most things with Windows and most programs..
    However, I am not able to open the file with Firefox as it wants me to tell it which program to use.
    I have the file on my desktop, but Notepad will not open it.
    Firefox also asks me which program to use when Firefox is asking me "what should firefox do with this file?" That happens after I have gone to Firefox/File/Open file and it gives me the question of what do you want Firefos to do with this file.
    The only choices are to open it or save it.
    My problem is I do not know which program to select to open it.
    So which program should I use?
    Very sorry and thank you again.
    Jsteff
    [email protected]

  • [Solved] Question on how to use (install -d...) in PKGBUILDs

    Been looking in on how to use 'install' in PKGBUILDS.  I've looked at the PKGBUILD entries in the wiki and there isn't any mention on this (possibly I missed it??).  I notice that these are in Makefiles and looked on the net but maybe my google-fu is lacking at the moment.  I've got that:
    install -d ${pkgdir}/opt
    Will create an /opt directory in the pkg directory, and that:
    install -m 755 ${srcdir}/${pkgname}-${pkgver}/file ${pkgdir}/opt/
    Will install that file in the pkg dir.  So I have a couple questions:
    1) How do I install an entire directory into the pkg dir?
    2) How do I create a link to /usr/bin?
    2) What else is good to know if I have to manually install files/folders???
    Here's the current PKGBUILD I'm working on:
    # Contributor: Gen2ly <[email protected]>
    pkgname=liveusb-creator
    pkgver=3.7
    pkgrel=1
    pkgdesc="Create LiveUSB's from a Linux install image"
    arch=('any')
    url="https://fedorahosted.org/liveusb-creator/"
    license=('GPL2')
    makedepends=()
    depends=('isomd5sum' 'python' 'pyqt' 'p7zip' 'syslinux')
    source=(https://fedorahosted.org/releases/l/i/liveusb-creator/$pkgname-$pkgver.tar.bz2)
    build() {
    # Just installing in /opt, would /usr/share/python-support be better?
    install -d ${pkgdir}/opt
    # Install files
    install -m 755 ${srcdir}/${pkgname}-${pkgver} ${pkgdir}/opt
    Any suggestions?
    Last edited by Gen2ly (2009-08-21 09:35:35)

    Didn't realize I asked such a complicated question.
    I thought that install was a built in command of 'make' that's why I asked but I just found out it has a man page.  It's pretty technical though so I'd wouldn't mind if a someone would help me with basic usage.
    Yes, I considered using 'ln' but I've read before that PKGBUILDs should use install instead of cp or mv.  Thinking now that this is not the case with  'ln'???
    For installing an entire folder I looked at the install man page that says that -d "treat(s) all arguments as directory names" so would:
    install -m 755 ${srcdir}/${pkgname}-${pkgver}/folder ${pkgdir}/opt/
    Copy a folder and it's contents?  Newbie question, I know, but first time using install, would appreciate any help.
    Last edited by Gen2ly (2009-08-21 07:02:48)

  • How to use multiple video files??

    hi all,
    i am using flex 4 ...
    now i have designed video player..
    i used single flv file for execution..
    how to use more flv files in tis program???
    i have included program also..
    can any one reply for this...
    thanks in advance...
    regards,
    saran r
    video.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init()" height="700" >
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.UIComponent;
                import flash.events.NetStatusEvent;
                import flash.media.Video;
                import flash.net.NetConnection;
                import flash.net.NetStream;
                private var nc:NetConnection;
                private var stream:NetStream;
                public var videoDuration:Number;
                public var nsClient:Object = new Object();
                private var videoComp:Video = new Video();
                private var meta:Object = new Object();
                private var timer:Timer = new Timer(100);
                private var uiComp:UIComponent = new UIComponent();
                private function init():void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    nc.connect("rtmp://localhost/saran");                 
                    this.addElement(uiComp);
                    uiComp.addChild(videoComp);
                    timer.addEventListener(TimerEvent.TIMER,timerHandler);
                    timer.start();
                private function netStatusHandler(event:NetStatusEvent):void
                    trace("Code ===>>>    "+event.info.code);
                    if(event.info.code == "NetConnection.Connect.Success")
                        connectStream(nc);
                private function connectStream(nc:NetConnection):void {
                    stream = new NetStream(nc);
                    videoComp.attachNetStream(stream);
                    stream.play("Terminator")
                    // stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    stream.client = nsClient//new CustomClient();
                    nsClient.onMetaData = metadataHandler;
                    trace("stream ===>>>    "+stream.currentFPS);
                    //responder = new Responder(onResult);
                    // nc.call("getStreamLength", responder, "bikes" );
                private function metadataHandler(metadataObj:Object):void
                    meta = metadataObj;
                    videoComp.width = metadataObj.width;
                    videoComp.height = metadataObj.height;
                    //positionBar.move(videoComp.x, ((videoComp.y + videoComp.height)+20));
                    //positionBar.width = videoComp.width;
                    trace("Duration ====>>>>   "+meta.duration);
                private function timerHandler(event:TimerEvent):void
                    //trace("Timer called.........."+stream.time);
                    //positionBar.setProgress(stream.time, meta.duration);
            ]]>
        </fx:Script>
    </s:Application>

    I have the same question but I am using two pc's

  • How to use a key file in the FTP Task using and SSL connection

    In the past I have used this code to set the FTP pass word in an FTP component task in SSIS.
    Does anyone know how to use a Key file in an SSL connection to download a file from an FTP site?  If not can you tell me where I can get the C# code examples to learn how to create a script task or if there is another way in SSIS to download large files
    from an SSL FTP site?  Thank you for any help offered.
    public void Main()
    ConnectionManager FTPConn;
    FTPConn = Dts.Connections["FTPServer"];
    FTPConn.Properties["ServerPassword"].SetValue(FTPConn, Dts.Variables["FTPPassword"].Value);
    Dts.TaskResult = (int)ScriptResults.Success;
    Antonio

    You can use SFTP for this.
    This is a way of implementing SFTP in SSIS using standard tasks 
    http://visakhm.blogspot.in/2012/12/implementing-dynamic-secure-ftp-process.html
    also see
    http://blog.goanywheremft.com/2011/10/20/sftp-ftps-secure-ftp-transfers/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to use my as3 file in flex

    hi, I am new in flex and want to divert into flex. How to  use my as3 file into flex. Is there any sample tutor . so, that I could learn fast.

    Please clarify. Is this .as file a class you previously used as a complonentcomponent you now wish to use as the main application?
    If the .as file just has variables and functions you wish to access from your Flex app, use:
    include "subfolder1/subfolder2/etc/MyASFile.as";
    If you want to use classes from the file, do this:
    import subfolder1.subfolder2.etc.MyClassName;
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • How can i compress a file to QT for web use?

    how can i compress a file to QT for web use?

    Shane, in the ProApps site, has a couple of applets (droplets?) that have the settings for doing just that.
    www.proapptips.com
    register (its free) and then head to the download section.
    cheers,
    x

  • How Do I Install Textures in Photoshop CS6 for Windows

    How Do I Install Textures in Photoshop CS6 for Windows ?

    You can load the textures that you want with texturizer. Under Filter> Filter Gallery> Texture> Texurizer.
    Beside the texture drop down, click Load texture to use your own files (has to be .psd files)

  • How do i Install the Software Update Server for Windows 7?

    How do i Install the Software Update Server for Windows 7? I get an error saying: Can't Install the Software because it is not currently available from the Software Update server.
    I downloaded the software so How do I install it?
    Do I install it all over again or when I have windows open?
    I am using Bootcamp.

    Back up your system drive completely. If you have no backup plan in place, now would be a good time to start. You can use CarbonCopyCloner to make a complete, bootable backup of your system on another drive or volume. After you have done this: download the combo update using the link supplied by Niel and run the installer.

  • How do I Install or re-buy iPhoto for my Mac when the app can't lunch?

    How do I Install or re-buy iPhoto for my Mac when the app can't lunch?
    The App Store does not let me buy iPhoto from scratch nor update it. I used the original Applications Install DVD to re-install iPhoto, and the icon appeared but the app could not be used because iPhoto 2.1 is not compatible with the Mac operating system OS X (10.9.2)? I thried to update manually through apple support, and a notification of unauthorized licence did not let it happen.  What is this? What happened with my iPhoto? What can I do to solve this and safe my photos? I'm willing to pay for it, but even the app store say that it can't becuase it was suppousely bought through another account? Please help!

    Not launching is probablay not a software issue - it is probably a data issue
    No - iPhoto 2 version 2.1 is not compatible with Mavericks - or pretty much anything else - you need to purchase iPhoto '11 version 9.5.x from the App store
    LN

  • How to open a zip-file in Bridge for PC?

    How to open a zip-file in Bridge for PC?

    I think it's built in, just double click on it and it should open with Archive Utility. I dunno, maybe Unrar X might work for you>
    JB

  • HT4863 How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    You can't change it, and I suspect few email providers would allow a file that big.  Consider uploading it to a service like Dropbox, then email the link allowing the recipient to download it.

  • How do use my ITunes balance to pay for Apps

    How do use my ITunes balance to pay for Apps?

    You just buy what you want.  If you have a credit (balance), it is automatically used before you are billed (if you run over your balance).
    How to manage unused iTunes Gift Card and Gift Certificate balances
    "Each time you purchase content, iTunes will deduct funds from the credit until it's depleted."

  • What file name is for the driver of gpib-usb-b?and how to add the driver file to vb in win2000??thanks

    what file name is for the driver of gpib-usb-b?and how to add the driver file to vb in win2000??thanks

    Hi,
    Multiple files are required for the proer fnctioning of any of our GPIB products. Unfortunatly the installation is not as simple as copying a single file over. If you wish to make the installer silent, i believe this is entirely possible in a fashion similar to the details given at http://digital.ni.com/public.nsf/websearch/0730A66245E6808086256CA8006E2183?OpenDocument.
    Hope this helps out!
    Best Regards,
    Aaron K.
    Application Engineer
    National Instruments

  • How to use same Data Type and Length for two fields

    How to use same data type and length for two fields when using 'FOR ALL ENTRIES IN' in a select statement? For instance the select queries are :
    SELECT bukrs gjahr belnr lifnr budat bldat zlspr dmbtr waers shkzg
    FROM bsik
    INTO TABLE it_bsik
    WHERE bukrs = p_bukrs
    AND lifnr IN s_lifnr.
    IF it_bsik IS NOT INITIAL.
    SELECT belnr gjahr awkey awtyp
    FROM bkpf
    INTO TABLE it_bkpf
    FOR ALL ENTRIES IN it_bsik
    WHERE belnr = it_bsik-belnr
    AND gjahr = it_bsik-gjahr.
    IF it_bkpf IS NOT INITIAL.
    SELECT belnr gjahr lifnr xblnr
    FROM rbkp
    INTO TABLE it_rbkp
    FOR ALL ENTRIES IN it_bkpf
    WHERE belnr = it_bkpf-awkey+0(10)
    AND gjahr = it_bkpf-awkey+10(4).
    ENDIF.
    ENDIF.
    Here it gives an error in the 3rd select query that 'When you use the addition "FOR ALL ENTRIES IN itab", the fields "GJAHR" and "IT_BKPF2-AWKEY+10(4)" must have the same type and the same length.'
    Kindly clarify.

    Hi Saurabh,
    Please see the example code that I have developed for you. It will help you solve the problem.
    REPORT ZTEST_3 .
    tables : BKPF.
    data : begin of it_bkpf occurs 1,
             belnr type RE_BELNR,
             awkey type awkey,
             awtyp type awtyp,
             gjahr type GJAHR,
           end of it_bkpf.
    data : begin of it_bkpf1 occurs 1,
             belnr type RE_BELNR,
             awkey type gjahr,              " change the data type
             awtyp type awtyp,
             gjahr type GJAHR,
           end of it_bkpf1.
    data : begin of it_rbkp occurs 1,
             belnr type BELNR_D,
             gjahr type gjahr,
             lifnr type LIFRE,
             xblnr type XBLNR,
           end of it_rbkp.
    select belnr
           awkey
           awtyp
           gjahr
           from bkpf
           into table it_bkpf
           where BUKRS = 'TELH'.
    loop at it_bkpf.
    it_bkpf1-belnr = it_bkpf-belnr.
    it_bkpf1-awkey = it_bkpf-awkey+10(4).           "Here only append the required length.
    it_bkpf1-awtyp = it_bkpf-awtyp.
    it_bkpf1-gjahr = it_bkpf-gjahr.
    append it_bkpf1.
    clear it_bkpf1.
    endloop.
    select  belnr
            gjahr
            lifnr
            xblnr
            from RBKP
            into table it_rbkp
            for all entries in it_bkpf1
            where belnr = it_bkpf1-belnr
    This is just an example. Change the fields according to your requirement.
    Regards
    Abhii
    Edited by: Abhii on Mar 9, 2011 9:08 AM

Maybe you are looking for

  • Dynamic Text Flash Pro

    Hi, so i'm new to Flash but I am slowly learning. The thing I need to do my not be possible but if it is I would love to know how. So... I'm creating a quiz on Flash, and on my question screen, I have an avatar that I want animated but I cant have it

  • Error 1430 While Building Application

    I receive the following error when trying to build an applications Build Specifications: Error 1430 occurred at Create Folder in Create Directory Recursive.vi->AB_Destination.lvclass:Create_Destination.vi->AB_Build.lvclass:Create_Destinations.vi->AB_

  • Japanese input - keyboard layout

    i am fairly new mac user. i bought this imac in May and set it up, so that i can type in japanese. it was working fine until last weekend. usually, i just use english keyboard layout to type in japanse (type "sushi" to get sushi in japanese), but now

  • Push not working

    I quit getting push notifications on email on both my iphone and ipad. I can fetch but don't know why badge says zero when I have several emails. If I open up mail and the exit the badge shows the correct number of unread emails

  • Closed fence Algorithm

    Hi guys, i'm trying to find an Algorithm to solve the problem of closed fence.. a closed fence is a sequence of points of cordinates xi,yi in the plan in counter clockwise direction.. a valid fence is one that has no intersections: it means that each