Ojspc tool

I want to use ojspc from ant to pre-compile some jsp pages.
I have defined an ant task in the following way:
<target name="ojspc">
          <java
               jar="/home/kospas/oc4j/j2ee/home/ojspc.jar"
               fork="true">
               <arg line="-appRoot public_html/"/>
               <arg value="public_html/pages/mms-op-app/index.jsp"/>
     </java>
</target>
Running the task produces the following error:
ojspc:
[java] Parse error in pages/mms-op-app/index.jsp:
[java] oracle.jsp.parse.JspParseException: /pages/mms-op-app/index.jsp: Line # 3, <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
[java] Error: org.apache.struts.taglib.bean.CookieTei while reading TLD /WEB-INF/struts-bean.tld
[java] Java Result: 1
Any ideas?
Thanks, Kostas

If the jar file only include a Manifest file, that file will have a class path set for all needed libraries. Just use the jar, it should be fine.
--olaf                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • OJSPC  - ant task

    Hi,
    My ant task which pre-compiles jsp pages using ojspc tool now falls with following error (osjpc task output):
    ojspc:
    [ojspc] Starting translation on 221 files...
    [ojspc] Parse error in WEB-INF\tiles\NavigationMenu.jsp:
    [ojspc] oracle.jsp.parse.JspParseException: /WEB-INF/tiles/NavigationMenu.jsp: Line # 18, <bean:message name="menuLine_key"/>
    [ojspc] Error: name is not a property of org.apache.struts.taglib.bean.MessageTag
    The task had worked fine before even with the page NavigationMenu.jsp (which wasn't changed any way). I cannot manage what could possibly cause problem now without any modification of ant task configuration or the jsp page i can remember.
    Do you have any ideas?

    Hello Carl,
    I am able to compile all the files here. Some things to note :
    1) dir="${src.dir}/public_html". This is the directory where the JSP files are present.
    2) <arg line="../../${lib.dir}/WEB-INF/.jsps "/>. This specifies where to keep the generated binaries.
    3) <arg line="-srcdir "/>
    <arg line=". "/>
    This specifies where to generate the Java Source files.
    Please check if all these variables have been set correctly. On my machine, I have been able to compile multiple JSP files using this tag. The First point is very important. Please check that again.
    Thanks,
    Rajat

  • Pre-compilation with ojspc

    I'm using Oracle Application Server 9.0.4.1 and it's OJSPC tool to pre-compile jsp files at build-time. During the compilation I get the following error:
    Translating file: C:\Documents and Settings\antio\Local Settings\Temp\tmp3860\index.jsp
    File not found: C:\work\app\index.jsp
    ant task that runs ojspc:
    <target name="jsp">
         <java jar="${j2ee.home}/ojspc.jar" fork="yes" failonerror="true" jvmversion="1.4.1" >
              <arg value="-verbose"/>               
              <arg value="-xmlValidate"/>               
              <arg value="-extend"/>
              <arg value="com.orionserver.http.OrionHttpJspPage"/>
              <arg value="app.war"/>
         </java>
    </target>
    It expands the app.war file, and starts to translate index.jsp, but then an error occurs. It searches C:\work\app\index.jsp file, though index.jsp actually is in app.war root directory, which is located in app/build directory. Build script is run from C:\work\app directory.
    *.jsp is declared as not found only if it contains some jsp tags, written in XML-syntax. Jsp-s that contain only plain text or html code, or are written in jsp-like syntax will be pre-compiled normally.
    Steps to reproduce.
    1) download app.zip file and unzip it
    http://apunkto.pri.ee/app.zip
    2) configure build.properties file, set the Oracle server location
    3) run build (default task jsp)
    4) error occurs.
    Any suggestions would be appreciated,
    Thank you.

    OK, the patch I was talking about should be patch 3222328.
    It seems that you were seeing the wrong interaction between patch 3222328 and patch 3447842. I am not sure what to do. The best I can suggest for you is to apply patch 3447842 before applying patch 3222328. If it still does not work, please raise an oracle support ticket and let me know the ticket number.

  • "not a registered tag in that namespace" when running ojspc for 10.1.3.0.0

    I get a NullPointerException when trying to precompile my jsps using ojspc for Oracle Application Server 10.1.3.0.0:
    java.lang.NullPointerException
    at oracle.jsp.parse.JspRTTag.validateAttributeList(JspRTTag.java:403)
    at oracle.jsp.parse.OpenJspTagHandler.validateTagAttributes(OpenJspTagHa
    ndler.java:408)
    at oracle.jsp.parse.JspParseTag.checkForJspAttributeAndBody(JspParseTag.
    java:1304)
    at oracle.jsp.parse.JspParseTag.parseBody(JspParseTag.java:1335)
    at oracle.jsp.parse.OpenJspTagHandler.parseBody(OpenJspTagHandler.java:7
    11)
    at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1444)
    at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
    at oracle.jsp.parse.JspParseTag.parseNextTag(JspParseTag.java:1008)
    at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java:243)
    at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:483)
    at oracle.jsp.tools.Jspc.jspTranslate(Jspc.java:2318)
    at oracle.jsp.tools.Jspc.jspTranslate(Jspc.java:2199)
    at oracle.jsp.tools.Jspc.processSourceFiles(Jspc.java:939)
    at oracle.jsp.tools.Jspc.processContainer(Jspc.java:826)
    at oracle.jsp.tools.Jspc.processContainers(Jspc.java:864)
    at oracle.jsp.tools.Jspc.translate(Jspc.java:484)
    at oracle.jsp.tools.Jspc.mainLogic(Jspc.java:405)
    at oracle.jsp.tools.Jspc.extractContainerEntries(Jspc.java:1207)
    at oracle.jsp.tools.Jspc.processContainer(Jspc.java:809)
    at oracle.jsp.tools.Jspc.processContainers(Jspc.java:864)
    at oracle.jsp.tools.Jspc.translate(Jspc.java:484)
    at oracle.jsp.tools.Jspc.mainLogic(Jspc.java:405)
    at oracle.jsp.tools.Jspc.main(Jspc.java:394)
    This tag is a tag handler registered in a tld that is referenced as a taglib in in web.xml, and that is used in a tag file used by the jsp that is translated when the exception occurs.
    Have anyone used ojspc in applications that uses tags and tag files extensively? Have anyone seen this problem before?
    Thanks, Brynjar

    Yes you can use the 10.1.2 Webcache for the 10.1.3. SOA Suite. However I would not advise you to do so, Most calls will be SOAP messages that will not really benefit from the Webcache.
    Yes, you can cluster the Webcache. This will remove your SPOF.
    cu
    Andreas

  • Ojspc : cannot execute

    Hello,
    I' posted this question in Identity management forum but didn't get any reply so I thought this could be the right forum. I'm trying to upgrade OIM 9.1.0 to BP2 but patch_oc4j doesn't run successfully. When I checked the log file, I found the following error:
    BUILD FAILED
    file:/u01/oim/xellerate/setup/oc4j-setup.xml:115: Execute failed: java.io.IOException: java.io.IOException: /u01/oas/10.1.3/j2ee/home/jsp/bin/ojspc: cannot execute
    at org.apache.tools.ant.taskdefs.ExecTask.runExec(ExecTask.java:371)
    at org.apache.tools.ant.taskdefs.ExecTask.execute(ExecTask.java:250)
    at org.apache.tools.ant.Task.perform(Task.java:341)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:336)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:397)
    at org.apache.tools.ant.Task.perform(Task.java:341)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:336)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:397)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143)
    at org.apache.tools.ant.Task.perform(Task.java:341)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:336)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:397)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143)
    at org.apache.tools.ant.Task.perform(Task.java:341)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:336)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1255)
    at org.apache.tools.ant.Main.runBuild(Main.java:609)
    at org.apache.tools.ant.Main.start(Main.java:196)
    at org.apache.tools.ant.Main.main(Main.java:235)
    and a long list of similar errors.
    I can manually run ojspc without errors. $ORACLE_HOME is the OAS directory and $JAVA_HOME is the jdk directory under the OAS. The system is RHEL4 with Oracle 10g2 and OAS 10.1.3
    Thank you for your help

    We can't advise with some system information. As an alternative, also consider this:
    Direct Download Links for Adobe Software
    Mylenium

  • Install glassfish tools in Luna M7

    Hi all
    I installed the latest eclipse Luna milestone and tried to install glassfish tools for eclipse but it failed due to a "missing dependency"
    > Cannot complete the install because one or more required items could not be found.
    Software being installed: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish.feature.group 6.5.0.201405081811)
    Missing requirement: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish 6.5.0.201405081811) requires 'bundle org.apache.ant [1.8.4,1.9.0)' but it could not be found
    Cannot satisfy dependency:
    From: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish.feature.group 6.5.0.201405081811)
    To: oracle.eclipse.tools.glassfish [6.5.0.201405081811]
    Asked at eclipse here : Eclipse Community Forums: Web Tools Project (WTP) &amp;raquo; can't install latest glassfish tools on luna m7
    Apparently the issue is that Luna comes with ant 1.9.2
    Any workarounds ? Any plans for an update ?
    Thanks

    You are referencing Kepler repository when installing into Luna. You need to use the following URL instead:
    http://download.oracle.com/otn_software/oepe/luna/

  • Unable to capture audio from BlackMagic HD Extreme via Voice Over tool

    Hi !
    I'm trying to capture audio via my BlackMagic HD Extrem card using the Voice Over tool in FCP6, but I can't, no audio is incoming.
    I can ingest audio with video using log and capture, then I know my card and my cables are working.
    I tried to set the BM card as audio input in my Audio's System Prefereces Pane, but it isn't working either.
    I've been looking on the BM website, but I found nothing.
    Can you help me ?
    Thx

    Thanks for the reply.
    Looking at system preferences I found that audio input was set microphone. Don't know how it happened. I switched it to DeckLink and now FCP displays 16 input channels in Log and Capture dialog. I didn't try to capture yet but I think it solved the problem, because before I had only two channels displyed.

  • Unable to capture the adf table column sort icons using open script tool

    Hi All,
    I am new to OATS and I am trying to create script for testing ADF application using open script tool. I face issues in recording two events.
    1. I am unable to record the event of clicking adf table column sort icons that exist on the column header. I tried to use the capture tool, but that couldn't help me.
    2. The second issue is I am unable to capture the panel header text. The component can be identified but I was not able to identify the supporting attribute for the header text.

    Hi keerthi,
    1. I have pasted the code for the first issue
    web
                             .button(
                                       122,
                                       "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1824fhkchs_6']/web:form[@id='pt1:_UISform1' or @name='pt1:_UISform1' or @index='0']/web:button[@id='pt1:MA:0:n1:1:pt1:qryId1::search' or @value='Search' or @index='3']")
                             .click();
                        adf
                        .table(
                                  "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1c9nk1ryzv_6']/web:ADFTable[@absoluteLocator='pt1:MA:n1:pt1:pnlcltn:resId1']")
                        .columnSort("Ascending", "Name" );
         }

  • MSI Forum HQ USB flashing tool!!!

    Hi guys,
    We the forum team have developed  a new way of flashing.
    You no longer need a floppy or anything, just an USB-stick.
    The tool has been tested together with MSI and as far as we have done our testing, there are no problems at all.
    As long as the USB-stick is FAT or FAT32 formatted!
    However, flashing is allways risky, so if it goes bad it's your own fault, but that goes for all flashing you do.
    This tool is intended to flash MSI retail motherboards and laptops,
    but if needs you can use any other machine to prepare the necessary stuffs and the USB stick there,
    before move the USB stick to the msi product that you want to flash.
    The way it works is simple: Download the package and download the BIOS from the MSI website that you want to flash.
    The rest is straight forward.
    Make sure that your board is set to be able to boot from USB.
    So turn on USB Legacy Support in the BIOS.
    Boot and press F11 to get the boot-popup and select your USB-device to boot.
    (some boards have a different key, like K8N Master uses ESC for the boot-menu)
    What ever you do, make sure you read all warnings!
    The forum nor MSI is responsible if it fails for you.
    Nor is this software supported by MSI technical support!
    Please report problems/buggs if you find them.
    currently supported OS ( both 32 & 64 bit):
    Windows NT, Windows 2000, Windows 2003, Windows XP, Windows Vista, Windows 7 (also Windows in Virtualbox under Linux!)
    (all kind of versions)
    NOTE: If you are having problems getting your USB device to boot correctly, you may need to format it correctly as the geometry data may be incorrect. You can do that by pickup option "Fix My USB key" from the Tool or by using >>> THIS <<< tool here! For future usage you can skip this step, it need to be done only once if your stick need adjustment.
    This topic is for discussion of and help with the USB flash tool only. If you have a problem with your PC and need help then do not hijack this topic, please start your own new topic in the correct area of this forum!
    NEW! >>> Read the comprehensive user guide here! <<<
    The download links are listed below:
    https://www.dropbox.com/s/yu8imcr1tsopm24/MSIHQ%20Tool%201.26h%20Installer.rar?dl=0

    Quote from: max-sever on 25-May-07, 01:29:21
    Hi!
    I'm have problem with antivirus program too.
    Dr.Web
    C:\Temp\x863\bossmsi.exe - &#1080;&#1085;&#1092;&#1080;&#1094;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; Trojan.Blakhal
    Kaspersky Anti-Virus
    bossmsi.exe - &#1080;&#1085;&#1092;&#1080;&#1094;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; Backdoor.Win32.Iroffer.af
    This file is a antivirus testing program?
    Hi Max,
    "This file is a antivirus testing program? "
    yes, the latest version accidentally really become a test for any AV....
    in latest 1.13b Avast! no more report false positive,
    but all others AV software starting reporting a different false positive results:(all AV listed didn't report false positive problem in a provisional version) Avast! was fixed and no more report the false passivity and passed, but all other AV software started to be a lot confused...
    Kaspersky Anti-Virus - Proactive Defense Warning: Riskware detected.
    Kaspersky Anti-Virus 2nd ID - Backdoor.Win32.Iroffer.af
    Dr Solomon's:  probably found Zafi.D.Virus
    Symantec: Bloodhound.Overpacked / * Overpacked when a potentially unknown virus is found using Symantec Bloodhound technology */
    Panda: Win32:Trojan-gen.(Mytob.U.Mod)
    Mcafe: Worm.W32/Bakain
    Dr.Web: Trojan.Blakhal
    Bit.Defender: Trojan.JS.Obsq.Gen
    Just to clarify one more time, all things listed are false alert coused and exist in latest version only due Avast! fix.(1.13b)
    didn't continue to test with rest of AV...
    only Avast! and NOD32 report no problem detected.
    in 1.13a all false positive listed above doesn't exist, but only Avast! report false positive.
    Hoverer, the wave of false positive mess has been resolved along with Avast! false positive as well.
    New version is ready, 1.13c:
    - fixed false positive wave which confusing most of AV software. (all AV do not report any problems anymore)
    - fixed 3 minor bugs:
           * after finished work the tool do not quit normal as expected and hang instead, that happend in x32bit OS only when used has been asked for reboot and answered with "No". e.g. in described specified case.
           * 4th mainboard filter report positive results in some Biostart mainboard and this cause tool to false ID some Biostar board as MSI one.
           * added missing drive letter as USB key choice ("I")
    Download location in a the 1st post of this topic.

  • Polygonal lasso tool not working with stylus on Surface Pro 2

    Hi guys,
    I'm new here so please bare with me if I'm posting in the wrong place or don't make immediate sense.
    Hardeware / software used: surface pro 2 and I'm running photoshop CS5.
    Problem is a fairly basic one: I am trying to make basic selections using the polygonal lasso tool (using the stylus that comes with the tablet) but it simply will not work. All I get when I touch the stylus to the screen is the circle that appears then fades. If I attach the keypad and try using that then it works no problem at all.
    Does anyone have any ideas as to whether there is a particular setting that I need to switch on or off e.g. something relating to pressure sensitivity (although not sure why this would affect this particular selection tool)?
    I've searched the web and come up with nothing so far so any help is greatly appreciated!
    Thanks for your time
    Scott

    same problem on surface pro 3 !!!!
    and i think quite significant, for lot of artists using polygonal lasso a lot (including me). How come that the stupid surface cannot work properly

  • Text is running together on some pages and not others. i've tried no squint and playing around with text options in tools. I can't strike a good balance.

    I can't seem to figure out how to have a full screen experience with larger text and everything is in proportion. Either the right end of lines are chopped off, or lines of text are running into each other and out of boundaries.
    == This happened ==
    Not sure how often
    == I installed FF earlier this evening. I've had FF before and my gripe was the inability to set a certain magnification. I found the no squint add on and it seems very good, but somewhere I'm getting stuck. I've been fiddling with no squint, font options in tools and size and resolution settings for my monitor.

    i'm also having major CPU problems w/ FF 29.0.1. when i restart the app it calms down again but after loading tabs it steadily climbs up to 100% after not too long. i have checked out the 2 CPU links/articles above and do all the basic troubleshooting and tips, but with all the FF tools & add-ons isn't there some sort of CPU monitor that has the ability to display which extensions/scripts are hogging the CPU? Activity Monitor on Mac just shows the total used by the app. it's impossible in my case to efficiently disable dozens of add-ons & scripts, restart, and test each one by one b/c it can take several hrs before the CPU starts to spike high again. i have no time for this.
    thanks

  • Problem with "--21474836,,(" in my text tools

    i have a CS4 on Windows7 64 Professional Polish ...
    this text: --21474836,,(
    shows up in the text tool box - it disturbs my work
    do you know how to fix it?
    thx for help

    Reset the panels, trash the PS prefs and also look into your system's language & region settings for the default value unit and delimiter setting. Also check for "bad" fonts.
    Mylenium

  • Open and connect in OBI 11.1.1.5 admin tool fowwoling OBE Upgrade

    I installed OBI11.1.1.5 on Redhat 5.2 and the admin tool on a windows. In this two machine I have OBI 10 server and admin tool installed as well. The OBI 11 components are all up running as I can access them such as EM and represention service.
    Following OBEhttp://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/upgrade/upgrade_to_11g.htm?print=preview#t3 .I upgraded our 10g rpd and catalog and see the repository saved in instance_home, and verified that the default is RPD sh20110903_BI002.
    Next step in the OBE, I verify Reposiotory Metadata. I launched the admin tool, opened inline. In the generated dialog box, I entered the password in defined in the update script as Repository Password, and used weblogic login in User/Password. All other fields are blank. That is all I can do in the dialog box, but the Open buttone is always grey. I think at least one available repository should be listed in the list box at the bottom, but it was empty.
    Then I tried to create a new repository. In step 2 Select Data Source, I choose ODBC 3.5 and use a valid system DSN, but got Error : The connection has failed.
    I tried also use Connection Type OCI 10g/11g. IN the Data Source Name I used a valid netservice name defined in a Oracle client's Oracle_HOME. But still got Error : The connection has failed.
    Questions
    1) How can make the Open button active in the Open inline RPD dialog box?
    2) Why the valid System DSN failed to connect in 11g admin tool. It is OK in 10g admin tool and ODBC configure
    3) How to make Admin Too; sees the tnsnames definition. Should I copy the tnsnames.ora file to somewhere under Admin Tool installation directory?
    Many thanks.

    Thanks. The post appares make sense. I opened my user.sh file and has 2 questions:
    1) There are 32bit section and 64 bit section, and it states that 32 bit server must work with 32 bit client, so is for 64 bit. In my case, the clients are most likely 32 bit windows (browsers and admin tool), but the server is installed on Redhat 64 bit. Is this a problem? How do I know if my OBIEE iis running 64 or 32 bit?
    2) All entries in the user.sh file are commented out. Then what file is used to in the current OBI11, it is started automatically after the installation.

  • Photoshope Elements when selecting an action, the paint brush tool doesn't work and system keeps freezing, then catching up every 30-45 seconds

    I have been having this problem with elements ever since the last OS upgrade, but it wasn't all the time and it wasn't very bad. Now, I have upgraded my macbook again, and I cannot even edit a photo!! I open the photo, choose an action, say "smooth skin", then choose the paint brush, I start to "paint" over their face and it won't paint a line, I have to keep clicking it, click - it paints, move brush, click again - it paints. Plus, every time I choose a tool or an action, it freezes for about 10 seconds, then catches up to what I am doing, 30 seconds later, it freezes again. HELP!! I have 8 sessions to finish editing by this weekend!! I just want to cry!!

    Try deleting the prefs and the saved application state:
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

  • BW hierarchies issue with BOBJ Reporting tools

    Hi All,
    Brief about the requirement:
    Our client was using Mainframe and other tools for their reporting. Now as they have planned to go for SAP, purchased SAP BW 7 and SAP BOBJ XI 3.1 for warehouse and reporting purposes.
    Initial Road map planned for implementation was
    o     to use Crystal for operational and formatted reporting
    o     to use WebI for Ad hoc and interactive reporting
    o     to use Xcelsius for Dashboards
    Once we started analysing the requirements, we observed that client requires hierarchies extensively for reporting and they donu2019t want to compromise in that for reporting. At this situation we have explored the options and came to know from the SAP sites that BO got limitations in case of BW hierarchies. But we not able to articulate the what is the exact issue. Is it with only WebI or Crystal also?
    What we have articulated is we cannot report the hierarchies in BO in terms of nodes - > Sub nodes -> sub nodes instead we can do as fixed columns. Please add me if i am missing anything else.
    And also please let us know options. Options that we were thinking are Implement with BO XI 3.1 considering Advanced analysis tool then upgrade to BO XI 4.1.
    Please suggest us, what is the BW & BO hierarchy issue and right tools to use.
    Thanks & Regards,
    Bala

    Our client uses XI 3.2 but is experiencing issues with Hierarchical BEX queries returning blanks - the mdx is fine - just webi that seems to have a problem and I'm also trying to determine in exactly which instances this occurs.
    XI 4.x supposedly resolves mots issues but here again details are not known.
    I.e. hopefully someone can point to an info source that describes in more detail what issues are likely to occur re hierarchies and webi.

