JSF 1.0 final release problem.

My application was working when I was using the beta release. (with the old tag like input_text)
I downloaded the JSF 1.0 final release from Sun and everything stopped working.
The funny part is the the samples in the fina release are working. However, they are using the old jar files!!! The jsf-impl.jar inside the samples is different from the one inside the jsf-1_0/lib directory. How can we follow those samples???
When I tried to use the jsf-impl.jar inside the sample application, my application gave me the famous NullPointerException when the listener ConfigLister is initialized.
When I tried to use the jsf-1_0/lib/jsf-impl.jar inside the lib directory, my application gave me:
org.apache.jasper.JasperException: Error setting property 'description' in bean of type null
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
Looks like my bean is not found. Has anyone seen this before? I got the same error when I tried to move an application from Java Creator to tomcat.
I am using tomcat 4.1.29
Someone from Sun please fix the samples inside th final release.

Thanks.
The second exception is gone. It ends up to be I am using binding instead of value for one attribute inside my jsp.
Still, it's so confusing to have the older version implementtion inside the samples for final release.
In the old verion, it's called ConfigListener and the version called ConfigureListener.

Similar Messages

  • Jsf-1.0 Final Release and tomcat 5.019

    I post again to say that is works well finally.
    To make it works:
    - download jsf-1.0 FR
    - in your application .war put in WEB-INF/lib/: common-digester.jar, jsf-api.jar, jsf-impl.jar, common-beanutils.jar and jstl.jar. (libs of jsf + lib of jsp).
    - dont use in web.xml <listener-class>com.sun.config.configListener<listener-class>
    - put your appli in jakarata.../webapps
    It works without a class extending ServletContextListener (servlet-api.jar).
    If you have problems erase jakarta.../work/Catalina/yourappli and reload.

    Just for my own information : where did you get jstl.jar and standard.jar ?
    I had to dig in the latest nightly snapshot from jstl jakarta web site to find them but I don't even know if the one I use are final releases of not...

  • Help needed get JSF final release running on tomcat 5

    Hi there,
    I know my topic seems to be a easy thing which is often discusseb but I tell you it's not. And after searching the forum an the web... it's driving me crazy I want to make some development and tests but I can' get my stuff running on tomcat 5 and jsf final release.
    This is my last error message... seems like tomcat don't know anything about jsf...
    my directories---------------------------
    my webbapp
    -- WEB-INF
    classes
    lib
    scr
    web.xml
    faces-config.xml
    WEB-INF
    commons-beanutils.jar
    commons-collections.jar
    commons-digester.jar
    commons-logging.jar
    jsf-api.jar
    jsf-impl.jar
    jstl.jar
    standard.jar
    web.xml ------------------------------------------------------------------------
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <display-name>MyWeb</display-name>
    <description>
    FElix
    </description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <!-- ############# Faces Servlet ############# -->
    <servlet>
    <servlet-name>JavaServer Faces Servlet</servlet-name>
    <servlet-class>
    javax.faces.webapp.FacesServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- ############# Mapping ############### -->
    <servlet-mapping>
    <servlet-name>JavaServer Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <listener>
    <listener-class>
    com.sun.faces.config.ConfigureListener
    </listener-class>
    </listener>
    </web-app>
    faces-config.xml---------------------------------
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
    <navigation-rule>
    <from-view-id>/eingabe.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/ausgabe.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <managed-bean>
    <managed-bean-name>Square</managed-bean-name>
    <managed-bean-class>src.com.edu.jsf.bean.SquareBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    ERROR - MESSAGE
    org.apache.jasper.JasperException: /eingabe.jsp(19,3) No tag "input_number" defined in tag library imported with prefix "h"
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:236)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1346)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parseBody(Parser.java:1827)
    org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1100)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1405)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parseBody(Parser.java:1827)
    org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1100)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1405)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parse(Parser.java:171)
    org.apache.jasper.compiler.ParserController.doParse(ParserController.java:258)
    org.apache.jasper.compiler.ParserController.parse(ParserController.java:139)
    org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:237)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:456)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:553)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    I really stuck so any help is appriciated...
    I also tried to put the jars in the common/lib
    but still not working...
    I tried to get it running with jwsdp ... but same s*** ...
    best regards
    Felix

    thanks....
    this means... everything was working and I better should have read the notes...
    I went back.... installed jwsdp1.3 and everything was fine...
    so I will give it a try... change the classes and at this time i use the right tags...
    but this will also work for the tomcat downloaded from the apache.org site?
    I only need the jar files in the jsf-1.0/lib file and the latest jstl-jars ---
    thanks again
    reagards felix

  • Camera Raw 4.5 final release?

    Now it's been four weeks since Camera Raw 4.5 Release Candidate (ACR 4.5.0.161) was brought to us via Adobe Labs. Does anyone have any issues with it? I don't. Does anyone have an idea when the final release is supposed to arrive? I feel a four-week testing period is more than adequate for a tentative version that's supposed to be a "Release Candidate" (however the plug-in calls itself "4.5 Beta" ... go figure).
    Another Camera Raw version most likely will be due in October, to support all the new digital cameras and backs that (hopefully) will get introduced at Photokina in September. I wonder if that's going to be ACR 4.6 ... or will ACR 4.5 "Grand Master" (which means "final release" in Adobe speak) be deferred until then?
    -- Olaf

    Jeff Schewe wrote:
    > Fortunately, it's not your job
    > to worry about it, is it?
    Fortunately not, indeed.
    Jeff further wrote:
    > If you are unhappy [...] you are under
    > no obligation to use it if you don't want to.
    Huh? The conclusions you're drawing from my thinking aloud are, umm ... strange, to say the least. If you feel my inquiry was inappropriate and/or pointless then your reply also is.
    Actually, I am quite happy with ACR 4.5RC, and furthermore I didn't hear anybody else reporting any problems. And that's exactly why I'm wondering why the final release isn't out yet. I guess I'd be less wondering if this tentative version had been announced and communicated as Beta rather than as Release Candidate. Anyway ... I'm just curious. It does not mean I was unhappy in any way.
    Jeff further wrote:
    > ... so, you'll just have to wait, huh?
    Yes, obviously.
    Jeff further wrote:
    > Hey, it's nice out, go shoot something ...
    Glad to hear it's nice on your side of the Big Pond, too.
    -- Olaf

  • PO Cancel release problem

    Hi, experts:
      I am a beginer of SAP workflow,  I've got a problem when testing customized PO cancel release workflow.
      My workflow is quite simple, just test whether the event  'SIGNIFICANTLYCHANGED' was trigered when cancel PO. I will receive information in my SAP Business workplace.
    Here is the configuration of PO release  Strategies:
    RGroup Rcode Workflow Agent
    PO     C1     1     Blank
    PO     C2     1     Blank                   
    PO     C3     1     Blank                  
    PO     C4     1     Blank      
    In my customized workflow template, I use the event 'SIGNIFICANTLYCHANGED' to deal with PO cancel release.
    But I find that this event will not be triggered from Level C4  cancel to C3.
    Here is my test result:
    Cancel        Result
    C4->C3       Not triggered
    C3->C2       Trigered
    C2->C1       Trigered
    I can get the result from my Business workplace  except cancel PO from C4 to C3.
    Does anyone come across with this problem?
    Please tell me why and how to handle it, thanks a lot!
    Best regards!

    Hi,Swaminathan PJ
    Appreciate for your reply!
    So, shall we change another event or even customize our own event?
    My requirement is that send e-mail with PO item detail (*.xls file) to specified users when final release or cancel final release.
    Thank you for any good advice.
    Best regards!

  • Could I use jstl tag in the JSP page of Creator 2 final release?

    I have a JSP page used to work well in Creator 2EA2. The page
    has the following code snippets:
    <c:forEach items="${SessionBean1.webQuery1.details}" var="item">
                                                        <tr>
                                                            <td class="detailKey">
                                                                <c:out value="${item.key}"/>
                                                            </td>
                                                            <td class="detailValue">
                                                                <c:out value="${item.value}"/>
                                                            </td>
                                                        </tr>
                                                    </c:forEach>
    ...Basically, it generates a table columns.
    After migrating to Creator2 final release, a fatal exception is thrown
    when the page is launched :
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: org.apache.jasper.JasperException
      /Page1.jsp(148,132) According to TLD or attribute directive in tag file, attribute items does not accept any expressions
    Possible Source of Error:
       Class Name: org.apache.jasper.compiler.DefaultErrorHandler
       File Name: DefaultErrorHandler.java
       Method Name: jspError
       Line Number: 43
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:43)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:414)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:155)
    org.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes Any suggestion, or work around?
    Thanks

    There is something strange in the HTML for you posedt, so I cannot clearly see what you are trying to do in your JSP page. But either of the following kinds of usage would cause this kind of error:
        <h:dropDown ... items="<%= ...some Java expression ...>"/>or
        <h:dropDown ... items="${...some JSP EL expression...}"/>This is because JSF component tags allow neither Java runtime expressions nor JSP EL expressions (at least in JSF 1.1, which is what Creator 2 supports). The answer is to use a JSF EL expression instead, like this:
        <h:dropDown ... items="#{... some EL expression}"/>Craig

  • EF ProviderManifestToken issue when updating ODAC Beta 3 to final release

    Hi everybody,
    We're using ODAC (connecting to a Oracle 9i) with VS2010, developing with .NET Framework 4 using Entity Framework. We started our developments using ODAC Beta 1, and we have been updating the ODAC every time that a new Beta was released and everything was going like expected, but we're having trouble with the last update, from ODAC Beta 3 to the final release (11.2.0.3). Note that we have only one ODAC installed at the time, for every update we first uninstall the old release, then we install the new ones and finally we update the application references to the new Oracle.DataAccess.dll.
    The first error occurred when the application attempt to access the DB, the message we got was: "+ProviderManifestToken no es válido+" ("*ProviderManifestToken is not valid*") .
    We tried updating the model (EDMX) from the database (the only change made was an update in the EDMX SSDL content from ProviderManifestToken="9i" to ProviderManifestToken="9.2"), then another error came out: "+El esquema especificado no es válido. Errores: Modelo.ssdl (2,93) : error 0169: Los artefactos SSDL deben tener como destino el mismo proveedor. ProviderManifestToken '9i' es diferente de '9.2' que se encontró antes.+" (something like "*The specified schema is not valid. All SSDL artifacts must target the same provider. The ProviderManifestToken '9i' is different from '9.2' that was encountered earlier.*"). We did some research about this error, but couldn’t find any solution... does anyone know how the update from Beta 3 to Final Release should be done? are we missing any configuration?
    Thanks in advance!
    Lucas

    ODAC Beta 3 (11.2.0.2.50) starts to use two most-significant digits of an Oracle database version number for ProviderManifestToken.
    You have no problem with ODAC Beta 3 by modifying '9i' to '9.2' for ProviderManifestToken. But when updating ODAC Beta 3 to final release (11.2.0.3) and doing the same modifications, the said "another error" occurs. That seems to indicate the issue is not about ProviderManifestToken itself.
    I am wondering if there are different store schemas in your edmx file and the error is caused by schema filtering.
    For example, having differnet store schemas for the Schema= like below.
    <EntitySet Name="Categories" EntityType="Model.Store.Categories" store:Type="Tables" Schema="USER1" />
    <EntitySet Name="Customers" EntityType="Model.Store.Customers" store:Type="Tables" Schema="USER2" />
    Can you please check it?
    Another question is: Can you regenerate the edmx file using the final release (11.2.0.3)?
    This is the preferable way.
    Edited by: shsu on Mar 1, 2012 12:32 PM

  • We do not understand what Mozilla Firefox means by Firefox Final Release Channel

    We are a university that uses the Blackboard Vista 8 product. In order for our students to complete their courses online in Blackboard, they have to use compatible and certified browsers. The Blackboard vendor has a website detailing which browsers the students should use. The URL is http://kb.blackboard.com/pages/viewpage.action?pageId=75071574. No one understands what the vendor (Blackboard) or Mozilla Firefox means by the phrase "Firefox (Final Release Channel)." Does this mean the latest version of Firefox? If so, why not say the latest version and where did the word "channel" come from and what does it mean? It's not explained anywhere on the Firefox website.

    Mozilla has 4 channels. In order of less to more secure and stable: Nightly, Aurora, Beta, Release.
    On the page you reference, "Final Release Channel" refers to Mozilla's "Release". These are versions that have been completed and "pushed" out for download by everyone. The most current version is always available at https://www.mozilla.com/en-US/firefox/fx/ (currently, Firefox 6.0).
    There are only 2 currently supported versions: Firefox 6.0 and Firefox 3.6.20.
    *All other versions have stability and security issues that will not be corrected, but are corrected in the updated versions, as they are released.
    Other download links:
    *Current version (now version 6.0): http://www.mozilla.com/en-US/firefox/all.html
    *Older supported version (now 3.6.20): http://www.mozilla.com/en-US/firefox/all-older.html
    According to the chart on the page you referenced, your students should be using Firefox 3.6.20 (Firefox 3.5.x versions are no longer supported or updated).
    The certified/compatible classifications are Blackboard's determination.
    '''<u>Firefox Portable</u>'''<br />
    If your students wish to use the most current version of Firefox for their everyday browsing and use a Blacboard compatible version for use only with Blackboard activities, they can have both on their systems by installing Firefox Portable (not produced by Mozilla):
    *Firefox Portable installs in a separate folder on your hard drive so that it does not interfere with your current version Firefox settings or personal information (bookmarks, passwords, etc.). Add-ons are also kept separate.
    *You can also install Firefox Portable on a USB/thumb/pin/jump drive.
    *Firefox Portable general information: http://portableapps.com/apps/internet/firefox_portable
    *Firefox Portable 3.6.20 download links: http://portableapps.com/apps/internet/firefox_portable/localization#legacy36
    *Firefox Portable user forum: http://portableapps.com/forums/support/firefox_portable
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins ('''''on the system you used to post your question'''''):
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • Skype 7.7.0.102 + Windows 10 build 10240 (final release) hangs on keyboard hotkeys

    Hello there, just upgraded my Windows 8.1 to Windows 10 build 10240 (should be final release, obtained by Windows Update). When I switch keyboard layout by hotkeys (my setup is: CTRL+SHIFT+number 1-3), Skype just hangs and not answering no more.Switching from tray is fine, but it's very uncomfortable, as I have to type in 3 different languages.Skype 7.7.0.102 is Skype version, tryed to reinstall, but still same problem

    Hello guys!I'm happty to tell you, that my problem with switching layout in skype is fixed for now. I always used CAPS-LOCK to switch layout and used different apps for that. All of them now do not work. Recently i found an app called EveryLang. It's in active development and was not working with skype correctly till last update. It's free but you can upgrade to pro for $6 or so, i do not remember exact price. I'm happy with free version. It offers several layout switching shortcuts, may be you will find appropriate, that you are used to. I attached screenshot with shortcut window to this message. App url is: https://everylang.net/ I'm not this app developer and not contacted with developers in any way. Hope this message will help you!

  • Kindle app - Not Working or Compatible with Yosemite... On installation of Yosemite final release moved to incompatibel programs!

    Kindle app -> Not Working or Compatible with Yosemite... On installation of Yosemite final release moved to incompatibel programs.
    When I go to download KINDLE not available in Cyprus App store... Asks me to switch to USA I say yes... And then gives me a dead link.
    Is kindle not available for download in certain countries? whats going on here?
    (My initial post was deleted - for "non-constructive comments" but I edited it removing what i believe they deemed non-constructive)
    Would have been nice if they answered my question and not only deleted my post.

    [url="http://web6.streamhoster.com/em2253/ZEN/ZenDeviceManager.wmv]See Movie[/url]?Hi, take a look at the movie... hopefully I answer to your question is there. [b]Let me know if you can NOT see it... [/b]and I will send you a picture. [color="#ff0000"]and if you can see the movie, give me feedback on it. Did it look ok in your computer? (it changes with all computers depending on your setting and player!). [color="#ff0000"]Was the sound ok?I almost wish I had not titled this post as "Happy Conclusion." It was happy but only a day or two... then I started having other problems... unbelievable. So, If I gave the wrong impression, sorry!

  • NPE for textField text after migration from ea2 to final release , help....

    I migrate an application from JSC2 EA2 to JSC2 final release
    In one of my page (first page that i check after migration) I have some text field.
    In a button action i used those textfields Text for some processing.
    Now after i press submit key (whether text boxes are full or empty) i get null pointer exception when i try to access the textfields text
    by using getTextField1().getText().toString()
    can any one say where i have mistaken in my migration plane ?
    Thanks

    Hi,
    Suggest to replace all butttons using FCS version.
    There was some change from EA to FCS for buttons.
    e.g. if you have multiple buttons on a Page that was created using EA
    then the wrong action handler will get called
    hth
    John

  • Lightroom 3.2 and Camera Raw 6.2 final releases are available

    Lightroom 3.2 and Camera Raw 6.2 are now available as final releases on Adobe.com and through the update mechanisms available in Photoshop CS5 and Lightroom 3.  These updates include additional lens profiles support among others. Check out http://blogs.adobe.com/lightroomjournal/. Following the example of Adobe's collaboration with SIGMA, leading lens manufacturers such as Pentax, Tamron and Zeiss worked closely with Adobe to create some of the profiles.
    -Simon

    Excellent! Now if there were only a way to use my S95 in raw... I guess I'll have to wait another few months

  • Date of Final Release Indicator for PO Release

    Is there a table in SAP that provides the date the PO was approved for Final Release? I know that through ME23N you can get this information in the Environment and Header Changes area, but we would like to add this information to a report and are having trouble locating where SAP is storing the data.

    Hi,
    Pass into CDPOS table:
    OBJECTCLAS  = u201CEINKBELEGu201D , OBJECTID = PO Number (EBELN), T. Code = u201CME28 or equal to ME29Nu201D and Get all change document no. (CHANGENR)
    TABNAME = u201CEKKOu201D, u201CField Name= FRGKE, Old Value = u201C0u201D and New value = u201C1u201D in to CDPOS and get latest change document number (CHANGENR).
    Then pass CHANGENR into  Change document No (CDHDR- CHANGENR), OBJECTCLAS = u201CEINKBELEGu201D,
    U get who has released and date also.
    Regards,
    chinna

  • Changeability of PO after final release

    Dear Gurus,
    My client requirement is, PO should not be able to be changed once final release has happened. They should be able to change only after revoking the final release and again releasing it.
    So, if I put changeability of Release indicator as "1", it will not allow to do any changes after final release including revoking the PO once it is outputted. How to resolve this?
    Thanks,
    Satish

    See the changeability option under Release group
    1     Cannot be changed
    2     Changeable, no new determination of strategy
    3     Changeable, new release in case of new strategy
    4     Changeable, new release in case of new strat. or val. change
    5     Changeable, new release if new strategy/outputted
    6     Changeable, new rel. if new strat. or value change/outputted
         Changeable, new release in case of new strategy
    to my understanding option 4 is more relevant to your requirement

  • Restriction of revoke after final release

    Hi experts,
    After final release of purchasing document lets say PR or PO user should not be able to revoke it.
    Any suggestions highly appreciated apart from getting it done  through user exit.
    Regards,
    Maverick

    Dear Ramesh,
    Thanks for your response.
    I have already set changeability to 1 but my concern is after PR final approval if a PO is created with its reference then in this PR user should not be able to revoke or cancel an approval.
    I think we can do this with user exit but is there any other alternative?
    regards,
    Maverick
    Edited by: Maverick 331 on Jun 16, 2009 1:00 PM

Maybe you are looking for

  • No signal after sleep

    My mac Mini awakes from sleep (I think) but my Viewsonic display shows "no signal".  I cannot see anything in the documents to suggest an adjustment that would help.

  • Problem with finding driver for Xerox Phaser 3117 laser printer.

    Hello! I have trouble with finding appropriate driver for my Xerox Pahser 3111 printer. There is no support for iOS on their official support website. Thank you for your help.

  • Problem: Create SO with BAPI_SALESORDER_CREATEFROMDAT2 & Head-Text Elements

    Hi all, I hape that sb can help me with my problem. I have created a ABAP-Program to create sales-orders with the function module: BAPI_SALESORDER_CREATEFROMDAT2 Everythiunk works fine but I can not create text-elements (from the head) with this bapi

  • Final Cut Studio Plugins

    Does anybody know where I can buy good plugins for Final Cut Pro? I'm looking more for the dramatic type of plugins...such as flickering in and out of the edges of the video, things like that. The closest movie that I can think of that has a lot of t

  • Movies in Safari not shown

    Hello, There I have links, in the first two links the associated movie is shown as it should be, in the third not. What to do?  (Safari 5.05 is fresh installed with Snow) Karl http://videos.arte.tv/de/videos/sarah_und_die_kuechenkinder_8_10_-3909146.