Jdeveloper text wizard

Hi,
I installed text wizard add-in like it explained in : http://www.oracle.com/technology/software/products/text/text.html but when i restart jdeveloper i dont find text wizard, what can i do please ?.
thanks

Just as an aside, how do you use Text Wizard in JDeveloper 10g? Whilst I can create the jsp pages and the SQL scripts, I can't get them to run. I guess my real question is when ' when do you invoke the wizard?' - do you need an application workspace, workspace, project, model, viewcontroller, etc.?
The OBE makes it look really easy but refers to JDeveloper 9i and doesn't seem to relate to 10g.
Any help would be much appreciated.
Brian

Similar Messages

  • Announcement - New JDeveloper Text wizards

    The Text and Catalog Search Wizards are add-ins for JDeveloper9i which provide a menu-driven interface for generating simple Text and Catalog Search applications.
    The source code is generated through JDeveloper and can be easily modified.
    You can download the wizards from the Text page (otn.oracle.com/products/text -> software).
    There is an OBE lesson that shows how to use them: http://otn.oracle.com/products/oracle9i/htdocs/9iober2/obe9ir2/obe-cnt/html/jdevtext/jdevtext.htm

    Hi,
    has anyone tried to use the Text Wizard using the OC4J Server in JDeveloper9i (v 9.0.3)?
    I've followed the OBE lesson instructions to the letter (many times!) but omitting the Apache alias setup.
    I get Error 404 every time.
    Any suggestions?
    Brian

  • Oracle Text Wizard - JDeveloper

    Issue:
    The JDeveloper - Oracle Text Wizard, does not work on
    JDeveloper 9.0.5.1
    Any clue?
    Thank you
    http://otn.oracle.com/software/products/text/text.html

    You may want to try posting this question on the Jdeveloper forum
    Forums Home » Oracle Technology Network (OTN) » Products » Developer Suite » JDeveloper

  • Text Wizard for Jdeveloper 11g

    Hy,
    I am using JDeveloper to create an application, and I need Text Wizard, Can anyone tell me if I can install Text Wizard on Jdeveloper 11? If yes, how can i do it.
    Thank you.

    The only place you'd be able to get it would be via Oracle Support https://support.oracle.com and filing an SR. However, any application that you might develop with 9.0.5 and that wizard would most definitely not be using the latest technology, so I'm not sure how useful it's going to be.
    John

  • Oracle Text Wizard

    Issue:
    The JDeveloper - Oracle Text Wizard, does not work on
    JDeveloper 9.0.5.1
    Any clue?
    Thank you
    http://otn.oracle.com/software/products/text/text.html

    I believe that extension was built for JDeveloper 9.0.4. The extension API changed slightly after 9.0.4, so it may not work in 9.0.5.1.
    You might want to check on the database forums to see if they have any plans to update this extension.
    -SteveA

  • Oracle Text Wizards (CatSearch)

    Will the Oracle Text wizards (CatSearch and Text search) be made available for JDeveloper 10g? When? If not, what did they do and how could I recreate manually? Thanks.

    Is there any ETA.
    I have to work out a POC for a customer and the only have 905 JDeveloper. When will this extension be available.

  • Jdeveloper PJC wizard demo not working and how to debug?

    Hi,
    Has anyone try the follow the steps in PJC wizard demo in http://www.oracle.com/technology/sample_code/products/forms/index.html?
    And is it working?
    I tried created the demo.securefield jar file in Jdeveloper in add the package in implementation class in the form text item but the function is not working.
    How I can debug whether the jave code is fired or not?
    And does anyone has the source code that is working can be shared.
    Regards,
    Anna

    Hello,
    You can put some System.out.println("the text i want to output"); functions anywhere in the java code, then see the output in the java console.
    Francois

  • Where to find "Text Wizard"

    Hi all !
    I found an artikle about JDevelopers Text- and Catalog- Wizard ( http://otn.oracle.com/products/oracle9i/htdocs/9iober2/obe9ir2/obe-cnt/html/jdevtext/jdevtext.htm )
    Please, where can i find the AddIn software to install it and to use it ?
    Thank You !

    Hi,
    The add-in software is available here - http://otn.oracle.com/software/products/text/content.html
    Hope this helps.
    Sujatha
    http://otn.oracle.com/sample_code/content.html

  • Writing a JSR168 portlet WITHOUT using Jdeveloper or "wizards"

    I have a JSR168 portlet that is built using Maven (http://maven.apache.org/ if you don't know what that is).
    It deploys and operates perfectly well into a portlet container such as Pluto (the standard, reference container from Apache).
    Pluto supplies a Maven plugin, that takes the vanilla web.xml and other configuration e.g. portlet.xml and adds the necessary configuration to run the portlet in the container. I believe there is an Ant plugin that does exactly the same thing.
    It adds the following conf to teh web.xml;
    <servlet>
    <servlet-name>my-portlet-name</servlet-name>
    <servlet-class>org.apache.pluto.core.PortletServlet</servlet-class>
    <init-param>
    <param-name>portlet-name</param-name>
    <param-value>my-portlet-name</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>my-portlet-name</servlet-name>
    <url-pattern>/PlutoInvoker/my-portlet-name</url-pattern>
    </servlet-mapping>
    This is the "magic" that glues my portlet to the portlet container.
    What I wish to know, is how to make my JSR168 portlet deploy into Oracle Portal 10g without EVER using JDeveloper. What is the 'magic' I have to apply to my web.xml or portlet.xml or other configuration that will men I can deploy my portlet war into the app server and make it talk turkey with the portal container. I can cope with just having a customised web.xml that I have to copy into the WAR file if need be ... if I could find some guidance what should be in that file.
    It seems that every search I've done in google or though the doco we have here starts with "Start Jdeveloper and select XXX in the portlet wizard".
    I do not use Jdeveloper and nor will I. I will continue to build my Java code in a correct fashion, i.e. on the command line with my standard build tools that don't involve the IDE. Don't get me wrong, I use an IDE, but one should never be mandated. In my book, "wizards" are about the worst imaginable way to get any programming task completed.

    Hi Marcel
    With respect, it's patently obvious that we know how to develop a portlet without Jdeveloper, because if you read the message you would have been able to discern that this is the way we are accustomed to doing it, and it's faster, easier and more portable that way. I've been doing J2EE development since the first version of the spec and well before there was an Oracle implementation of it.
    You don't actually need an EAR file, as a WAR will suffice and the dcmctl command-line utility can supply everything else in its arguments (like, context-path and the like), and it allows each WAR artifact to be deployed in different times, i.e. when they are built on the integration server. I find EAR files usually too heavyweight especially as I rarely write EJBs, as opposed to using e.g. Spring.
    Using the web browser is not an option for automated deployment and acceptance testing from an integration build server.
    Configuring the portal side of things looks decidedly a different matter and I've not found anyway to do it from the command line, it demands the browser, which is a let-down.
    It's terribly disappointing the paucity of information about automation of deployment as opposed to the positively verdant amount of presentations, tutorials and documentation that assumes top-to-bottom Oracle tooling and environment and browser-based configuration. Even where it's actually possible Oracle doesn't seem to want to tell people about it or do as I believe they should, which is regard this form of deployment and configuration as the default way to teach developers how to use their products. None of this helps build and deploy to Oracle products using test-driven development, continuous integration, and automated acceptance testing, all of which are usually regarded as essential parts of a modern developers toolkit by the best minds in the business.
    So after we're left alone to discover how to do this by ourselves for a month you can forgive my disappointment at being lectured like I was some neophyte who doesn't know how to make a WAR file with textedit.

  • Creating JDeveloper Custom Wizards...

    Is it possible to create and add my own wizards to the JDeveloper IDE or perhaps even to change an existing wizard to trigger a code template upon finishing?
    Thanks,
    Sergio

    Yes it is. Check out the JDeveloper Extensions page
    http://otn.oracle.com/products/jdev/htdocs/partners/addins/content.html
    Have a look at the Getting started Guide and you can also download the extension SDK from there

  • Text search wizard with jdeveloper 10.1.2

    hi all:
    i'm having a problem dealing with the text wizard in jdeveloper 10.1.2, after creation of jsp files when i compile the page it gives alot of errors
    these errors:
    Error: cannot access directory oracle\jsp\runtime; verify that directory is reachable from classpath and/or sourcepath
    Error: cannot access directory javax\servlet; verify that directory is reachable from classpath and/or sourcepath
    Error: cannot access directory javax\servlet\jsp; verify that directory is reachable from classpath and/or sourcepath
    Warning: The file is not part of the active project Project1.jpr, compiled class will be written to Project1.jpr output directory

    Please refer
    http://www.oracle.com/technology/pub/articles/cioroianu_jsfajax.html?rssid=rss_otn_articles

  • Problems with Text&Catalog search Wizards for JDeveloperStudio10131

    Hi,
    <?xml version='1.0' encoding='windows-1252'?>
    <extensions xmlns="http://xmlns.oracle.com/jdeveloper/905/extensions">
    <feature>
    <group name="Text Search Extensions">
    <group name="Text Wizard">
    <description>Text Search Wizard</description>
    <extension>
    <addin>oracle.text.wizards.textsearch.WizardAddinTextSearch</addin>
    <gallery>
    <name>oracle.text.wizards.textsearch.WizardAddinTextSearch</name>
    <description>Text Wizard</description>
    <help>Text Wizard</help>
    <category>General</category>
    <folder>Oracle Text Wizards</folder>
    </gallery>
    </extension>
    </group>
    </group>
    <help>
    <helpURL>TextWizard10.1.0.3.0.1.jar!/help/TextWizard_help.hs</helpURL>
    </help>
    </feature>
    </extensions>
    ================= Extensions ==============
    Severe(2,388): No class def found for addin oracle.text.wizards.textsearch.WizardAddinTextSearch
    Severe(2,386): No class def found for addin oracle.text.wizards.catsearch.WizardAddinCatSearch
    ========================================
    Can anybody help me?
    Regards
    Boris

    Take the MyClass from the top of the page and the following actionPerformed and other class:
    public void actionPerformed(java.awt.event.ActionEvent actionEvent) {
    String ae = actionEvent.getActionCommand();
    System.out.println(ae);
    if(ae.equals("Button")){
    String strArea = text.area.getText();
    String toFind = search.getText();
    begin = strArea.indexOf(toFind);
    end = toFind.length()+begin;
    text.highlight(begin,end);
    public class MyAreaClass extends javax.swing.JFrame implements MouseListener, ActionListener, ClipboardOwner {
    protected JPanel fullPanel;
    public JTextArea area;
    /** Creates new Full */
    public MyAreaClass() {
    fullPanel = new JPanel();
    fullPanel.setBorder(BorderFactory.createLineBorder(Color.black));
    String content = "Here is some content....";
    area = new JTextArea(content);
    area.append(content2);
    area.setSelectionColor(Color.red);
    Font f = new Font("Arial",0,11);
    area.setFont(f);
    area.setEditable(true);
    int x=0,y=0,x2,y2;
    double xt,yt;
    Dimension d = new Dimension(x,y);
    d = Toolkit.getDefaultToolkit().getScreenSize();
    xt = d.getWidth();
    yt = d.getHeight();
    x2 = (int) xt;
    x2 = x2/50*49;
    y2 = (int) yt;
    y2 /= 3;
    Dimension d2 = new Dimension(x2,y2);
    area.setPreferredSize(d2);
    area.addMouseListener(this);
    fullPanel.add(new JScrollPane(area));
    }

  • Project Wizard (JDeveloper )

    Hi, help me, please.
    In JDeveloper Project Wizard creating
    entity from VIEW contenting GROUP BY
    - PW givs error:
    "Entity creation error, no primary key
    atributes and does not support ROWID!"
    Thank you
    Regards Nodari
    null

    Just found it:
    build.properties
    Thanks,
    Jonathan

  • Oracle Text:Problems in starting

    hi all
    i am working on Oracle 10g in windows and i want to do Text Mining,but i am having some problems.when i use the JDeveloper and start the text wizard it createa a jsp file but it is not loading properly.is there any document from which i can learn how to do it.i think i missed out some configurations for the http server.i really need it very soon.
    thanks in advance

    hello
    i had followed the tutorial "Building JSP Applications that Use Oracle Text to Search Content in the Database using JDeveloper" and using that now i am able to load the jsp file but cant search as it shows the following error.
    The requested method POST is not allowed for the URL /textsearch/mysearch.jsp.
    i dont know what is the problem.can u help me.i am using Oracle 10g and i have added a Alias in the httpd.conf instead of the ojsp.conf file that has been mentioned in the tutorial as there is no such file in 10g.can u help me

  • Error while creating a connection from JDeveloper to OC4J instance on 9iAS

    I m trying to create a connection to the application server(9iAS release 2) from the JDeveloper(9.0.2.822) using the JDeveloper connection wizard. I followed all the steps, but when i click on "Test Connection" button to test the connection the error i get is "IO Error: Connection refused: connect". The description of the settings i provided in the wizard step are as follows,
    Step 1
    Connection name:- Connection1
    Connection Type:- Oracle 9i Application Server
    Step 2
    Username:- admin
    Password:- welcome
    Deploy Password checkbox: Unchecked
    Step 3 (the 9iAS server address is 192.168.30.162)
    URL:- ormi://192.168.30.162/
    Target Web Site:- http-web-site
    Local dir where admin.jar is installed for Oracle 9iAS is installed:- C:\ora9i_d2k\j2ee\home
    Step 4
    Test Connection: “IO Error: Connection refused: connect”
    Please advise.
    Thanks
    Unmesh

    Hi,
    You cannot connect to an Oracle9iAS environment directly using the connections node. You can only connect to an individual OC4J instance using this technique.
    You need to use Oracle9iAS Distributed Management Configuration (DCM). See JDeveloper Help under Creating Application Server Connections

Maybe you are looking for

  • Can I have two iTunes account on one iPad?

    can I have two different iTunes account on one iPad

  • How to use my second hard drive on my desktop pro

    I have a 12 core desktop pro with 2 HD's installed. How can I use my second hard drive independently? To use it as a second computer unto itself without all the extra add on's I have on drive one.

  • Alert message(Query) for a Production order?

    Hi Experts, I want to get an alert message for the production order doucument based on the due date of it. The user must get the alert a  one day before the duedate of the document. How to write the Query for it? Urgent ,waiting for earliest reply. R

  • Scenario mapping - help required

    Scenario: A Customer sends a material (for e.g., SUGARCANE) to the company (SAP Implementing). It processes it and send back as SUGAR. The customer is charged for the services rendered. The stock of sugarcane/sugar should be visible in the system. Pl

  • Taxware SAP configuration on the basis of product code

    Hi, I request you to send the cofiguration steps for Taxware and SAP on the basis of product code. Thanks in advance, Subhabrata