Maybe you are looking for

  • Apps wont open, need 2 install CD

    ohhh wise one, when a system is unstable and even finder wont start (due to Magnfique app for example which is not compatible with SL) how do i *force my mac mini to open and run directy from the installation cd* inserted in orderto re-install SL and

  • IPhoto 08 and the missing Shutterfly button for exporting

    Does any know what happened to the shutterfly button that was in iPhoto 06 for exporting, it seems to be gone in the 08 version??? Help my wife is giving me grief about upgrading to Leopard and iPhoto 08!!

  • Open excel sheets in separate windows by clicking link.

    Hi, I have a web page which has a link. When user clicks on the link, a servlet is invoked that creates an excel sheet and opens it in MS-Excel. I used "res.setContentType("application/vnd.ms-excel");" to achieve this. But every time I click the link

  • Application system name against the Integration server is missing

    Hello All, In the technical system browser, for exchange infrastructure, I cannot see the application system name against th   View and Define Systems and Servers   Technical Systems      Technical System Type:   Exchange infrastructure    Name      

  • Info IDoc received with status 8 infopackage hanging in yellow status

    Hi All, when I extract the Text data without data selection it is fetching the 14 record into BW and changing the status to green, however when I go with data selection it has No record for this selection in RSA3 as well in BW . when I do this data s