Jsp template wizard missing?

Hi,
jdev prev4
I found in "Help" that a JSP template wizard is available ( file extension .jjt) BUT I cannot find that template in the "new->all technologies->web tier->jsp"
I would like to know if that template has been removed in 11g or where is it located.
Regards

Hi again,
1-The JSP template is defined in jdeveloper prev4->help menu->full text search->"create jsp template wizard - welcome" and look for the same title in the results (mine is the 7th and 8th)
2-by using the JSF-> new JSF Template wizard, there is no option for JSP (and only JSP), then the result template is in JSF format. I'm not sure, but the JSP template was available in 10g
Maybe, full JSP support is no longer available in next releases of JDev (I understand that), but it is a pity because if you develop a web application by using Ajax and you have enough knowledge of JSPs, you don't need to know anything of JSFs, no extra files (faces-config), no extra libraries, and so on.
Thanks!

Similar Messages

  • Alternative to JSP templates

    [This is a cross post. I posted the same thing over at the coderanch: http://www.coderanch.com/t/554956/JSP/java/Alternative-JSP-templates]
    Hey,
    I've built and worked on quite a number of web applications using JSP for HTML templates.
    I always found that the templates would get quite messy and confusing even if you use JSTL instead of scriptlets.
    In a few projects I used other libraries for the HTML templates, Velocity for example.
    Though, that's just the same in a slightly different syntax. I've also worked with numerous other technologies in Ruby land,
    but I'm not happy with them either.
    To come to the point of this post: I don't like it very much and so I've created an alternative: Wandledi
    To describe it shortly: Instead of including scriptlets or custom tags into HTML files Wandledi uses a separate layer that's only responsible
    for transforming HTML markup in order to fill it with dynamic data and so on.
    For further information please have a look at http://wandledi.org *.
    The idea isn't entirely new, though I don't know any other library that implements it in this way and not only for Java,
    but for Scala, too.
    The reason I post this here is that I was hoping to get some feedback from Java (and possibly Scala) developers on the whole thing.
    Do you find the idea totally ludicrous or do you think it could make sense?
    I for one am actually using Wandledi in several projects and I like it very much.
    However, I might be a little biased. ;)
    Regards,
    Markus
    * For an actual Java example see: http://wandledi.org/spells/duplication.html
    Edited by: user5480329 on 06.10.2011 12:25
    Edited by: user5480329 on 06.10.2011 13:33

    First off: Thank you for your input.
    Please let me point out that Wandledi is in no way a web framework. It is a rather small library merely 'living in the presentation layer'.
    889994 wrote:
    +"The HTML markup stays clean and can even be edited with HTML editors such as Dreamweaver without getting confused.+" - This kind of argument is pretty widespread. Both ways. If there is some existing text editor for a given format they say - you may use editor XXX. If the format is too new they will tell - you do NOT need any special editor and sell that as an advantage. As of me I call that a "tools oriented approach" - as if starting a brand new technology we should first of all take a decision which editors it will comply to.
    In reality developing a technology as a whole (really new ideas included) costs non less than 50 times more than any editor. Editors must follow technology, not vice verse.I agree. This point I added because I thought of it as a little bonus.
    It's not something I had considered in the design of Wandledi. I use redcar for everything anyway! ;o
    889994 wrote:
    HTML files can be changed directly and the view is updated without recompilation. No compilation or runtime errors as a result of changes to templates - they may tell this. If is not a case they may tell something about how it is reliable when everything is compiled in advance.
    My 15 years of contact to JSP pages tells me that all end-up with including compilation of JSP as a step of a build. Otherwise you have a convenience of extra redeployments to production.Well, in the end the only thing that brings relative security are integration tests, I suppose.
    Cucumber to the rescue.
    Still the point of making recompilation unnessary is pretty valuable for development,
    because it makes it way quicker if you only make changes to the markup, which happens rather often
    when you're trying to circumvent another IE6 bug. ;)
    889994 wrote:
    "By putting the transformation logic into plain classes you can use the full power of the language (Java, Scala, ...) to describe the view transformations.
    This includes inheritance, composition and polymorphism to build up larger, more complex transformations OOP-style." - I have strong doubts that transformation logic is something needed for presentation. What about "the markup is also easier to read for humans, too."? - once you hide all under Java-coded transformations.This is a valid point. You can do all sorts of mischief with those transformations. But that's possible with any technology and it lies in the responsibility
    of the developer to be reasonable about it. It's important to point out that you usally do not want to generate HTML with Wandledi (referring to your print("<html>") statement). You merely transform. That is add, remove or change HTML attributes or duplicate portions of markup that is already there.
    One of the motivations behind Wandledi is that you should be able to express conditions and loops in an actual programming language instead of a cumcersome surrogate language or tags. The framework you suggested also makes this possible, which is good.
    To bring an example of Wandledi for loops.
    When you usally would do something like this:
    JSP:
    &lt;ul class="users"&gt;
      &lt;% for (String user : users) { %&gt;
        &lt;li&gt;&lt;%= user.name %&gt;&lt;/li&gt;
      &lt;% } %&gt;
    &lt;/ul&gt;I find this very ugly. The use of EL only improves the situation mildly.
    With Wandledi this would look like this:
    HTML:
    &lt;ul class="users"&gt;
      &lt;li&gt;Hans&lt;/li&gt;
    &lt;/ul&gt;
    Scala:get("ul.users li").foreachIn(users)( (li, user) => li.text = user.name )What I hope is that already in this small example the markup is more comfortable to read without the obfuscation through JSP. It is to me.
    Also it isn't more code, less even in this example. Just put into another file.
    Of course this would be less consise in Java. You would need about 5 lines of Java to express the same thing.
    889994 wrote:
    "The web designer can start building a functioning HTML page locally first without needing a server. Also they don't need to know jack about Java, JSP, JSTL, etc.." I agree. But. That may be said about ANY technology, including the JSP itself.That's not entirely true. What I mean is that the web designer can actually build the page locally and view it in his browser, simply by opening the file he is working on. Of course that is no longer possible once you start building stuff by including other files and so on.
    But you can build the components and simply view them in the browser. You can build concrete instances.
    Just as I did in the example above by inserting "Hans" instead of some variable name.
    You can show the page to anyone with a browser, no fragments. But mock content which will later get replaced with actual content.
    889994 wrote:
    One big piece missing in your proposal is about components and code reuse in general. That's the thing. It isn't. Because it is already there. You just do it the same way you would do it with your normal Java code.
    Because it is normal Java code.

  • SCOM 2012 SP1 RU2 Some Dashboard templates are missing

    Hi Everybody,
    I have SCOM 2012 SP1 RU2, (Update Rollup 2 for Microsoft System Center 2012 SP1 - Operations Manager Server (KB2826664)) but I don't see all the Dashboard templates, I just
    see the basic templates.
    I tried to do what the
    article suggests (Applying KB282664 this is for SCOM 2012 SP1):
    http://blogs.catapultsystems.com/cfuller/archive/2014/04/24/operations-manager-2012-r2-ur2-has-a-great-surprise.aspx
    But the template does not appear yet.
    Any Advice?

    Templates are missing when creating a new dashboard view from the Dashboard and Widget Wizard, This issue fixed in UR4 for System Center 2012 SP1
    http://blogs.technet.com/b/momteam/archive/2013/12/10/support-tip-opsmgr-2012-console-issues-fixed-in-update-rollup-4-for-system-center-2012-service-pack-1.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • JSF JSP Template

    Hi all, I'm using JDev 10.1.3. I have been trying to create some templates for my web pages but cannot get to the wizard. The "JSF JSP Template" item is not available in the "New Gallery". Any help is appreciated.

    It would be very interesting to have a more clear status about templating technology that will be implemented in the adf faces next release :
    1) does the technology be based on tiles, jsp, other
    2) what enhancements oracle plan to developp in templating, do you plan to introduce protected an updateable region like asp.net, do you plan to permit inheritance (extension)
    This is very important for people planing to use this technology at an enterprise level to build current application in a compatible way (reducing migration when the technology will be available) ?

  • XML publisher report with a template file missing

    I get the following error
    Active template file not found in the template definition <TEMPLATE_NAME> for date <EFFDT>. (235,2515)
    PSXP_RPTDEFNMANAGER.TemplateDefn.OnExecute Name:GetActiveTemplateFile PCPC:15872 Statement:346
    but in
    Reporting Tools > XML Publisher > Report Definition > Template tab
    I did have the setting Effective date, what cause the problem?

    Have a look at following post and run the sql in this post to see if your template definition is missing.
    http://peoplesoft.wikidot.com/xml-publisher-template-file-missing
    You could also run Application Engine PSXPCLEAN to clean orphan rows.
    Are you running the report online or through PeopleCode?
    In last case make sure the effdt is set correct in PeopleCode.
    Also have a look if your server time settings are correct.
    Hakan

  • How to add a report template to the template wizard?

    Dear All,
    I built a new report in BPC, and want to use it as the report template.
    I did following steps:
    1)change the "templaversion" in application set parameters from 15 to 16 (i.e, add a template)
    2)save my report to etools--save dynamic templats; and save it to the "report/wizard'
    3)open "client options"--"refresh dynamic templates";
    but when I choose "using dynamic templates" in the Action pane, I still found the template wizards are 15, not add my new templates.
    How to solve it? can any one help?
    Thanks in advance.

    If you completed the steps outlined, then you need to Change the Appset, Set Template Version, then refresh ClientSide Dimension Files.  Then you need to either re-login to the Excel client, or in your working Excel copy, goto etools, client options, refresh Dynamic Templates.
    After that, you should see the new added files. One key trick is when adding the description in th etext file, make sure you add the name and then hit TAB key to move to Strat the Description of the new wizard.
    But these steps do work, as I have re-tested the process in version 7M.
    Hope this helps.

  • Jsp templates using tiles

    hi all,
    i want to use Tiles in my application for designing jsp templates.
    how can i use tiles?is there any best tutorial with complete example on Tiles in Jsp templates?
    your suggestions are appreciated.
    regards and thanks in advance

    You may also wish to take a look at Sitemesh, a replacement for Tiles:
    http://www.opensymphony.com/sitemesh/
    The AppFuse web app startup environment uses it over Tiles and they seem to be happy with it. (Although it is somewhat more complex to learn.)
    Glen

  • Flash CS4 Sample Templates are missing

    My sample templates are missing, all that shows now are Cateregory: Advertising and different size banners. I searched my harddrive and found the rood folder where they are stored but only the folder for Advertising exist.
    I haven't deleted anything, so could it have been a glitch at installation, I had startup problems with Flash constantly crashing at the splash screen and finally had to uninstall and reinstall.
    Running WinXP SP3.

    Thanks for replying.
    I do remember them being part of an earlier version maybe MX. Did some checking around as I was under the assumption they were part of CS4 due to some diagrams found on pages 264-265 of "Flash CS4: The Missing Manual". The bottom line is it is now listed in their Errata.

  • Premiere Pro CC Title templates are missing + cannot be installed

    hi,
    I just realised that I don't have any title templates but i need them quiet urgently.
    I went on to this website: Library, title templates, template projects missing: Premiere Pro, After Effects, Encore
    where it stated that you have to download a zip file and place it in the presets folder of Adobe Premiere.
    I did that but it wasn"t working. Then I took the Premiere Pro Family Content Installers folder and wanted to install it in order to place it in the presets folder and the installation always gets broken off stating that there is an error.
    Is anyone familiar with that kind of problem and if yes, does anyone know how I can fix it?
    Thanks in advance.
    Mascha

    Did you follow this part of the instructions on that link?

  • Can I use Numbers templates like template wizard in Office 98?

    I own apartment houses. With Office 98 I made a rent receipt template and linked it to the database with template wizard, end result I would bring up the template, fill in date, amount, apt # ect. Then I would print the receipt and give it to the tenant. When I hit save it would save the info to the database and I would save the receipt to a file also in case I needed to print it again. When I went to OSX it came with office but I find they no longer have template wizard for the Mac version of Office X, only the windows version. I still run Office 98 in classic but it does not work so well (out of memory errors, wrong). Question, can Numbers do this for me or do I need to look elsewhere? I'm waiting to buy iwork until I find out.

    You need to look elsewhere right now. Numbers cannot link to other files, databases, etc.. The data must be on one file right now.
    Regards,

  • Download SQ01 query - The following template is missing: sap_om.xls

    Hi Experts ,
    I am getting this error when running transaction SQ01and dowloading query data to Excel.
    The following template is missing: sap_om.xls
    Any Suggestions how to correct this .
    Many Thanks .

    You can check Note 305900
    Regards
    Thorsten

  • Output module template is missing

    When ever i try to download the adobe after effects cc trial it says output module template is missing so i tried running and doing all of the adobe cc cleaner because the adobe care twitter said to, i went through all of that and now i re installl after
    Please help
    Edited by: Kevin Monahan
    Reason: More searchable title

    1.i have after effect cc 2014
    2. everything is updated
    3. http://i.imgur.com/YmbEQHb.png
    4. the error message is http://i.imgur.com/zUcd0Jc.png
    5. i was watching a youtube video and then i went to open after effects cc 2014 and  it came up with that error
    6. i havnt been able to fix at al.l
    7. my source footage is mainly .mts and .mov recroded from my xbox through a hd pvr in 59.94 fps
    8. no i dont have quick time
    8.5. other programs i use are sony vegas. steam , and baic microsoft word and powerpoint
    9. no im not using opengl
    10. no im not using ray 3d trace render
    11.at first i got a module template missing error but then a person on the adobe twitter told me to follow the step for cc adobe cleaner and then re install and it should work so i did and then that error went away but now i have this new error

  • BI Template Wizard Release Dates

    Does anyone know when the BI Template Wizard Program will be updated to include UI patterns other than the Information Consumer Pattern?

    Hi Mark,
    the newest version of the BI Template Wizard is available in the SDN download area now. The program was updated with the Casual User Pattern (CUP) and the Analyst Pattern (AP).
    Enjoy and rgds
    Jens
    https://www.sdn.sap.com/sdn/downloaditem.sdn?res=/html/BIJavaSDK_download.htm

  • Template files missing

    After install Lion on opening my sites with iWeb, each page comes up with a window indicating that several png and jpg files (part of the template) are missing.   Has anyone else experienced this and what can one do.  The files themselves show up (once unhidden) in Finder.
    Thanks
    Jack

    You could try the troubleshooting steps under "Fix iWeb" here...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    ... to see if that fixes it.

  • Numbers (office template wizard yet?)

    I posted this a few years back.  Can numbers do this yet?  I am still running my PowerMac G5 but it's getting old.  Can anyone give me an update?
    Nov 19, 2007 9:00 PM 
    I own apartment houses. With Office 98 I made a rent receipt template and linked it to the database with template wizard, end result I would bring up the template, fill in date, amount, apt # ect. Then I would print the receipt and give it to the tenant. When I hit save it would save the info to the database and I would save the receipt to a file also in case I needed to print it again. When I went to OSX it came with office but I find they no longer have template wizard for the Mac version of Office X, only the windows version. I still run Office 98 in classic but it does not work so well (out of memory errors, wrong). Question, can Numbers do this for me or do I need to look elsewhere? I'm waiting to buy iwork until I find out. 
    G5, Mac OS X (10.4.11)
    This solved my question by WWJD  on Nov 19, 2007 9:18 PM 
    You need to look elsewhere right now. Numbers cannot link to other files, databases, etc.. The data must be on one file right now. Regards, 

    WWJD's answer still applies.
    Regards,
    Barry

Maybe you are looking for

  • AC Adapter for Toshiba Satellite M40X-129

    Hello guys, hope this is the correct forum to post my question in: I have a Toshiba Satellite M40X-129 (Model No: PSM4XE-01600CGR). My AC-Adapter is buggered so I need to get a new one. Bought the machine in Germany, am now in Tasmania / Australia. B

  • SOAP Adapter in PCK

    Hi, I am trying to get the SOAP Adapter in the PCK running, but always get an error while sending a SOAP message to the adapter. I configured the send adapter as described under help.sap.com and when I try to check the availability of the channel by

  • Reg : Strategy 50

    Hi PP Guys, I have business scenario like this Scheduling agreement is created in export plant based on that I am calling a function module and some Program for converting into PIR for the same export plant and exporting in the same export plant and

  • Trace the reference Standard movement type from customized movement type

    Hi, In my system there are few customized movement type. Can I know which Standard movement type was used as reference to create the customized movement type.

  • OBIEE 10g: BI Publisher page not showing properly

    Hello all, I have installed OBIEE 10g on a VM with operating system: XP, service pack 3. Analytics and Admin tool (I was able to create a new repository) are showing properly but when i try to login to the BI Publisher I just see two folder available