JWS using WAR archives and Version based DL

Hi everyone. I am having trouble with JWS. Let me explain what i am doing and maybe someone can tell me what i am doing wrong and what i need to do.
I created a war file in the same structure as what is shown in the "Packaging JNLP Applications in a Web Archive" docs. So my jnlp file is in the war file in the app directory along with my jar files. The web.xml is in the WEB-INF directory and the other needed files in the WEB-INF/lib directory (that is where the jnlp-servlet.jar file is located within the war file).
Next, i have an iplanet server. I created a directory on the server - eqam/app_version and i placed the war file there. I expect now when i goto my browser and go to "(server here)/eqam/app_version/app" it should go to servlet in the war file, which then launches the jnlp file. Is my understanding correct, because that does not work.
Here are a few questions. Am i supposed to place the jnlp-servlet.jar anywhere else on the server outside of the war archive, or is the server supposed to expand the archive somehow (how do i get it to do that)? Also, how do i configure the iplanet server to use this servlet?
Any help will be appreciated. Thanks!!
Chris
Here is the JNLP code...
TS: 2002-07-22 14:30:00
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0"
codebase="$$codebase"          
href="$$name">
<information>
<title>Title</title>
<vendor>Vendor</vendor>
<homepage href="$$context"/>
<description>Description</description>
<description kind="short">Opera Style MDI</description>
<icon href="images/check_digit_calc.gif"/>     
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
     <j2se version="1.4" />
     <jar href="guiMgr07152002.jar" version="1.5" download="eager"/>
     <jar href="accountpreview.jar" version="1.5" download="eager"/>
     <jar href="alert.jar" version="1.5" download="eager"/>
     <jar href="accountSearch.jar" version="1.5" download="eager"/>
     <jar href="CheckDigitalCal_srvc.jar" download="eager"/>
     <jar href="eqam_framework_07122002.jar" version="1.5" download="eager"/>
     <jar href="login_srvc.jar" version="1.5" download="eager"/>
     <jar href="resources.jar" version="1.5" download="eager"/>
     <jar href="serverside_07162002.jar" version="1.5" download="eager"/>
     <jar href="swingutil.jar" version="1.5" ftpdownload="eager"/>
     <jar href="desktopsrvc.jar" version="1.5" download="eager"/>
     <jar href="3rd_parties/weblogic_core_lite.jar" download="eager"/>
     <jar href="3rd_parties/weblogicaux_lite.jar" download="eager"/>
     <jar href="3rd_parties/xalan.jar" download="eager"/>
     <jar href="3rd_parties/xerces.jar" download="eager"/>
     <jar href="3rd_parties/jdomb8.jar" download="eager"/>
     <jar href="3rd_parties/lookAndFeel/kunststoff.jar" download="eager"/>
     <jar href="3rd_parties/lookAndFeel/macplaf.jar" download="eager"/>     
</resources>
<application-desc main-class="com.gs.eq.accountmaster.client.guimanager.AppManager"/>
</jnlp>

ensure you web.xml is set so the Download servlet processes requests for jar files
eg
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<servlet>
<servlet-name>JnlpDownloadServlet</servlet-name>
<servlet-class>com.sun.javaws.servlet.JnlpDownloadServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JnlpDownloadServlet</servlet-name>
<url-pattern>*.jnlp</url-pattern>
</servlet-mapping>
<servlet-mapping>
     <servlet-name>JnlpDownloadServlet</servlet-name>
     <url-pattern>*.jar</url-pattern>
</servlet-mapping>
     <welcome-file-list>
          <welcome-file>index.html</welcome-file>
     </welcome-file-list>
</web-app>

