Crazy preverifier bug using forte

I boot my Windows 98SE machine and execute my test Midlet from forte with total success, however the second time I try to execute it I receive a "Cannot start preverifier" error. If I reboot my machine it works again, but only the one time. It is almost like the preverfier app is not closing itself down when it has verified the class first time. Can anyone help remedy this problem?
Any help very much appreciated
Mat

In order to get it work, I have to press F6 a few times. I believe that it's something to do with forte not waiting for the compiler to finish before running the verifier.

Similar Messages

  • Using Forte 3.0 to deploy web app to iPlanet Web Server

    Is anyone familiar with using Forte 3.0 to develop/deploy a web application to an iPlanet Server?
    All I need is a simple walkthrough to create/deploy a "Hello World" app (it could be just a JSP) or a link to some document that covers this topic.
    Thanks

    For anyone who cares
    First make a web module, then make a web application and add the web module you made. When adding it the Mapping field should contain whatever context of the module is. Then deploy the application.

  • Linking applications for Solaris 2.5.1 using Forte C 6

    Hello,
    We still need to provide applications that have to run on 2.5.1. Is there a way to compile C code using Forte C 6 on Solaris 7, and deliver executables that successfully run on 2.5.1 ?
    Any help would be appreciated.
    Thanks.
    Yves.

    Ordinarily, the same source files and makefiles that work with C++ 5.0 on Solaris 2.6 should work with C++ 5.3 on Solaris 8.
    You didn't say what you did to "adapt the makefile" when changing compilers and OS versions. If the compiler was installed in the default /opt location on each system, we don't think any makefile change would be required. (You might want to make changes for performance or program organization reasons, but we don't think any changes are required just to repeat a working program build.)
    What happens if you use the original files that worked with C++ 5.0 on Solaris 2.6?
    Are C++ 5.0 and C++ 5.3 are both installed in the same /opt directory? That isn't allowed, and will lead to strange behavior.
    Are you continuing a build using the new compiler and OS in a directory containing old binary files or template cache? When changing OS and compilers, it is safest, but not strictly necessary, to rebuild all your binary files. At a minimum, you must delete the old template cache.
    Are you still using C++ 5.0 in the build process? If so, you must isolate the use of C++ 5.0 and 5.3. The compilers cannot share a template cache, so you must run compiles in different locations.
    Anything beyond these hints will require more support and analysis than we could provide in the Forum. You will probably need to generate a .i file from the compilation and have a support engineer look at it. If you have contract with Sun, please follow the service channel.
    - Rose

  • Delivering applications for Solaris 2.5.1 using Forte C 6

    Is it possible, using Forte C 6 as the development environment, on Solaris 7, to produce applications that will successfully run on Solaris 2.5.1 ?
    Any help will be appreciated.
    Thanks.
    Yves.

    Ordinarily, the same source files and makefiles that work with C++ 5.0 on Solaris 2.6 should work with C++ 5.3 on Solaris 8.
    You didn't say what you did to "adapt the makefile" when changing compilers and OS versions. If the compiler was installed in the default /opt location on each system, we don't think any makefile change would be required. (You might want to make changes for performance or program organization reasons, but we don't think any changes are required just to repeat a working program build.)
    What happens if you use the original files that worked with C++ 5.0 on Solaris 2.6?
    Are C++ 5.0 and C++ 5.3 are both installed in the same /opt directory? That isn't allowed, and will lead to strange behavior.
    Are you continuing a build using the new compiler and OS in a directory containing old binary files or template cache? When changing OS and compilers, it is safest, but not strictly necessary, to rebuild all your binary files. At a minimum, you must delete the old template cache.
    Are you still using C++ 5.0 in the build process? If so, you must isolate the use of C++ 5.0 and 5.3. The compilers cannot share a template cache, so you must run compiles in different locations.
    Anything beyond these hints will require more support and analysis than we could provide in the Forum. You will probably need to generate a .i file from the compilation and have a support engineer look at it. If you have contract with Sun, please follow the service channel.
    - Rose

  • How do you set headers in httpresponse using forte tool code in UDS

    I am attempting to download a file that is generated in forte (its a CSV). When the response gets back to the browser the save box has a cgi.exe type filename. Instead I would like to supply my own, to do this I think you need to set content-disposition header in the response.

    First of all, if you are using Forte Web Enterprise and the standard HTTP library you won't be able to set any header information apart of the content-type. If you are using HTTPSupport library then you can do things like add a header, set the value of a header and so on.
    I guess you are just using Forte Web Enterprise for sending a file back to the user. For doing so, you have to write the content of the file into the request by using something like:
    Response.AssignResponse(TextDataObject);
    Response.ContentType='text/csv';
    Where TextDataObject is an object that holds the content of the CSV file you want to send back to the user.Then you have to set the contenttype for the specific kind of data you are sending: 'application/pdf','text/html','text/xml','image/svg' ... whatever.
    Once the response from the server hits your browser, it has to kick-off an application that has been previously assigned to this specific kind of data, like for instance 'application/pdf' is allways used for kicking-off the adobe acrobat reader. So, if that is not happening, check that at your operating system level.
    Now, if the browser has some problems while deciding which application to use for reading the data that comes in the response then it will display the save box you are talking about. There is no way Forte can help since this is a client machine related issue.
    Hope this helps....

  • Re: Mail Program using FORTE

    Hi Khatil,
    You should write "C" wrapper class which inturn calls MAPI send mail from
    mapi32.lib, that function you call from forte.
    For further detail information you should refer Integrating with external
    systems
    hope this helps
    bye
    Ashok Segu
    IBC
    Raaman Subbiah wrote:
    Dear Friends,
    Can anyone suggest me, how to write a mail program using forte:
    The question is, From Forte Application, we have to send a message via
    mail. e.g., to [email protected]
    Always thanks,
    Khatil
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    The easiest way to send e-mail from Forte is using ExternalConnection class
    - no "C" wrappering required. Simply, just use SMTP. It is very easy to
    implement and because it could be written in Forte you get all the
    advantages that come with it.
    On Forte -users list look for mail that I send a few weeks ago about SMTP
    email client.
    If you can not fidnd it let me know.
    Hope this helps.
    Dariusz Rakowicz
    Consultant
    BORN Information Services (http://www.born.com)
    8101 E. Prentice Ave, Suite 310
    Englewood, CO 80111
    303-846-8273
    [email protected]
    -----Original Message-----
    From: ashok segu [SMTP:[email protected]]
    Sent: Thursday, September 03, 1998 8:15 AM
    To: Raaman Subbiah
    Cc: [email protected]
    Subject: Re: Mail Program using FORTE
    Hi Khatil,
    You should write "C" wrapper class which inturn calls MAPI send mail from
    mapi32.lib, that function you call from forte.
    For further detail information you should refer Integrating with external
    systems
    hope this helps
    bye
    Ashok Segu
    IBC
    Raaman Subbiah wrote:
    Dear Friends,
    Can anyone suggest me, how to write a mail program using forte:
    The question is, From Forte Application, we have to send a message via
    mail. e.g., to [email protected]
    Always thanks,
    Khatil
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Prototype using Forte

    Hi Netters,
    Has anybody developed a prototype of your application usnig Forte? If
    so, I would like to know the goods and bads of selecting Forte to
    develop the prototype.
    We are debating between Forte and VB for our Prototype. We want to be
    able to send a copy of the prototype on disk(s) to customers for them to
    install it on their PC and run them.
    Any suggestions will also be helpful.
    Thanks
    Venkat J Kodumudi
    Lead Systems Engineer - PageNet
    (972) 985-2451
    Internet: [email protected]

    from below:
    If a primary requirement of your prototype is the ability to ship the
    prototype to customers for review, I would suggest that Forte is not your
    best choice - your customers would need the Forte runtime environment to run
    the application. There are alternatives however. Another alternative to get around this concern is an approach we've used for several
    forte projects successfully. We make use of a very inexpensive Lotus ScreenCam
    product which allows us to put an executable on the network for user browsing
    when they have the chance. This executable is generated using Lotus ScreenCam
    which captures basically a movie of whatever you want to run. For example, we
    run the forte prototype, even use a microphone to narrate, and then stop it
    and either send the executable or movie through the internet to people or
    make it available to the audience by diskette or by placing it somewhere they
    can access it from. Its a pretty nifty package which gives the user
    speed up and slow down and replay options.
    Secondarily, for thoise interested we have a White Paper on Prototyping
    do's and don'ts that we have provided. Contact me if this word doc would be
    of interest and I will uuencode and send it out.
    Len
    From: "ANDERSON Bruce (SHINET01) (MSMail)" <[email protected]>
    We have just finished a Forte-based prototype, and the effort was a raging
    success.
    The purpose, goals, and expected benefits of a prototyping effort should
    always drive selection of the development tool.
    If you are planning to develop the final application in Forte, the answer is
    YES! Develop your prototype in Forte. The lessons learned during that
    first effort will be invaluable as you move into development of the final
    system.
    If you are using the prototype effort to compare the differences between
    Forte and Visual Basic, the answer is yes again. Not only will you be able
    to measure the differences in an application developed with the two tools,
    but you will have a better understanding of the relative levels of effort,
    quality, reusability, etc.
    On the other hand if your intention is to whip up a flashy GUI to impress
    your customers, Visual Basic may be the best choice. But remember that if
    the final tool selection has not been made, using the wrong tool may lead to
    unrealistic expectations (good and bad) in terms of price, performance,
    extendibility, etc. You have to deliver on your promises.
    If a primary requirement of your prototype is the ability to ship the
    prototype to customers for review, I would suggest that Forte is not your
    best choice - your customers would need the Forte runtime environment to run
    the application. There are alternatives however. As we've done on our
    project, you could invite your customers to your offices for a visit and
    demonstrate the prototype for them on your equipment. This gives you an
    opportunity to gauge their enthusiasm (or lack thereof) for your product, as
    well as obtaining valuable feedback. Another alternative would be to take
    the application on a "road show", demonstrating the prototype while visiting
    your customers in their offices.
    Bruce Anderson
    Senior Systems Engineer
    MCI Systemhouse
    Forte First Strike Team
    [email protected]
    (310) 403-4997
    From: Venkat Kodumudi[SMTP:[email protected]]
    Sent: Wednesday, October 09, 1996 8:40 AM
    To: 'Forte User Group'
    Subject: Prototype using Forte
    Hi Netters,
    Has anybody developed a prototype of your application usnig Forte? If
    so, I would like to know the goods and bads of selecting Forte to
    develop the prototype.
    We are debating between Forte and VB for our Prototype. We want to be
    able to send a copy of the prototype on disk(s) to customers for them to
    install it on their PC and run them.
    Any suggestions will also be helpful.
    Thanks
    Venkat J Kodumudi
    Lead Systems Engineer - PageNet
    (972) 985-2451
    Internet: [email protected]

  • I customize my paper size and print size and am then viewing a photo on my screen. I print it out and it chops off about 5% of all edges of my original photo on the screen. Why does it do that? It is driving me crazy. I use an Epson Photo 2200 printer.

    I customize my paper size and print size and am then viewing a photo on my screen. I print it out and it chops off about 5% of all edges of my original photo on the screen. Why does it do that? It is driving me crazy. I use an Epson Photo 2200 printer

    What print and paper sizes are you using?  Are you trying to print a borderless print?  Does your printer support borderless for that particular size?  Are you printing to the custom stock size or to a larger stock size?
    OT

  • Strange Linker error using Forte 6

    Hi,
    I am getting an unusual linker error while trying to compile something using Forte 6 update 2. First some backgrond
    We have an internal application currently running on a Solaris 2.6 box. I wish to move it to a Solaris 8 box. The application uses mainly apache, perl and mysql. One of the perl modules used is the old SPGrove module written by James Clark (www.jclark.com), which in turn uses the libsp.a library from the 'sp' distribution by the same author. I can find information on compiling/running 'sp' on O/S versions upto solaris 7 but not 8. Having tried all the available versions of gcc I finally gave up and tried Forte 6.
    Having had problems with applications and dynamic libraries complied with different compilers before I have compiled perl 5.6.1 using Forte 6, I have installed all the required perl modules and I have successfully compiled version 1.3.4 of the 'sp' package.
    The old SGML::SPGrove modules is no longer available and has been replaced by two newer ones, SGML::Grove, which installs fine, and SGML::SPGroveBuilder, which has some C++ code which is linked against the libsp.a library as mentioned above. The module (once certain options have been set to get the correct environment) compiles fine but when I run the test suit I get the following error.
    Can't load 'blib/arch/auto/SGML/SPGroveBuilder/SPGroveBuilder.so' for module SGML::SPGroveBuilder: ld.so.1: /usr/local/bin/perl: fatal: relocation error: file blib/arch/auto/SGML/SPGroveBuilder/SPGroveBuilder.so: symbol __1cG__CrunLvector_copy6Fpv1IIpF11_vpF1_v_v_: referenced symbol not found at /usr/local/lib/perl5/5.6.1/sun4-solaris/DynaLoader.pm line 206.
    The symbol '__1cG__CrunLvector_copy6Fpv1IIpF11_vpF1_v_v_' is contained in libCrun.so in the Forte installation. I have no idea what it is, or why I get the error.
    Sorry to be so long winded, but I wanted to give enough information so that I didnt get 'too many' easy to answer questions about the environment.
    'uname -snrvmapiX' for the system is:
    SunOS atlas 5.8 Generic_108528-13 sun4u sparc SUNW,Ultra-60System = SunOS
    Node = atlas
    Release = 5.8
    KernelID = Generic_108528-13
    Machine = sun4u
    BusType = <unknown>
    Serial = <unknown>
    Users = <unknown>
    OEM# = 0
    Origin# = 1
    NumCPU = 1
    Many thanks.
    Sean Timmins
    Systems Administrator

    Just to clarify, the I get the error during the 'make test' part of the normal perl module build process for installing the SGML::SPGroveBuilder module (perl Makefile.PL; make; make test; make install).
    Perl and SGML::SPGroveBuilder are both complied using Forte 6 update 2. The only difference being that perl (being normal C code) was compiled using the C compiler '/usr/local/SUNWspro/bin/cc' and the module requires the C++ complile '/usr/local/SUNWspro/bin/CC'.
    I have to make minor modifications to Makefile.PL before it will compile at all. These modifications are:
    1) Forcing the C++ compiler as perl will try to use exactly the same binary as was used to compile itself.
    2) Setting a few #define's so that the same ones are used to build the module as were used to build the sp library that is linked in with the module.
    3) Adding the various directories where both libsp.a (yes statically linked, no dynamic one in the sp distribution) and the required header files (all in the sp distribution) are located.
    I have since tried recompiling perl (with Forte 6 update 2) with no dynamicaly loaded libraries and get the same error. I have also found a tiny little patch to OpenSPv1.5pre5 (which is the replacement for the original sp distribution) which allowed me to compile eveything with gcc 3.1, perl, opensp (v1.5pre5) and SGML::SPGroveBuilder, and I get a very similar error at the same stage but a different symbol name.
    I am begining to think that its gone to far and there are too many branching oppertunities where I have made a mistake (I've really tried way way way too many combinations now), or that the SPGroveBuilder module simply has a probelm with the C++ code in it. It has not been updated in some time.
    I am going to try removing everything from the box and start from scratch, patch it to the hilt and try it from the beginning.
    Of course, any flashes of brilliance that come to mind would still be greatly appreciated :-)
    Sean Timmins
    Systems Administrator

  • Urgent: who ever use Forte for java ---thanks a lot

    who ever use forte for jave :
    i have some problems..
    1. how to config forte for jave to import the libs which i have programmed and stored in .jar file.
    2. how to setup the application sever and tomcat in Forte for java.
    3. how to use the EJB(which i have programmed) in forte for java.
    before i use JBuilder and i am quite new to Forte for java
    thanks a lot .

    2. how to setup the application sever and tomcat in Forte for java.Tomcat is built into Forte. Once you create web module, you can configure the tomcat server.
    3. how to use the EJB(which i have programmed) in forte for java.What do you mean with "use". You have to deploy them to your EJB container in order to be able to "use" them.
    If you are looking for support for a specific container:
    I think support for the reference implemenation is already built in.
    And I have seen a module to support Oracle's IAS somewhere on the Forte homepage
    Docs on NetBeans/Forte
    http://www.netbeans.org/about/books/index.html
    http://www.netbeans.org/ide/docs/index.html
    http://forte.sun.com/
    Thomas

  • Swings using FORTE- very urgent

    hi all..
    i want to know is forte is still used to develop swing applications?
    'cz i need to develop swing applications using forte..
    is forte reasonable for developing swings??
    plzz let me know the answers for this as it is very urgent for me..
    waiting for your favourable response..
    plzz mail me to [email protected]
    thanks in advance
    raj

    Forte is fine but the default folder it starts in depends on where it was loaded from. For Windows, the current folder will be the
    %FORTE_HOME%\bin folder or whatever was set in the shortcut.
    Workaround: create a new project and mount a new folder (directory if you like). Then close Forte and make a new Shortcut with the Start In field set to the project's home folder. Use the shortcut to start Forte.

  • Crazy flashing BUG on my screen during compression

    Every time I start a compression I get a crazy flashing bug on screen. I have provided a video if anyone have any idea.
    https://magekfilmworks.box.net/shared/static/46jazyxdz9.mov

    Try running disk utility from safe boot or a system disk.

  • Who uses Forte 3.5 ?

    Hi,
    We want to migrate to Forte 3.5. I would like to know what is your
    experience using Forte 3.5 ? Please send me a brief summary about your
    experience (performance, stability etc.).
    Thanks in advance,
    Zenon Adamek
    Information Services
    Senior Programmer Analyst
    Purolator Courier Ltd.
    Tel: 905 712-1084 ext. 3628
    Fax: 905 712-6709
    E-mail: zadamekpurolator.com

    Hi Mark,
    Thanks a lot for your email.
    It will be interesting for me to know:
    Who else has Forte 3.5 in production ?
    Regards
    Zenon
    -----Original Message-----
    From: Mark Carruthers [SMTP:MarkCafox.com]
    Sent: Friday, April 06, 2001 1:25 PM
    To: ZAdamekpurolator.com
    Cc: forte-userslists.xpedior.com
    Subject: Re: (forte-users) Who uses Forte 3.5 ?
    Hi Zenon,
    We've been using Forte 3.5 and then Forte 3.5 SP1 in development for a few
    months and just started using it in production a week ago. We've had the
    following issues but nothing so far that would make us go back to 3.0.M:
    1) In development, the 'Save before running' option sometimes causes the
    partition workshop to hang. I've raised this with Forte and it will be
    fixed in 3.6. In the meantime, we don't use it and save manually.
    2) We had to upgrade our Solaris 2.6 servers to Motif 2. This is
    documented in Forte Tech Note 12484.
    We initially had concerns that it would stop our Forte 3.0.M environments
    from working because they use Motif 1. However this wasn't a problem as
    Motif 2 also contains the Motif 1 libraries.
    I've also read about other sites having a problem with database
    connections that aren't closed correctly. We haven't seen this problem.
    Regards,
    Mark Carruthers
    20th Century Fox
    "Adamek, Zenon" <ZAdamekpurolator.com> 04/06/01 08:14AM >>>Hi,
    We want to migrate to Forte 3.5. I would like to know what is your
    experience using Forte 3.5 ? Please send me a brief summary about your
    experience (performance, stability etc.).
    Thanks in advance,
    Zenon Adamek
    Information Services
    Senior Programmer Analyst
    Purolator Courier Ltd.
    Tel: 905 712-1084 ext. 3628
    Fax: 905 712-6709
    E-mail: zadamekpurolator.com
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • Using Forte Free Agent newsreader

    Purchased my iMac 27" about a week ago but just opened this morning. All has gone well until I tried using Forte Free Agent newsreader. The program worked fine on my Dell laptop, but on the iMac the executable file is listed as a document. When I try to run it it opens as a sort of text file. Is there a different way to use this program, or is it simply not capable of running on the Apple OS?
    Thanks!

    Crash777 wrote:
    I've heard a little about Parallel but nothing about Crossover and Bootcamp. What criteria would you recommend to help me decide which is the best choice? I use Forte Free Agent but it's not an essential item. I use MS Office 2003 quite a bit, especially Outlook, Excel and Word and so I'd like to be able to continue that. I've already begun looking at MS Office for Mac.
    One suggestion I got was partitioning the hard drive and installing Windows 7 so that I could run all those apps that are supported by Windows and MS, but not Apple. Does that make sense?
    IMHO it would be foolish to install MS Windows on your iMac for only MS Office duties for several reasons. First you if feel you have to have MS Office in order to be compatible with your co-workers then you will find MS Office 11 a very capable product. However if you have been using MS Office out of habit then iWork is a an extremely capable product line. Your iMac already has Mail, Address Book, and iCal which integrate beautifully together and replace Outlook and are robust products. In addition the iWork and iLife applications integrate very well together. And iWork documents can be shared with MS Office users. MS Office 11 is also a very capable product but for most people it's overkill.
    While you could run MS Windows on your Mac from what I can tell from your needs it's a waste of money, time and resources. Your iMac has Boot Camp built into it, Boot Camp allows you to turn your Mac into a machine that runs 2 operating systems, MS Windows and OS X. However if you take this route when you install Win 7 (which you would have to purchase unless you already own a license) that part of your Mac is susceptible to all the maladies (viruses and malware, funky drivers, etc...) you were probably trying to get away from. Also if you use Boot Camp you are running either Windows or OS X but you can't run them simultaneously. If you were a gamer or someone that has to have Windows only applications or were doing 3D CAD/CAM work then Boot Camp would be a good solution. However for MS Office duties it's a total waste!
    You could also use virtualization software like Parallels or Fusion or other alternatives. If you insist on running Win 7 on your iMac then for your needs this would be the route I'd recommend. However again whenever you run Windows you are susceptible to viruses and other malware. The reason being is you can run Windows and OS X side by side. When I switched to a Mac several years ago I did this and ran MS Office apps which I quickly weaned off of, I happened to use Fusion as my virtualization tool and found the performance good. However after I began using Mail, Address Book, iCal and iWork I found out how clunky, old fashioned and well to be blunt crappy MS Office really is so I abandoned Office! While i still have Fusion and Windows loaded on my machine I don't recall the last time it was used.
    My recommendation is spend more time with those links and learn how powerful your machine is the way it shipped. Play with the tools it already has (Mail, Address Book, iCal) and I think you may be not surprised but shocked how capable and easy to use they are. Macs aren't like PCs, what I mean by that is PC's come loaded with lots of useless software that is simply awful. However Macs come with extremely robust software which includes iLife (Garage Band, iMovie, iWeb) and Mail, Address Book, iCal. If you decide to take a look at iWork ($79 retail but easily found for much less) that includes Numbers (Excel replacement), Pages (Word replacement) and Keynote (PowerPoint replacement.)

  • Book on using Forte

    Hi all,
    I was wondering if there is any book or magazine/journal on using Forte.
    could anyone tell me if there is.
    Thank you!
    Ravi
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    This website is very useful
    http://nofilmschool.com/

Maybe you are looking for