Pages/pages/pages/main.html not found

Hi all
Please accept my apologies if this is a totally daft problem.
I have a site that will have 3 main pages (for 3 different parts of
our company) all of which will have a load of sub pages. I had
thought to have the 3 main pages in the root directory, then have
all the links in a /pages directory so that the root wasn't all
clogged up. In dreamweaver, i have my links set up as:
pages/example.html - but if (after uploading to test) i am on that
page and attempt to navigate to another page within the pages
directory eg. a file which in dreamweaver has the link
pages/example2.html, i get a message saying the file
pages/pages/example2.html is not found. So I know that it's looking
for the pages directory relevant to the folder it's in, rather than
the root folder. Is there any easy way to sort this out? I am
totally new to web design, so any help would be appreciated.
Thanks
Jon

jonnyozz posted in macromedia.dreamweaver
> Hi all
Howdy.
> dreamweaver, i have my links set up as:
pages/example.html - but
> if (after uploading to test) i am on that page and
attempt to
> navigate to another page within the pages directory eg.
a file
> which in dreamweaver has the link pages/example2.html, i
get a
> message saying the file pages/pages/example2.html is not
found. So
> I know that it's looking for the pages directory
relevant to the
> folder it's in, rather than the root folder. Is there
any easy way
> to sort this out?
If the links are in each file, create your links as document
relative.
If the links are in an included file, you may want to use
site root
relative.
> I am totally new to web design, so any help would be
appreciated.
Do take some time to learn the basics of HTML and CSS.
Understanding
paths is one of the required basics to Web design.
Mark A. Boyd
Keep-On-Learnin' :)