Similar Messages

  • Use of filters and aggregations based on hierarchy nodes in an update rule

    Hello,
    I need to calculate some indicators from a ODS (BW 3.5) that contain raw data to another one that will contain indicators. These figures are the results of the use of filters and aggregations based on hierarchy nodes (for example: all sales accounts under a node).
    In fact, this is typically a query but I want to store these figures, so I need
    I understood I have to use a start routine. I never did that before.
    Could you provide me with easy-to-understand-for-newbies examples of:
    - filtering data based on the value of an infoobject (value must be empty, for example)
    - filtering and aggregation of data based on the appartenance to hierarchy nodes (all sales figures, ....)
    - aggregation of the key figures based on different characteristics after filtering of these
    Well, I am asking a lot ...
    Thank you very much
    Thomas

    Please go through the following link to learn more on aggregates:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e55aaca6-0301-0010-928e-af44060bda32
    Also go through the very detailed documentation:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/67efb9bb-0601-0010-f7a2-b582e94bcf8a
    Regards,
    Mahesh

  • CD-Install and version based download protocol

    I am trying to create a cd-install for an app. using the -import -codebase features
    of javaws. This works as long as I do not have any version information within the
    cd based jnlp and the resources.
    If a specify a version with a resource (e.g. a jar) I get the following exception from
    javaws:
    java.io.FileNotFoundException: c:\cd\spirit_core_client.jar?version-id=0.4.5.0 (Die Syntax f�r den Dateinamen, Verzeichnisnamen oder die Datentr�gerbezeichnung ist falsch)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at com.sun.javaws.net.BasicNetworkLayer.doRequest(Unknown Source)
         at com.sun.javaws.net.BasicNetworkLayer.doHeadRequest(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.getDownloadSize(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    It seems that javaws tries to do a file request with a url query string for the version.
    This will work with the JnlpDownloadServlet but not for a file request.
    What do I have to do?
    If I can not specify version information wouldn�t that make the differential (JarDiff)
    download impossible? Or can I than only use a timestamp (last-modified) based
    download?

    I filed a bug ion this. The CD install is implemented by substituting codebases, if the new codebase dosn't implement the version based download protocol, import won't work. The file protocol used when importing from CD cannot implement this. There should be a simple convension to allow versioned requests from file protocols to assume the response-version is equal to the request version (assuming no wildcarding is uded in the request-version).
    /Andy

  • Possible to use both PowerPC and Intel-based systems together with Qmaster?

    Hello,
    New to the Qmaster setup, I was wondering if it was possible to set up a Qmaster cluster mixing PowerPC and Intel-based systems. If it is possible, what version of Qmaster would support this type of cluster?

    While it can work, note that if there is huge difference is processing speed, the PPC machine can actually slow down the process as everything waits for it to finish it's instance and copy it back.
    It's worth a try but keep an eye on how the various computers perform.
    Have fun.
    x

  • Report using Tabular Model and Measures based on Distinct Counts

    Hello,
    I am creating a report that should present something like this:
    YEAR-1 | MONTH-1 | MONTH-2 | MONTH-3... | YEAR | MONTH-1 | MONTH-2 | MONTH-3...
    My problem is that when designing the dataset to support this layout I drag the Year, Month and Distinct count Measure, but on the report when I want the value for the YEAR level I don't have it and I cannot sum the months value...
    What is the best aproach to solve this? Do I really have to go to advanced mode and customize my MDX or DAX? Can't basic users do something like this that seems so trivial and needed?
    Thank you
    Luis Simões

    Hi Luis,
    According to your description, you create a Reporting Services report using Analysis Service Tabular Model as the datasource, now what you want is sum the months value on year level, right?
    In your scenario, you can add the Month field to column group, add a parent group using Year Field and then add a Total on Month group. In this case, Reporting Services will sum the months value on Year level. I have tested it on my local environment, the
    screenshot below is for you reference.
    Reference:Lesson 6: Adding Grouping and Totals (Reporting Services)
    If this is not what you want, please describe your dataset structure, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Which BUs Object should I use for archiving and linking to SalesDocuments

    Hi,
    I want to archive documents and link them to SalesDocuments, but I don't know which BUsiness Object I should use. Special Ones like BUS2030, BUS2031,... or the general Type VBAK. If I use VBAK I have the problem, that when I archive manually all with VBAK linked documenttypes are proposed, so that I can't control, which documents are allowed to be linked with for instance CustomerQuotation or SalesOrder.

    Hello Marc,
    For Sales Order user object type as BUS2032
    Customer Quotation- BUS2031
    Customer Inquiry - BUS2030
    BUS2033          Customer complaint order
    BUS2034          Customer Contract
    BUS2035          Customer scheduling agreement
    BUS2051          Customer outline agreement
    BUS2094          Credit memo request
    Hope this will answer your question.
    -Thanks,
    Ajay

  • WAR archive and paths

    Hi all,
    I have my application working and running as exploded format.
    When I packaged it into a WAR and included it with an EAR along with the
    EJB JARS I have, it stopped running !
    I have the application correctly deployed.
    I can access some files under it.
    I have doubts that maybe it could be that some files are referencing
    others using relative paths.
    Should we replace these with absolute paths ?
    /mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
    help appreciated
    mona

    Not working as in 404 error?
    Could be deploying under a different context (as opposed to the default/root
    context).
    Try /webAppName/index.jsp rather than /index.jsp, after replacing
    "webAppName" with the name of your web application.
    Bob
    "Mona Ramlawi" <[email protected]> wrote in message
    news:[email protected]..
    Hi all,
    I have my application working and running as exploded format.
    When I packaged it into a WAR and included it with an EAR along with the
    EJB JARS I have, it stopped running !
    I have the application correctly deployed.
    I can access some files under it.
    I have doubts that maybe it could be that some files are referencing
    others using relative paths.
    Should we replace these with absolute paths ?
    /mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
    help appreciated
    mona

  • Archive and versioning problem OES11

    I'm trying to set up archiving versioning on our OES11 server and for some reason i can not get the jobs to run ..
    I only want it to check a users folder for .doc and .xls files but it does not really seem to do anything .. the only file it managed to do so far is /._NETWARE/VOLDATA.TDF .. somehow.
    The filter I have is as follows (from xml)
    <source>
    <volume><![CDATA[VOL1]]></volume>
    <filter overrideDefault="false">
    <include><path><![CDATA[\users]]></path></include>
    <include><extension><![CDATA[.xls]]></extension></include>
    <include><extension><![CDATA[.doc]]></extension></include>
    </filter>
    </source>
    Any ideas what I am doing wrong ?

    Conz,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Using auto save and versions

    Hello all. I am new to the Apple iMac. Love it! Just downloaded Lion and am curious about Versions and Autosave but cannot seem to find any info in the Help menu. Will Versions work on Office for Mac software (ie, Office for Mac Excel and Word)?

    Open Pages, Preview or TextEdit as the previous poster said, then:
    i. hover your cursor round the title bar to make the arrow/upside down triangle visible
    ii. click that arrow to see the menu.
    Of course, you'll need to have some versions of a file in order for Versions to do anything!

  • Will Archive and Instal erase my version of iLife?

    If I decide to use the archive and instal method as will it completely erase iLife because I do not have an installer disk because it came pre-installed into my Mac Mini

    Archive and Install doesn't erase anything. It merely renames the old System folder Previous System folder.
    And if available the save user network settings if unchecked will move the old users folders into the Previous System folder.
    Erase and Install does just what it says.
    If you are missing the discs that came with your computer, it should have come with some even if software was preinstalled. If you got it from a non-authorized vendor, ask them to give you the discs.
    If they lost them, they should call AppleCare, and give you the discs. They belong to that machine.
    If you bought the machine from an authorized dealer, or you can't reach the original seller anymore, call AppleCare:
    http://www.apple.com/contact/phone_contacts.html
    Message was edited by: a brody

  • File naming, archiving and time management

    I've posted on this subject before, but I have a new twist that I'd like to get some feedback on.
    I usually import my photos, keeping the master (now called original) file name until the end of the calendar year.  At the end of the year, I like to change the original name for classification and archiving purposes.  By then, I've usually made all of the deletions for the year, so I feel comfortable renaming the photos with some sort of counter or index.  My preferred classification system is: "Custom Name"/"Image Date_"/"Counter" (0000).
    The problem that I'm experiencing is that it is impossible to rename my originals using this format without some inaccuracies if I try to name them all at once without readjusting the computer's internal time zone settings.  I live on the east coast, so if I have a photo shot at 10:30 pm PDT on 2011-03-14, it gets named with a date of 2011-03-15, which obviously isn't accurate for when that photo was shot.  Well, it is accurate based on East Coast Time, but I want the file to be renamed with the date that it was shot, where it was shot, not where my computer currently resides.  Of course, I could rename the batch of 2011 photos in segments, but that would mean multiple quits/reopens from Aperture in order to change the time zone appropriately.
    It seems that my only choices are to either rename my photos at the time of import using the correct time zone settings on my computer, or to not use this renaming format.  Neither of these options are very appealing, since this renaming format is my preferred method.
    I guess my question is: does anyone have any insights or advice on either how to better work around this problem, or if not, other renaming methods that they like to use for archival and organizational purposes?  I know there are many to choose from, but I'm looking for something simple, which also provides direct information about the image, should I want to reference my Originals (which I do outside of Aperture from time to time).
    Thanks for adding to this discussion...
    mac

    Allen,
    SierraDragon wrote:
    mac-
    Personally I create a folder for each Project and copy pix from CF card into those folders. Then I import from the backup hard drive into Aperture using the folder name as the Project name.
    Usually each Project includes only one day or less, and I may have YYMMDD_JonesWed_A, YYMMDD_JonesWed_B, etc. for a large or multiday shoot. I do not let any Project contain more than ~400 Nikon D2x RAW+JPEG files.
    Projects are just that and never put into folders other than by month and/or year, just a forever chronological list. All organizing is done via Albums and Keywords. JonesWed_2011 is a keyword that can be an Album instantly when needed; bride is a keyword; wed is a keyword; flower is a keyword; etc.
    I use wedding just as an example. The process applies to all kinds of shoots.
    I use the 1-9999 Nikon auto-numbering of image files, and never rename image files except  sometimes during export. That way original image names can always be found across mass storage devices in the future independent of any application.
    -Allen
    SierraDragon wrote:
    Usually each Project includes only one day or less, and I may have YYMMDD_JonesWed_A, YYMMDD_JonesWed_B, etc. for a large or multiday shoot. I do not let any Project contain more than ~400 Nikon D2x RAW+JPEG files.
    Why do you keep the photo count in a project to around 400 files or so?  Is it detrimental to speed, or are there other considerations that have led you to work this way?
    SierraDragon wrote:
    Projects are just that and never put into folders other than by month and/or year, just a forever chronological list. All organizing is done via Albums and Keywords. JonesWed_2011 is a keyword that can be an Album instantly when needed; bride is a keyword; wed is a keyword; flower is a keyword; etc.
    So, you are saying that you sometimes put projects into folders by month and/or year?  Or, do you just keep all projects at the top level of the hierarchy?  The only folders I use are at the top of my hierarchy, and they are by year, 2002, 2003, 2004...2012.  I then keep all of my projects in the appropriate year.  I used to keep folders that were named things like, "Travel", "Occasions"..., but this became problematic when I had overlap, and images could fit in more than one designated folder.
    SierraDragon wrote:
    I use the 1-9999 Nikon auto-numbering of image files, and never rename image files except  sometimes during export. That way original image names can always be found across mass storage devices in the future independent of any application.
    It sounds as though you don't actually rename your images at all, but rather just keep the original names.  I don't like to do this because after deletions, it creates gaps in my sequence, and I also end up with multiple images with the same name.  I like for each image to have its own unique identifier by name.
    I'm considering importing the images using a version name, where the version is named by the image date.  I'll keep the original file name intact until the end of the year, and then, should I decide to rename my files, I could base my renaming system off of the version name.  This will automatically capture the date of the image without being reliant on my computer's time zone settings.

  • Triples of applications after Archive and Install

    Hi
    I just tried to install Leopard on my black macbook, which made it go to a blue screen until i re-installed it using the archive and install option, and the preserve user settings and networks option. I was attempting to access some applications from my dock, and they were saying that i couldnt use the application with this version of Mac OS X. Anyways i looked in my applications folder, and I now seem to have some triples of apple applications. One copy is in the previous system folder, and two in my current applications folder, one of which does work. Do i need all of these, or will it wreck anything if i delete them from the previous system folder or the ones that don't work in the current applications folder??? Very very grateful for any help... at all!!!

    Alf Megson wrote:
    Do you really want me to answer that question?
    yes. I had to ask. I don't know you and I've seen way too many posts by people with similar problems who don't know that one has to empty trash to actually reclaim the missing space.
    Boot from the leopard install DVd and repair the startup drive (not permissions). reboot and see if that makes a differences. if not try to find out what's taking all the space. see this post for tools for that.
    http://discussions.apple.com/thread.jspa?messageID=8188595&#8188595
    10GB should not be hard to find.

  • Webapp as war-archive vs exploded inside EAR

    We have an application consisting of an ear-archive containing a webapp (.war or exploded) and an ejb (.jar). For this application we have had a few situations where the EJB is recompiled at WLS start only if the webapp consists of a war-archive and not an exploded war (even though the webapps are identical). We have however been unable to reproduce this consistently. Are there any known issues related to using an ear-archive containing an exploded war?
    As far as I'm aware the main reason not to deploy applications as exploded is to make sure that the deployed content cannot be modified once deployed. This is not an issue here as the exploded war is a part of an ear-archive. Is there any other reason not to use this application layout? Could it possibly cause any unexpected side-effects in production environments?

    Not working as in 404 error?
    Could be deploying under a different context (as opposed to the default/root
    context).
    Try /webAppName/index.jsp rather than /index.jsp, after replacing
    "webAppName" with the name of your web application.
    Bob
    "Mona Ramlawi" <[email protected]> wrote in message
    news:[email protected]..
    Hi all,
    I have my application working and running as exploded format.
    When I packaged it into a WAR and included it with an EAR along with the
    EJB JARS I have, it stopped running !
    I have the application correctly deployed.
    I can access some files under it.
    I have doubts that maybe it could be that some files are referencing
    others using relative paths.
    Should we replace these with absolute paths ?
    /mywebapp/myfolder/myfile.jsp instead of myfile.jsp ?
    help appreciated
    mona

  • Archive and Install help

    After getting the blue screen when installing Leopard, I've decided to re-install using the "Archive and Install" feature. After reading the documents here on Apple's site, I'm a bit confused. Can someone please give me a Coles Notes version of how Archive and Install works? Mainly:
    What do I need to backup myself? There's a document on Apple's site which discusses the steps for backing up your address book and such... doesn't Archive and Install do this?
    I also have Adobe CS3 on my Mac. Will I have to re-install this?
    And my wife has some widgets on our computer... I'm thinking that this could be the third party apps that aren't Leopard compatible. Will Archive and Install clear these too?
    Message was edited by: Paul Ouimette

    Hi Paul Ouimette;
    Yes, the Archive & Install does back up the previous system so saying that you should backup may seen a bit redundant. The only problem with that logic is that it assumes that the A&I will go perfectly. If for any reason it doesn't, you can be left high and dry. Most time it does go well but personally I am a bit of a belt and suspenders guy so I always create a clone before doing anything as major as an A&I.
    I did an A&I recently and my applications were there. I did have to enter the serial number for CS3 and Aperture again. My dashboard widgets were there though.
    Allan

  • "Lost" library following Archive and Install

    After various Leopard crashing issues, it was necessary for me to re-install Leopard on my G5 Imac. I used the “Archive and Install” option but, for reasons I don’t understand, I wasn’t able to use the “Preserve Users and Network Settings”.
    After re-installing iLife 08, I’ve now lost my iPhoto and iTunes libraries. Whilst I did back-up both libraries to an external hard drive, the last back up was back in November so I would like to recover the newer photos. I have searched through the “Previous System” folder and have found an “iPhoto Library” file. This is 8Gb big so, presumably, it contains all my photos. I don’t know how to restore the library back into iPhoto, however.
    The thing I don’t understand is that this “iPhoto Library” seems to be a single file rather than a folder that you can drill down into and locate all the photos (as it is on my external drive following my manual back-up). Please tell me it’s possible to restore the library (and all albums, events etc) from this single file!
    All help gladly received.

    Pilgrim Tim
    With iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Unix Style Package File. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    I have searched through the “Previous System” folder and have found an “iPhoto Library” file.
    Drag it to your PICTURES folder and launch iPhoto. That should find everything.
    Please tell me it’s possible to restore the library (and all albums, events etc) from this single file!
    You cannot return to the old iPhoto Library Folder system. Period. There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

Maybe you are looking for

  • Checking to see if files exist not working as expected.

    Hey, so I've set up a script that determines the artist playing on iTunes and sets the background image to a preselected picture of them. I want to expand this to allow different pictures of the artists, and after a few attempts, decided to use a tim

  • Songs cutting off short

    I have noticed others are getting the same issue, I have downloaded itunes to my new laptop and have re-purchased ll of my old songs and bought some new ones, but I have noticed that some of the songs are cutting off 40sec to 2mins before the song is

  • Is anyone else having problems with facebook page?

    i have graphic issues on Facebook, its slow, it logs out by itself... wish i could upload a picture to show all the details!! how can i upload a picture here?

  • HELP needed !!! pleace help !!

    I have a problem. this is the site ( http://home.planet.nl/~onbe1102/prikbord.html its a flash site and when i click to the name buttons i would like to open a *.XLS file or a site. the action fore the buttons ar now: btnWilliam_mc.onRollOver = funct

  • Document display in crmd_order (f.g. SO33) - how to display email headers

    In CRMD_ORDER, in document flow, You can see and display documents connected with currently displayed contract - among them emails. But the information about them is limited: there is main body, attachments, and basic attributes (title, size, owner,