Similar Messages

  • J2EE Engine startup page error: File [main.jsp] not found in application..

    Hi Guys,
    I have just uninstalled and reinstalled SAP Netweaver 7.01 portal. The uninstall was clean and the reinstall also went without any errors.
    However, immediately after this, when I open http://<host>:<port> I get the following error:
    404   Not Found
    The requested resource /main.jsp is not available
    Details:   File main.jsp not found in application root of alias [/] of J2EE application [sap.com/com.sap.engine.docs.examples].
    If, instead, I open portal (http://<host>:<port>/irj), it works fine.
    Anybody has any idea why this has happened and how can I resolve this issue?
    Thanks,
    Shitij
    Edited by: Shitij Bagga on May 5, 2010 9:36 AM
    Edited by: Shitij Bagga on May 5, 2010 9:37 AM

    Hi Anil,
    I don't see how this note is relevant here. It is just the j2ee engine start page which is not opening. If I go straight to the systeminfo page or the portal login page, they are all working.
    Any experience on this issue with that note u suggested? Please share.
    Thanks,
    Shitij

  • Pages is not working in my computer anymore.  Templates aren't there and I tried redownloading the application, but it says An eligible Pages application was not found in the location /Applications.

    "An eligible Pages application was not found in the location /Applications."  every time i try to update.  what do i do?

    lukasfromnull wrote:
    You will need to buy the newest iWork so it works again. I had the same problem.
    No, there is no need to re-purchase iWork. If it was installed from a retail boxed DVD, it needs to be reinstalled from the DVD. If a license was purchased electronically for the iWork '09 trial, reinstalling from the downloaded dmg will need to be done. If any of the apps were purchased from the Mac App Store, they can be reinstalled from the Mac App Store.

  • HT1296 I can't sync the songs from my computer to my ipod touch. I have gone through the iPod directions on this page and have not found them helpful. For example, I can't find the Autofill button. Can you help?

    I can't sync the songs from my computer to my ipod touch. I have gone through the directions on the iPond help page and have not found them helpful. For example, I can't find the autofill button. Can you help?

    I have already tried following those steps. I went back and tried to follow them again but they did not work. Some of my songs have synced, some have not. And I am still not seeing the Autofill icon on the bottom of the menu or anywhere else. I fear something has been corrupted here and I need to start afresh.

  • Main method not found and how to put event handlers in an inner class

    How would I put all the event handling methods in an inner class and I have another class that just that is just a main function, but when i try to run the project, it says main is not found. Here are the two classes, first one sets up everything and the second one is just main.
    mport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class JournalFrame extends JFrame {
    private JLabel dateLabel = new JLabel("Date: ");
    private JTextField dateField = new JTextField(20);
    private JPanel datePanel = new JPanel(new FlowLayout());
    BorderLayout borderLayout1 = new BorderLayout();
    JPanel radioPanel = new JPanel();
    JPanel statusPanel = new JPanel();
    JPanel textAreaPanel = new JPanel();
    JPanel buttonPanel = new JPanel();
    GridLayout gridLayout1 = new GridLayout();
    FlowLayout flowLayout1 = new FlowLayout();
    GridLayout gridLayout2 = new GridLayout();
    GridLayout gridLayout3 = new GridLayout();
    JRadioButton personalButton = new JRadioButton();
    JRadioButton businessButton = new JRadioButton();
    JLabel status = new JLabel();
    JTextArea entryArea = new JTextArea();
    JButton clearButton = new JButton();
    JButton saveButton = new JButton();
    ButtonGroup entryType = new ButtonGroup();
    public JournalFrame(){
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void initWidgets(){
    private void jbInit() throws Exception {
    this.getContentPane().setLayout(borderLayout1);
    radioPanel.setLayout(gridLayout1);
    statusPanel.setLayout(flowLayout1);
    textAreaPanel.setLayout(gridLayout2);
    buttonPanel.setLayout(gridLayout3);
    personalButton.setSelected(true);
    personalButton.setText("Personal");
    personalButton.addActionListener(new JournalFrame_personalButton_actionAdapter(this));
    businessButton.setText("Business");
    status.setText("");
    entryArea.setText("");
    entryArea.setColumns(10);
    entryArea.setLineWrap(true);
    entryArea.setRows(30);
    entryArea.setWrapStyleWord(true);
    clearButton.setPreferredSize(new Dimension(125, 25));
    clearButton.setText("Clear Journal Entry");
    clearButton.addActionListener(new JournalFrame_clearButton_actionAdapter(this));
    saveButton.setText("Save Journal Entry");
    saveButton.addActionListener(new JournalFrame_saveButton_actionAdapter(this));
    this.setTitle("Journal");
    gridLayout3.setColumns(1);
    gridLayout3.setRows(0);
    this.getContentPane().add(datePanel, BorderLayout.NORTH);
    this.getContentPane().add(radioPanel, BorderLayout.WEST);
    this.getContentPane().add(textAreaPanel, BorderLayout.CENTER);
    this.getContentPane().add(buttonPanel, BorderLayout.EAST);
    entryType.add(personalButton);
    entryType.add(businessButton);
    datePanel.add(dateLabel);
    datePanel.add(dateField);
    radioPanel.add(personalButton, null);
    radioPanel.add(businessButton, null);
    textAreaPanel.add(entryArea, null);
    buttonPanel.add(clearButton, null);
    buttonPanel.add(saveButton, null);
    this.getContentPane().add(statusPanel, BorderLayout.SOUTH);
    statusPanel.add(status, null);
    this.pack();
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    private void saveEntry() throws IOException{
    if( personalButton.isSelected())
    String file = "Personal.txt";
    BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
    entryArea.getText();
    bw.write("Date: " + dateField.getText());
    bw.newLine();
    bw.write(entryArea.getText());
    bw.newLine();
    bw.flush();
    bw.close();
    status.setText("Journal Entry Saved");
    else if (businessButton.isSelected())
    String file = "Business.txt";
    BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
    bw.write("Date: " + dateField.getText());
    bw.newLine();
    bw.write(entryArea.getText());
    bw.newLine();
    bw.flush();
    bw.close();
    status.setText("Journal Entry Saved");
    void clearButton_actionPerformed(ActionEvent e) {
    dateField.setText("");
    entryArea.setText("");
    status.setText("");
    void saveButton_actionPerformed(ActionEvent e){
    try{
    saveEntry();
    }catch(IOException error){
    status.setText("Error: Could not save journal entry");
    void personalButton_actionPerformed(ActionEvent e) {
    class JournalFrame_clearButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_clearButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.clearButton_actionPerformed(e);
    class JournalFrame_saveButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_saveButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.saveButton_actionPerformed(e);
    class JournalFrame_personalButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_personalButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.personalButton_actionPerformed(e);
    public class JournalApp {
    public static void main(String args[])
    JournalFrame journal = new JournalFrame();
    journal.setVisible(true);
    }

    Bet you're trying "java JournalFrame" when you need to "java JournalApp".
    Couple pointers toward good code.
    1) Use white space (extra returns) to separate your code into logical "paragraphs" of thought.
    2) Add comments. At a minimum a comment at the beginning should name the file, state its purpose, identify the programmer and date written. A comment at the end should state that you've reached the end. In the middle, any non-obvious code should be commented and closing braces or parens should have a comment stating what they close (if there is non-trivial separation from where they open).
    Here's a sample:
    // JournalFrame.java - this does ???
    // saisoft, 4/18/03
    // constructor
      private void jbInit() throws Exception {
        this.getContentPane().setLayout(borderLayout1);
        radioPanel.setLayout(gridLayout1);
        statusPanel.setLayout(flowLayout1);
        textAreaPanel.setLayout(gridLayout2);
        buttonPanel.setLayout(gridLayout3);
        personalButton.setSelected(true);
        personalButton.setText("Personal");
        personalButton.addActionListener(new JournalFrame_personalButton_actionAdapter(this));
        businessButton.setText("Business");
        status.setText("");
        entryArea.setText("");
        entryArea.setColumns(10);
        entryArea.setLineWrap(true);
        entryArea.setRows(30);
        entryArea.setWrapStyleWord(true);
    } // end constructor
    // end JournalFrame.java3) What would you expect to gain from that inner class? It might be more cool, but would it be more clear? I give the latter (clarity) a lot of importance.

  • Main method not found and how to implement events in an inner class

    How would I put all the event handling methods in an inner class and I have another class that just that is just a main function, but when i try to run the project, it says main is not found. Here are the two classes, first one sets up everything and the second one is just main.
    mport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class JournalFrame extends JFrame {
    private JLabel dateLabel = new JLabel("Date: ");
    private JTextField dateField = new JTextField(20);
    private JPanel datePanel = new JPanel(new FlowLayout());
    BorderLayout borderLayout1 = new BorderLayout();
    JPanel radioPanel = new JPanel();
    JPanel statusPanel = new JPanel();
    JPanel textAreaPanel = new JPanel();
    JPanel buttonPanel = new JPanel();
    GridLayout gridLayout1 = new GridLayout();
    FlowLayout flowLayout1 = new FlowLayout();
    GridLayout gridLayout2 = new GridLayout();
    GridLayout gridLayout3 = new GridLayout();
    JRadioButton personalButton = new JRadioButton();
    JRadioButton businessButton = new JRadioButton();
    JLabel status = new JLabel();
    JTextArea entryArea = new JTextArea();
    JButton clearButton = new JButton();
    JButton saveButton = new JButton();
    ButtonGroup entryType = new ButtonGroup();
    public JournalFrame(){
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void initWidgets(){
    private void jbInit() throws Exception {
    this.getContentPane().setLayout(borderLayout1);
    radioPanel.setLayout(gridLayout1);
    statusPanel.setLayout(flowLayout1);
    textAreaPanel.setLayout(gridLayout2);
    buttonPanel.setLayout(gridLayout3);
    personalButton.setSelected(true);
    personalButton.setText("Personal");
    personalButton.addActionListener(new JournalFrame_personalButton_actionAdapter(this));
    businessButton.setText("Business");
    status.setText("");
    entryArea.setText("");
    entryArea.setColumns(10);
    entryArea.setLineWrap(true);
    entryArea.setRows(30);
    entryArea.setWrapStyleWord(true);
    clearButton.setPreferredSize(new Dimension(125, 25));
    clearButton.setText("Clear Journal Entry");
    clearButton.addActionListener(new JournalFrame_clearButton_actionAdapter(this));
    saveButton.setText("Save Journal Entry");
    saveButton.addActionListener(new JournalFrame_saveButton_actionAdapter(this));
    this.setTitle("Journal");
    gridLayout3.setColumns(1);
    gridLayout3.setRows(0);
    this.getContentPane().add(datePanel, BorderLayout.NORTH);
    this.getContentPane().add(radioPanel, BorderLayout.WEST);
    this.getContentPane().add(textAreaPanel, BorderLayout.CENTER);
    this.getContentPane().add(buttonPanel, BorderLayout.EAST);
    entryType.add(personalButton);
    entryType.add(businessButton);
    datePanel.add(dateLabel);
    datePanel.add(dateField);
    radioPanel.add(personalButton, null);
    radioPanel.add(businessButton, null);
    textAreaPanel.add(entryArea, null);
    buttonPanel.add(clearButton, null);
    buttonPanel.add(saveButton, null);
    this.getContentPane().add(statusPanel, BorderLayout.SOUTH);
    statusPanel.add(status, null);
    this.pack();
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    private void saveEntry() throws IOException{
    if( personalButton.isSelected())
    String file = "Personal.txt";
    BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
    entryArea.getText();
    bw.write("Date: " + dateField.getText());
    bw.newLine();
    bw.write(entryArea.getText());
    bw.newLine();
    bw.flush();
    bw.close();
    status.setText("Journal Entry Saved");
    else if (businessButton.isSelected())
    String file = "Business.txt";
    BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
    bw.write("Date: " + dateField.getText());
    bw.newLine();
    bw.write(entryArea.getText());
    bw.newLine();
    bw.flush();
    bw.close();
    status.setText("Journal Entry Saved");
    void clearButton_actionPerformed(ActionEvent e) {
    dateField.setText("");
    entryArea.setText("");
    status.setText("");
    void saveButton_actionPerformed(ActionEvent e){
    try{
    saveEntry();
    }catch(IOException error){
    status.setText("Error: Could not save journal entry");
    void personalButton_actionPerformed(ActionEvent e) {
    class JournalFrame_clearButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_clearButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.clearButton_actionPerformed(e);
    class JournalFrame_saveButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_saveButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.saveButton_actionPerformed(e);
    class JournalFrame_personalButton_actionAdapter implements java.awt.event.ActionListener {
    JournalFrame adaptee;
    JournalFrame_personalButton_actionAdapter(JournalFrame adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.personalButton_actionPerformed(e);
    public class JournalApp {
    public static void main(String args[])
    JournalFrame journal = new JournalFrame();
    journal.setVisible(true);
    }

    Here is the complete code (with crappy indentation) :
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class JournalFrame extends JFrame {
        private JLabel dateLabel = new JLabel("Date: ");
        private JTextField dateField = new JTextField(20);
        private JPanel datePanel = new JPanel(new FlowLayout());
        BorderLayout borderLayout1 = new BorderLayout();
        JPanel radioPanel = new JPanel();
        JPanel statusPanel = new JPanel();
        JPanel textAreaPanel = new JPanel();
        JPanel buttonPanel = new JPanel();
        GridLayout gridLayout1 = new GridLayout();
        FlowLayout flowLayout1 = new FlowLayout();
        GridLayout gridLayout2 = new GridLayout();
        GridLayout gridLayout3 = new GridLayout();
        JRadioButton personalButton = new JRadioButton();
        JRadioButton businessButton = new JRadioButton();
        JLabel status = new JLabel();
        JTextArea entryArea = new JTextArea();
        JButton clearButton = new JButton();
        JButton saveButton = new JButton();
        ButtonGroup entryType = new ButtonGroup();
        public JournalFrame(){
            try {
                jbInit();
            catch(Exception e){
                e.printStackTrace();
        private void initWidgets(){
        private void jbInit() throws Exception {
            this.getContentPane().setLayout(borderLayout1);
            radioPanel.setLayout(gridLayout1);
            statusPanel.setLayout(flowLayout1);
            textAreaPanel.setLayout(gridLayout2);
            buttonPanel.setLayout(gridLayout3);
            personalButton.setSelected(true);
            personalButton.setText("Personal");
            personalButton.addActionListener(new JournalFrame_personalButton_actionAdapter(this));
            businessButton.setText("Business");
            status.setText("");
            entryArea.setText("");
            entryArea.setColumns(10);
            entryArea.setLineWrap(true);
            entryArea.setRows(30);
            entryArea.setWrapStyleWord(true);
            clearButton.setPreferredSize(new Dimension(125, 25));
            clearButton.setText("Clear Journal Entry");
            clearButton.addActionListener(new JournalFrame_clearButton_actionAdapter(this));
            saveButton.setText("Save Journal Entry");
            saveButton.addActionListener(new JournalFrame_saveButton_actionAdapter(this));
            this.setTitle("Journal");
            gridLayout3.setColumns(1);
            gridLayout3.setRows(0);
            this.getContentPane().add(datePanel, BorderLayout.NORTH);
            this.getContentPane().add(radioPanel, BorderLayout.WEST);
            this.getContentPane().add(textAreaPanel, BorderLayout.CENTER);
            this.getContentPane().add(buttonPanel, BorderLayout.EAST);
            entryType.add(personalButton);
            entryType.add(businessButton);
            datePanel.add(dateLabel);
            datePanel.add(dateField);
            radioPanel.add(personalButton, null);
            radioPanel.add(businessButton, null);
            textAreaPanel.add(entryArea, null);
            buttonPanel.add(clearButton, null);
            buttonPanel.add(saveButton, null);
            this.getContentPane().add(statusPanel, BorderLayout.SOUTH);
            statusPanel.add(status, null);
            this.pack();
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        private void saveEntry() throws IOException{
            if( personalButton.isSelected()){
                String file = "Personal.txt";
                BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
                entryArea.getText();
                bw.write("Date: " + dateField.getText());
                bw.newLine();
                bw.write(entryArea.getText());
                bw.newLine();
                bw.flush();
                bw.close();
                status.setText("Journal Entry Saved");
            else if (businessButton.isSelected()){
                String file = "Business.txt";
                BufferedWriter bw = new BufferedWriter(new FileWriter(file,true));
                bw.write("Date: " + dateField.getText());
                bw.newLine();
                bw.write(entryArea.getText());
                bw.newLine();
                bw.flush();
                bw.close();
                status.setText("Journal Entry Saved");
        void clearButton_actionPerformed(ActionEvent e) {
            dateField.setText("");
            entryArea.setText("");
            status.setText("");
        void saveButton_actionPerformed(ActionEvent e){
            try{saveEntry();}catch(IOException error){
                status.setText("Error: Could not save journal entry");
        void personalButton_actionPerformed(ActionEvent e) {
        class JournalFrame_clearButton_actionAdapter implements java.awt.event.ActionListener {
        JournalFrame adaptee;
        JournalFrame_clearButton_actionAdapter(JournalFrame adaptee) {
            this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
            adaptee.clearButton_actionPerformed(e);
    class JournalFrame_saveButton_actionAdapter implements java.awt.event.ActionListener {
        JournalFrame adaptee;
        JournalFrame_saveButton_actionAdapter(JournalFrame adaptee) {
            this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
            adaptee.saveButton_actionPerformed(e);
    class JournalFrame_personalButton_actionAdapter implements java.awt.event.ActionListener {
        JournalFrame adaptee;
        JournalFrame_personalButton_actionAdapter(JournalFrame adaptee) {
            this.adaptee = adaptee;
        public void actionPerformed(ActionEvent e) {
            adaptee.personalButton_actionPerformed(e);
    }BadLands

  • Main circuit not found in spice netlist

    Hi all,
    I'm trying to import a .cir file for vishay 6N137, however I keep getting the error main circuit not found in spice netlist.  Does anyone know what is wrong with the spice file?  I've pasted it below.
    ** Spice3 Model **
    **  --  6n137,VO2601/11, VO0600/01/11 ---
    **  High speed 10 Mbd, NMOS output, enable- high
    **  12/02/2009 mfc
    ** test conditions:VCC=5V, RL=350, CL=15pF, IF=10mA
    ** characteristics: VF=1.4V, ITH=5mA, VEH=2V, VEL=0.8V
    ** VOL=0.6V, tpLH=TpHL=70nS, tr=22nS, tf=17nS
    ** Model Node - Symbol - Pin
    ** 1 (DA)       A          2
    ** 2 (DK)       K          3
    ** 3 (GND)    GND          5
    ** 4 (VO)       VO         6
    ** 5 (VE)       VE         7
    ** 6 (VCC)    VCC          8
    .SUBCKT 6N137  DA DK GND VO VE VCC
    DD1 DA 6         DEMIT
    vV1 6 DK  DC 0
    hH1 1 GND vV1 600  ;5mA -> 3.0V
    AU1.A  [1] [DU1.A]           ADC_A
    AU1    [DU1.C DU1.A] [DU1.Y] XBUF_H   ;DIGITAL BUF WITH CTL
    AU1.C  [VE] [DU1.C]          ADC_C
    AU1.Y  [DU1.Y] [2]           DAC_Y
    R1 2 5 1K
    R3 VCC VE 6.4K
    **QQ1 VO 5 GND Q_NPN          ;OC OUTPUT
    XQ1 VO 5 GND Q_NMOS           ;NMOS OUTPUT
    .MODEL    DEMIT   D
    +IS=1.69341E-12 RS=2.5 N=2.4  XTI=4
    +EG=1.52436 CJO=1.80001E-11 VJ=0.75 M=0.5 FC=0.5
    .MODEL Q_NPN  NPN
    + IS=100P BF=100 NF=1.0 BR=1.0 TF=0 TR=0 CJE=1P CJC=1P CJS=1P VAF=1.0E30
    .SUBCKT Q_NMOS 1 2 3
    CGS  2 3 12E-12
    CGD  1 2 6E-12
    M1 1 2 3 3 MOST1 W=9.7M L=2U
    .MODEL MOST1 NMOS(LEVEL=3 KP=25U VTO=2 RD=45)
    .ENDS
    .MODEL XBUF_H D_CHIP ( BEHAVIOUR= "
    +; BUFFER W/ H-ENABLE 3-STATE CONTROL, 100 NS L-H(RISE) H-L(FALL) DELAY
    +/INPUTS C A
    +/OUTPUTS Y
    +/TABLE 2
    +; C  A  Y
    +  L  X  Z
    +  H  X  A
    +/DELAY 1
    +;INPUT OUTPUT RISE_DELAY FALL_DELAY
    +   A     Y        50N       50N
    +/CONDITIONAL_DELAY 4
    +;EVENT TO CONDITION OUTPUT MIN/MAX TIME
    +   ZH  C   (C=L)    Y     MAX     0
    +   ZL  C   (C=L)    Y     MAX     0
    +   HZ  C   (C=H)    Y     MAX     0
    +   LZ  C   (C=H)    Y     MAX     0
    +")
    .MODEL ADC_A ADC_BRIDGE (IN_LOW= 2.8 IN_HIGH = 3.0 )
    .MODEL ADC_C ADC_BRIDGE (IN_LOW= 0.8 IN_HIGH = 2.0 )
    .MODEL DAC_Y DAC_BRIDGE (OUT_LOW= 0 OUT_HIGH = 4.0 OUT_UNDEF = 0)
    .ENDS 6N137
    **==================================================================*
    * Note:                                                             *
    * Altough models can be a useful tool in evaluating device          *
    * performance, they cannot model exact device performance           *
    * under all conditions, nor are they intended to replace            *
    * breadboarding for final verification!                             *
    * Models provided by VISHAY Semiconductors GmbH are not             *
    * as fully representing all of the specifications and operating     *
    * characteristics of the semiconductor product to which the         *
    * model relates.                                                    *
    * The models describe the characteristics of typical devices.       *
    * In all cases, the current data sheet information for a given      *
    * device is the final design guideline and the only actual          *
    * performance specification.                                        *
    * VISHAY Semiconductors does not assume any liability arising       *
    * from the model use. VISHAY Semiconductors reserves the right to   *
    * change models without prior notice.                    *
    **==================================================================*

    Hi everyone!
    I am having the same problem with this spice code
    I follwed the instructions in the NI Whitepaper www.ni.com/white-paper/3173/en/
    Can anybode help? Thank you very much
    * AMP04 SPICE Macro-model
    * Description: Amplifier
    * Generic Desc: BiPolar, InAmp, LoPwr, single supply
    * Developed by: JCB / PMI
    * Revision History: 08/10/2012 - Updated to new header style
    * 1.0 ( 05/1994)
    * Copyright 1994, 2012 by Analog Devices, Inc.
    * Refer to http://www.analog.com/Analog_Root/static/techSupport/designTools/spiceModels/license/spice_general.h... for License Statement. Use of this model
    * indicates your acceptance of the terms and provisions in the License Statement.
    * BEGIN Notes:
    * Not Modeled:
    * Parameters modeled include:
    * END Notes
    * Node assignments
    * Rgain1
    * | IN-
    * | | IN+
    * | | | V-
    * | | | | REF
    * | | | | | Vout
    * | | | | | | V+
    * | | | | | | | Rgain2
    * | | | | | | | |
    .SUBCKT AMP04 1 2 3 4 5 6 7 8
    * INPUT STAGE
    R1 2 9 2E3
    R2 9 11 2E9
    R3 11 12 2E9
    R4 3 12 2E3
    IB1 2 98 22E-9
    IB2 3 98 21E-9
    VOS 12 13 25E-6
    D1 9 10 DY
    D2 1 10 DY
    D3 12 14 DY
    D4 8 14 DY
    * 1ST AMP GAIN STAGE, POLE AT 0.44 HZ
    EREF 98 0 (60,0) 1
    G1 98 15 9 1 1E-3
    R5 98 15 1E9
    C1 98 15 362E-12
    * SECOND POLE AT 1 MHZ
    G3 98 16 15 98 1E-6
    R6 98 16 1E6
    C2 98 16 159E-15
    * OUTPUT STAGE
    E2 22 98 16 98 1
    R14 22 1 200
    * 2ND AMP GAIN STAGE, POLE AT 0.44 HZ
    G2 98 17 13 23 1E-3
    R7 98 17 1E9
    C3 98 17 362E-12
    * SECOND POLE AT 1 MHZ
    G4 98 18 17 98 1E-6
    R8 98 18 1E6
    C4 98 18 159E-15
    * CMRR STAGE
    E1 98 19 POLY(2) (2,98) (3,98) 0 5 5
    R9 19 20 1E6
    R10 20 98 1
    * OUTPUT STAGE
    E3 21 98 18 98 1
    R11 21 8 11E3
    R12 21 23 11E3
    R13 23 5 100.2E3
    * OUTPUT AMPLIFIER INPUT STAGE & POLE AT 10 KHZ
    R15 29 4 5.16E3
    R16 28 4 5.16E3
    I1 7 30 10UA
    EOS 27 3 POLY(1) 20 98 30E-6 1
    Q1 29 8 30 QX
    Q2 28 27 30 QX
    R20 8 6 100.2E3
    CIN 28 29 20E-12
    * SECOND GAIN STAGE AND SLEW CLAMP
    R71 31 98 1E6
    G71 98 31 28 29 48.2E-6
    D30 31 32 DX
    D40 33 31 DX
    E10 7 32 POLY(1) 7 98 -0.5 1
    E20 33 4 POLY(1) 98 4 -0.5 1
    * OUTPUT STAGE
    RS1 7 60 1E6
    RS2 60 4 1E6
    ISY 7 4 0.124E-3
    G7 34 36 31 98 5.5E-06
    V3 35 4 DC 6
    D7 36 35 DX
    VB2 34 4 1.6
    R22 37 36 1E3
    R23 38 36 500
    C6 37 6 50E-12
    C7 38 39 50E-12
    M1 39 36 4 4 MN L=9E-6 W=1000E-6 AD=15E-9 AS=15E-9
    M2 45 36 4 4 MN L=9E-6 W=1000E-6 AD=15E-9 AS=15E-9
    D8 39 47 DX
    D9 47 45 DX
    Q3 39 40 41 QPA 8
    VB 7 40 DC 0.761
    R24 7 41 375
    Q4 41 7 43 QNA 1
    R25 7 43 50
    Q5 43 39 6 QNA 20
    Q6 46 45 6 QPA 20
    R26 46 4 23
    Q7 36 46 4 QNA 1
    M3 6 36 4 4 MN L=9E-6 W=2000E-6 AD=30E-9 AS=30E-9
    .MODEL QNA NPN(BF=253)
    .MODEL MN NMOS(LEVEL=3 VTO=1.3 RS=0.3 RD=0.3 TOX=8.5E-8
    + LD=1.48E-6 WD=1E-6 NSUB=1.53E16 UO=650 DELTA=10 VMAX=2E5
    + XJ=1.75E-6 KAPPA=0.8 ETA=0.066 CJ=0 L=9E-6 W=2000E-6)
    .MODEL QPA PNP(BF=61.5)
    .MODEL QX PNP(BF=12500)
    .MODEL DX D
    .MODEL DY D(BV=6.0)
    .ENDS

  • Main-class not found error while clicking on the jar

    I have a created a jar �FinARM.jar� for my swing application using eclipse.
    Clicking on this jar, it is giving the problem main-class not found.
    It contains the MANIFEST.MF file, with entry Main-Class: FinAlignTest for the main class.
    FinAlignTest is my main class.
    I have a similar jar created with a small swing application (Single file) clicking on it can open the swing application.
    It is also attached above.

    Hi ,
    My Apllication runs with out any warnings or errors. But when i create a jar file using eclipse it is giving this problem.
    When i double click on the jar file i am getting this problem. MANIFEST.MF entry contains the main method entry.
    I have created another jar (Which contains a simple java file, swing application) from eclipse export option.
    It works fine on click.
    But jar FinARM.jar contains 5 files (Swing app), which even fetch some data from the database.
    My jar is placein the same machine where it can fetch data from DB
    Can u plese tell me whats the problem.
    -regards
    Anu

  • File sap/hcm_lr_cre/index.html NOT found!

    Dear Experts,
    I am facing the below issue when i click on Create Leave Request from launchpad
    File sap/hcm_lr_cre/index.html NOT found!
    I am clue less I have recently applied all the notes mentioned
    SAP Fiori - UI Add-on SP09 update troubleshooting
    Kindly help
    Regards,
    Vijay
    Tags edited by: Michael Appleby

    Dear Masa,
    The application is opening perfectly once I assign STD. Role.SAP_HCM_BCR_EMPLOYEE_X1
    Earlier I have assigned only custom role which I have created for custom Cataloge & group with the help of below link.
    Creating PFCG Role and Assigning Catalogs and Groups - SAP Fiori principal apps for SAP ERP 1.0 - SAP Library
    My requirement and approach
    We are going to use the only Leave Request application for Employee. So for that I had to create a custom Catalogue & Group with standard Create Leave Request application. and Created a custom role to assign the created Catalogue & Group  ( to display only Leave Request application.
    URL: /sap/bc/ui5_ui5/ui2/ushell/shells/abap/Fiorilaunchpad.html?sap-client=550&sap-language=EN
    Regards,
    Vijay

  • Install apex3.0.1 in XE : /doc_helper/toc3.html not found

    if I install apex3.0.1 in XE:
    1. successful install as SYS:
    @apexins password SYSAUX SYSAUX TEMP /i/
    2. performing next step to complete the upgrade:
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    he create directory, p.e. c:\apex301/apex/images
    then error occurs:
    /doc_helper/toc3.html not found
    and process aborts
    looking at windows in c:\apex301/apex/images :
    there are toc1 and toc2 in /doc_helper, but no toc3 ???
    any idea?

    Hi,
    I have problem with "apxldimg.sql" script (SO:Windows):
    SQL> @c:/apex/apxldimg.sql c:/apex
    PL/SQL procedure successfully completed.
    old 1: create directory APEX_IMAGES as '&1/apex/images'
    new 1: create directory APEX_IMAGES as 'c:/oraclexe/app/apex/images'
    Directory created.
    declare
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.24
    Directory dropped.
    The 2nd problem is that after upgrade Apex i cannot find database users f.e. HR (to unlock) in 3.0.1 Apex interface. How manage database users (not Apex users)?
    Last problem - When I create users in Apex 3.0.1 only accessible schema is SYSTEM. Is it normal ?

  • Call Forms Forum from Oracle Forms Main Page - Error 404 Not Found

    Hello !
    The Layout and fuctionality of the Oracle Forms Forum has changed - very nice !
    But it's not possible to call the Oracle Forms Forum
    from the Oracle Forms Main Page !
    Error-message :
    404 Not Found
    OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.
    Thomas

    Please use the [Post-Upgrade Problems|http://forums.oracle.com/forums/forum.jspa?forumID=587&start=0] to report Forums related problems.
    This is the Forms Forum.
    Tony

  • Page definition is not found while running JSR286 portlet in WebCenter app

    Hi All,
    I have ADF application which has 3 different task flows 1. my service 2. my car 3. my bike.
    which I have placed into a single bounded task flow called repairTaskflow.
    I have created a JSR286 portlet out of a repairTaskflow. I am trying to consume it in an Webcenter application. When I place the portlet on to the page in Web center application
    and run the page. I see the following error in the console.
    oracle.jbo.NoDefException: JBO-25002: Definition ***.xxxx.view.pageDefs.applications_task_flow_applications_task_flow_CreateEmptyApplicationPageDef of type Form Binding Definition is not found.
         at oracle.jbo.mom.DefinitionManager.findDefObjectUsingMetadataObject(DefinitionManager.java:2703)
         at oracle.jbo.mom.DefinitionManager.findDefObjectUsingMetadataObject(DefinitionManager.java:2715)
         at oracle.adf.model.binding.DCBindingContainerDef.findDefObject(DCBindingContainerDef.java:292)
         at oracle.adf.model.binding.DCBindingContainerReference.getDef(DCBindingContainerReference.java:107)
         at oracle.adf.model.BindingContext.findBindingContainerDefByPath(BindingContext.java:1624)
         at oracle.adf.controller.internal.binding.RegionUtils.findOrCreateBindingContainer(RegionUtils.java:246)
         at oracle.adfinternal.controller.util.model.DataBindingActivityImpl.getActivityBindingContainer(DataBindingActivityImpl.java:233)
         at oracle.adfinternal.controller.util.model.DataBindingActivityImpl.beforeExecute(DataBindingActivityImpl.java:77)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:969)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:878)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:43)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRender(BridgeImpl.java:1002)
    Please find below the portlet.xml file
    <portlet-app version="2.0" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <portlet id="adf_taskflow_WEB_INF_test_task_flow_xml">
            <description>test-task-flow</description>
            <portlet-name>test-task-flow</portlet-name>
            <display-name>test-task-flow</display-name>
            <portlet-class>oracle.portlet.bridge.adf.application.ADFBridgePortlet</portlet-class>
            <init-param>
                <name>javax.portlet.faces.defaultViewId.view</name>
                <value>/adf.task-flow?adf.tfDoc=/WEB-INF/adfp-portlet-bridge-container.xml&amp;adf.tfId=adfp-portlet-bridge-container&amp;_fragmentTaskFlowDoc=/WEB-INF/test-task-flow.xml&amp;_fragmentTaskFlowId=test-task-flow</value>
            </init-param>
            <supports>
                <mime-type>text/html</mime-type>
                <portlet-mode>VIEW</portlet-mode>
            </supports>
            <supported-locale>en</supported-locale>
            <portlet-info>
                <title>test-task-flow</title>
                <short-title>test-task-flow</short-title>
            </portlet-info>
            <security-role-ref>
                <role-name>valid-users</role-name>
            </security-role-ref>
            <container-runtime-option>
                <name>com.oracle.portlet.requireIFrame</name>
                <value>true</value>
            </container-runtime-option>
            <container-runtime-option>
                <name>com.oracle.portlet.minimumWsrpVersion</name>
                <value>2</value>
            </container-runtime-option>
        </portlet>
        <portlet id="adf_taskflow_WEB_INF_single_task_flow_definition_xml">
            <description>single-task-flow-definition</description>
            <portlet-name>single-task-flow-definition</portlet-name>
            <display-name>single-task-flow-definition</display-name>
            <portlet-class>oracle.portlet.bridge.adf.application.ADFBridgePortlet</portlet-class>
            <init-param>
                <name>javax.portlet.faces.defaultViewId.view</name>
                <value>/adf.task-flow?adf.tfDoc=/WEB-INF/adfp-portlet-bridge-container.xml&amp;adf.tfId=adfp-portlet-bridge-container&amp;_fragmentTaskFlowDoc=/WEB-INF/single-task-flow-definition.xml&amp;_fragmentTaskFlowId=single-task-flow-definition</value>
            </init-param>
            <supports>
                <mime-type>text/html</mime-type>
                <portlet-mode>VIEW</portlet-mode>
            </supports>
            <supported-locale>en</supported-locale>
            <portlet-info>
                <title>single-task-flow-definition</title>
                <short-title>single-task-flow-definition</short-title>
            </portlet-info>
            <container-runtime-option>
                <name>com.oracle.portlet.requireIFrame</name>
                <value>true</value>
            </container-runtime-option>
            <container-runtime-option>
                <name>com.oracle.portlet.minimumWsrpVersion</name>
                <value>2</value>
            </container-runtime-option>
        </portlet>
        <portlet id="adf_taskflow_WEB_INF_applications_task_flow_xml">
            <description>applications-task-flow</description>
            <portlet-name>applications-task-flow</portlet-name>
            <display-name>applications-task-flow</display-name>
            <portlet-class>oracle.portlet.bridge.adf.application.ADFBridgePortlet</portlet-class>
            <init-param>
                <name>javax.portlet.faces.defaultViewId.view</name>
                <value>/adf.task-flow?adf.tfDoc=/WEB-INF/adfp-portlet-bridge-container.xml&amp;adf.tfId=adfp-portlet-bridge-container&amp;_fragmentTaskFlowDoc=/WEB-INF/applications-task-flow.xml&amp;_fragmentTaskFlowId=applications-task-flow</value>
            </init-param>
            <supports>
                <mime-type>text/html</mime-type>
                <portlet-mode>VIEW</portlet-mode>
            </supports>
            <supported-locale>en</supported-locale>
            <portlet-info>
                <title>applications-task-flow</title>
                <short-title>applications-task-flow</short-title>
            </portlet-info>
            <container-runtime-option>
                <name>com.oracle.portlet.requireIFrame</name>
                <value>true</value>
            </container-runtime-option>
            <container-runtime-option>
                <name>com.oracle.portlet.minimumWsrpVersion</name>
                <value>2</value>
            </container-runtime-option>
        </portlet>
        <custom-portlet-mode>
            <portlet-mode>about</portlet-mode>
        </custom-portlet-mode>
        <custom-portlet-mode>
            <portlet-mode>config</portlet-mode>
        </custom-portlet-mode>
        <custom-portlet-mode>
            <portlet-mode>edit_defaults</portlet-mode>
        </custom-portlet-mode>
        <custom-portlet-mode>
            <portlet-mode>preview</portlet-mode>
        </custom-portlet-mode>
        <custom-portlet-mode>
            <portlet-mode>print</portlet-mode>
        </custom-portlet-mode>
    </portlet-app> In all the 3 task flow there is at least one method activity placed either as the default activity or part of activities.
    In service page taskflow the default activity is a method activity. If I convert the service-task-flow alone as a portlet, it failed. showing the similar error : pagedef not found.
    Then I created the portlet out of car task-flow whose default activity is a page. This time I can view the portlet, the car list page. Once I click create button on that page which again goes through a method activity, then it failed showing the error mentioned above
    It seems where ever there are method activities on the taskflow, the portlet cannot find the pagedef and its throwing error . I have cross checked the deployed war file and all the pagedef's are bundled into it.
    Any suggestions are much appreciated.
    Thanks,
    Morgan.
    Edited by: Morgan Freeman on Aug 19, 2011 3:27 AM
    Edited by: Morgan Freeman on Aug 19, 2011 3:30 AM
    Edited by: Morgan Freeman on Aug 19, 2011 6:02 AM

    Hi All,
    I solved this issue. The path of pagedef files was not recognized when I publish the taskflows as portlets. Though it runs when I place it as a region on jspx file.
    The folder structure where I placed pagedefs earlier was some thing like this in ViewController -> Application Resources
    com.mycomp.view.pagedefs
    When I wanted to consume the portlet in the portal application, all the pagedefs under this path were not visible to the portlet.
    Once I change the pagedef folder to the immediate folder after the Application Resources, it found all the pagedefs
    Now my folder structure in ViewController -> Application Resources
    view.pagedefs
    Is this a bug? or Am I missing some thing.
    Thanks,
    Morgan.

  • No blog page only 404 not found error

    I've just rebuilt one of my sites with iweb 08, after 10 solid hours of work there is no blog page when I check the upload on safari and firefox, all I see is a 404 not found error, a simple solution is all I'm after as I'm a simple web designer!
    iWeb 08 *** the life out the fun I use to have with iweb 06 and iweb sites and transmit.

    Ok Tom, so after 3 days of experiments and talking to my domain hosts and server people, everything seems to be fine except there are missing images in the blog section and the icons are still missing.
    I completely deleted the files on the server and then completely refreshed the files in iweb and saved that to the site folder.
    iWeb published to a site folder the site folder and the index html file outside of that folder.
    All I did was upload the site folder it's as fool proof as I could make it but there are still missing files on the web page, there are 2 links that don't show up only the frames.
    I have found that transmit loses concentration and I have to re synchronise all the time to get all the files through is there a better app?
    www.artbabes.com.au

  • First Page -Error 404--Not Found

    Hi All,
    I started learning ADF recently, I have created EO,VO,AM. My Jdev version is 11.1.1.3.0.
    I tested with BC4J Tester everything is working fine.
    But when I create JSF page and say Run I am getting the following error in the internet explorerer browser.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    This is the first time i am trying to run the page. could any one please let me know what are the setting i need to do,In Order to view my page.
    Thanks
    Kumar.

    So first make sure the page is NOT under the web-inf folder (as John correctly stated) and then dragyour page onto the adfc-config.xml file. The the page gets hopefully registered.
    If not drag a new view from the component palette onto the adfc-config.xml, give the view a name like 'TestMyApp' (don't let the name end in '.jspx'), create the page (double click on the icon) and put something onto the page.
    Then you can change the view controllers project properties and select run/debug select the default run configuration and edit it. Under 'launch settings' select the adfc-config.xml as target, uncheck the 'attempt to Run Active...' and now select 'ADF Task Flow' in the left hand side tree. Now you select the newly created view TestMYApp and save your changes.
    When you now run the app using the menu run (or debug) command, your app starts with the selected page 'TestMyApp'.
    Timo

  • Page wwv_flow.accept not found

    Hello,
    I recently installed Oracle XE 11G and then Apex 4.1.1 on a Windows 7 Home Premium server. I went to create a workspace before I restored any data or apps. I created a new Workspace, and after inputting all the data and receiving the confirmation, I received a Page Not Found error with the following URL:
    http://localhost:8080/apex/wwv_flow.accept
    Any ideas as to what the problem is?

    Scott,
    Thanks. I tried this but it is not even displaying anything. All the info I find is about using htmldb_item package inside a SQL statement. I must mention that my region is a PL/SQL block (not a SQL query). I have a lot of custom code inside which I have my SQL statement too. Here's my code snippet:
    if (substr(v_service, 0, l_index-1) is not null) then
    select HTMLDB_ITEM.CHECKBOX(1,substr(v_service, 0, l_index-1)) "Z1",
    service_name into v_temp, v_sname
    from services
    where service_id = v_value;
    end if;
    Thanks.
    Shuba
    PS: Who are you? You seem to be the guru of apex and you answer everyone's queries, which is so nice! :-)

Maybe you are looking for