Manual import of workstations not working on Linux

Hi
We are currently running our Zenworks installation on Netware 6.5. We are
running Zen 7, sp1. All this is working fine, but we want to move over to
the Linux platform.
My question is this : How does Zenworks work and perform on the SUSE
platform ? Last time we considerd moving to SUSE there was an issue when a
manual import of a workstation was performed, that did not work. Does
anyone know if this is still an issue. Hos does the imaging part of Zen
perform ?
Thanks
Hans P.

On Wed, 06 Jun 2007 09:23:58 GMT, Hans Petter Malme wrote:
> Last time we considerd moving to SUSE there was an issue when a
> manual import of a workstation was performed, that did not work. Does
> anyone know if this is still an issue. Hos does the imaging part of Zen
> perform ?
that shouldn't matter.. performance wise I don't have any numbers but I
think it is the same.. benefit on the linux backend is that you can manage
the pxe menu easily
Marcus Breiden
If you are asked to email me information please change -- to - in my e-mail
address.
The content of this mail is my private and personal opinion.
http://www.edu-magic.net

Similar Messages

  • Wireless not working in linux, but works fine in windows vista

    Hello!
    I have installed Unbreakable Enterprise Linux 4 in a dual boot config. with Window Vista on a Compaq Presario laptop. After install completed I found that my on board Broadcom Wireless Adapter (Dell 1390 Mini PC card) was not recognized. I have tried installing NDISwrapper versions 1.48 and later 1.47 (after uninstalling 1.48) because everytime I got to the "modprobe ndiswrapper" received a fatal error about an unknown symbol or parameter, and on install I also encountered a "CONFIG_4KSTACKS" error as well. The good part is the light on my laptop for the wireless adapter finally came on and the driver (bcmwl5.inf) appears to be installed and the wireless adapter identified as being present, but it still doesn't show up in the network manager gui interface. So I am out of ideas if any one can give me a suggestion for a solution I would appreciate it.

    Hi there,,,,,
    I have Oracle Enterprise Linux 5 installed and Intel wifi 5100 card installed on my laptop. Wireless card does not work in Linux it works fine with Vista, I have dual boot. I have downloaded and installed the microcode for the wireless card for Linux,,,it is now active but it does not take ip address from dhcp and nor does it connect when i supply manual ip. it does not even scan for any wireless network. I have WEP enabled on my wireless network. It just says disconnected.....
    Please help me.....i have been trying to get this thing work for 3 weeks.
    thanks.

  • KeyListener not working in Linux

    Hello guys, I'm having a weird problem I was hoping I could get resolved.
    I finished a Pong applet for my Java class, and it works just fine under Windows and on my Mac.
    But when I run it under Linux, the Applet doesn't work correctly.
    The applet draws, and my timer works, but my KeyListener does not work.
    I believe all of my Java files are updated properly.
    But I do not understand why KeyListener does not work under Linux, but it does in Windows.
    I then made a very basic applet just to test my KeyListener, and it still does not work.
    This is how I was taught to do KeyListeners, but if I'm doing something wrong, please help me out!
    here is the basic program code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JApplet implements KeyListener
    int x = 0;
    int y = 250;
    public void init()
    addKeyListener(this);
    public void paint(Graphics g)
    g.setColor(Color.white);
    g.fillRect(0,0,500,500);
    g.setColor(Color.black);
    g.fillRect(x,y,50,50);
    public void keyPressed(KeyEvent event)
    int keyCode = event.getKeyCode();
    if(keyCode == KeyEvent.VK_RIGHT)
    x += 10;
    public void keyReleased(KeyEvent event)
    public void keyTyped(KeyEvent event)

    What if don't use a KeyListener but instead use key binding? For instance,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    @SuppressWarnings("serial")
    public class Test2 extends JPanel {
      private static final int DELTA_X = 10;
      private static final int DELTA_Y = DELTA_X;
      private static final Dimension MAIN_SIZE = new Dimension(600, 600);
      enum Arrows {
        LEFT(KeyEvent.VK_LEFT, -DELTA_X, 0),
        RIGHT(KeyEvent.VK_RIGHT, DELTA_X, 0),
        UP(KeyEvent.VK_UP, 0, -DELTA_Y),
        DOWN(KeyEvent.VK_DOWN, 0, DELTA_Y);
        private int keyCode;
        private int deltaX, deltaY;
        private Arrows(int keyCode, int deltaX, int deltaY) {
          this.keyCode = keyCode;
          this.deltaX = deltaX;
          this.deltaY = deltaY;
        public int getDeltaX() {
          return deltaX;
        public int getDeltaY() {
          return deltaY;
        public int getKeyCode() {
          return keyCode;
      int x = 0;
      int y = 250;
      public Test2() {
        setBackground(Color.white);
        setPreferredSize(MAIN_SIZE);
        InputMap inMap = getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
        ActionMap actMap = getActionMap();
        for (Arrows arrow : Arrows.values()) {
          inMap.put(KeyStroke.getKeyStroke(arrow.getKeyCode(), 0), arrow);
          actMap.put(arrow, new MyAction(arrow));
      private class MyAction extends AbstractAction {
        private Arrows arrow;
        public MyAction(Arrows arrow) {
          this.arrow = arrow;
        public void actionPerformed(ActionEvent e) {
          x += arrow.getDeltaX();
          y += arrow.getDeltaY();
          repaint();
      @Override
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.black);
        g.fillRect(x, y, 50, 50);
    import javax.swing.JApplet;
    @SuppressWarnings("serial")
    public class TestApplet extends JApplet {
      public void init() {
        try {
          javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
            public void run() {
              createGUI();
        } catch (Exception e) {
          System.err.println("createGUI didn't successfully complete");
      private void createGUI() {
        getContentPane().add(new Test2());
    }

  • JCombox does not work under linux (fedora) could you help me???

    Hi All,
    I am implementing a GUI for a linux application. This GUI works fine under windows system. But the JCombobox does not work under Linux system. Would you help me to solve it? Thank you very much!..
    The problem is that I cannot select any other item except the first item in the dropdown box of JCombobox. There is no event generated when I click the combobox, while events are generated for other Buttons.
    This problem exists for the following code when I maximize the window. When the window is minimize to some extend in my problem, it is OK.
    Here is the simplify code:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.Serializable;
    import java.util.Vector;
    import javax.swing.ComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.event.ListDataEvent;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    import java.awt.event.*;
    import javax.swing.*;
    //carmen
    import javax.swing.filechooser.*;
    import javax.swing.event.*;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.border.*;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    import java.io.*;
    import java.util.*;
    import java.lang.String.*;
    public class Test extends JFrame
         private JComboBox jComboBox1;
         private JComboBox jComboBox2;
         private JPanel contentPane;
         private JTabbedPane jTabbedPane1;
         //Main Tab
         private JPanel Main;
         private JPanel OutputSimSet;
         private JPanel Test;
         private JPanel ScriptGenTab;
         private JPanel ResultTab;
    //Result Tab
    private JPanel SimResult;
         public Test()
              super();
              //initializeComponent();
              contentPane = (JPanel)this.getContentPane();
              jTabbedPane1 = new JTabbedPane();
              Main = new JPanel();
              OutputSimSet = new JPanel();
              Test = new JPanel();
              ScriptGenTab = new JPanel();
              ResultTab = new JPanel();
              SimResult = new JPanel();
         jComboBox1 = new JComboBox(
                        new String[]{"Item 1","Item 2", "Item 3"});
                        jComboBox1.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ae) {
                        System.out.println("Yeah");
         jComboBox2 = new JComboBox(
                                  new String[]{"Item 1","Item 2", "Item 3"});
                                  jComboBox2.addActionListener(new ActionListener() {
                                  public void actionPerformed(ActionEvent ae) {
                                  System.out.println("Yeah");
              // jTabbedPane1
              jTabbedPane1.addTab("Main", Main);
              jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
              jTabbedPane1.addTab("Simulation Result", ResultTab);
              jTabbedPane1.addChangeListener(new ChangeListener() {
                   public void stateChanged(ChangeEvent e)
                        jTabbedPane1_stateChanged(e);
              // contentPane
              contentPane.setLayout(new BorderLayout(0, 0));
              contentPane.add(jTabbedPane1, BorderLayout.CENTER);
              // Main
              //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Main.setLayout(new BorderLayout(0, 0));
              Main.add(OutputSimSet,BorderLayout.NORTH);
              OutputSimSet.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              OutputSimSet.add(Test, 0);
              Test.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Test.add(jComboBox1,0);
              //ResultTab
              ResultTab.setLayout(new BorderLayout(0, 0));
              ResultTab.setBorder(new TitledBorder(""));
              ResultTab.add(SimResult, BorderLayout.NORTH);
              SimResult.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              SimResult.add(jComboBox2,0);
              // Test
              this.setTitle("Test");
              this.setLocation(new Point(0, 0));
              this.setSize(new Dimension(600, 500));
              this.setVisible(true);
         public void initializeComponent()
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
              System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jComboBox1_actionPerformed(ActionEvent e)
              System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
              Object o = jComboBox1.getSelectedItem();
              System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
              // TODO: Add any handling code here for the particular object being selected
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Create and set up the window.
    Test frame = new Test();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    package oct03_JCBox;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class Test extends JFrame
    private JComboBox jComboBox1;
    private JComboBox jComboBox2;
    private JPanel contentPane;
    private JTabbedPane jTabbedPane1;
    //Main Tab
    private JPanel Main;
    //private JPanel OutputSimSet;
    //private JPanel Test;
    private JPanel ScriptGenTab;
    private JPanel ResultTab;
    //Result Tab
    //private JPanel SimResult;
    public Test()
         super();
         //initializeComponent();
         contentPane = (JPanel)this.getContentPane();
         jTabbedPane1 = new JTabbedPane();
         Main = new JPanel();
         ScriptGenTab = new JPanel();
         ResultTab = new JPanel();
    //     OutputSimSet = new JPanel();
    //     Test = new JPanel();
    //     SimResult = new JPanel();
         jComboBox1 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent ae) {
              System.out.println("Yeah");
         jComboBox2 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox2.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   System.out.println("Yeah");
         // Main
         //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.add(jComboBox1);
         //ResultTab  -----     
         ResultTab.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         ResultTab.add(jComboBox2);
        //      jTabbedPane1
         jTabbedPane1.addTab("Main", Main);
         jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
         jTabbedPane1.addTab("Simulation Result", ResultTab);
         jTabbedPane1.addChangeListener(new ChangeListener() {
              public void stateChanged(ChangeEvent e)
                   jTabbedPane1_stateChanged(e);
         // contentPane
         contentPane.setLayout(new BorderLayout(0, 0));
         contentPane.add(jTabbedPane1, BorderLayout.CENTER);
         // Test
         this.setTitle("Test");
         this.setLocation(new Point(0, 0));
         this.setSize(new Dimension(600, 500));
         this.setVisible(true);
         public void initializeComponent()
    //     /** Add Component Without a Layout Manager (Absolute Positioning) */
    //     private void addComponent(Container container,Component c,int x,int y,int width,int height)
    //     c.setBounds(x,y,width,height);
    //     container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
         System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
         // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
    //     private void jComboBox1_actionPerformed(ActionEvent e)
    //     System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
    //     Object o = jComboBox1.getSelectedItem();
    //     System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
    //     // TODO: Add any handling code here for the particular object being selected
         * Create the GUI and show it. For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
         private static void createAndShowGUI() {
         //Create and set up the window.
         Test frame = new Test();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.pack();
         frame.setVisible(true);
    public static void main(String[] args) {
         //Schedule a job for the event-dispatching thread:
         //creating and showing this application's GUI.
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
         public void run() {
         createAndShowGUI();
    } Try this - you use too many unnecessary JPanels.
    Which way you prefer with actionPerformed should work either way.
    I think your problem was too many unnecessary Panels and set all attributes before it is added, perhaps,
    not add the panel first and then try to set attributes like layout, color, etc...

  • Why my RMI is not Working in Linux???

    Hiii how ru?
    I am Rahul here
    Well I have a problem that my RMI in not working on Linux.. so can u tell me the solution to my problem???
    When i am typing following command i am getting exception as RmiNotBoundException
    java -Djava.security.policy=my.policy ChaClient&
    however my Server is Starting normally but client is not connection to server.
    so please tell me the solution to this problem
    U can contact me at
    [email protected]
    [email protected]
    Thank u Very much...

    i ran into the same issue dealing with RMI and Linux. My issue was the the stub that linux was giving you gave in the host field the ip number of "127.0.0.1" which tried to make the client connect to itself. this is how i got around it:
    java -Djava.rmi.server.hostname=<ip that other clients will connect to>
    so, for instance, if on a client you connect to the server with an IP of 10.5.0.1, then when starting up the java vm, you start it
    java -Djava.rmi.server.hostname=10.5.0.1
    hopefully that helps

  • Importing bookmarks I go to file and the IMPORT link is not working ... not Illuminated ... what can I do?

    I want to import bookmarks from Explorer and I go to File Tab and the IMPORT link is not working or not illuminated?

    Make sure that you not run Firefox in permanent [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • "Do not import duplicates" is not working

    The "Do not import duplicates" box is checked for all imports but is not working.  This is both for my Nikon DSLR, my Canon S-95 and my iPhone. This was happening with both Snow Leapord and Lion as operating system.  I have been using Aperture since the first release and only in the last few months has this been an issue.  Any thoughts?

    There's a known (and old) bug when duplicate identification fails on photos
    that have been imported from another catalog.
    Sent from phone.

  • Webutil not working in linux

    Hi all,
    i have insert image using webutil(oracle forms 10g) to database in windows o.s. it was successful.
    but when i have tried it in solaries o.s. .
    It is not working in linux how to do it in solaries o.s.
    when i am clicking on the browse button it is showing pl/sql error how to solve it.
    please guide me ..

    HI Anderas,
    i am using using a demo form of webutil which is available on internet i.e WEBUTIL_DOCS.fmb
    which is working fine on windows sp2(when i am clicking on the browse button)
    but it is not working on linux when i am clicking on the browse button it is showing pl/sql error.
    code in browse butrton
    Declare
         LC$Fichier Varchar2(128 ) ;
    Begin
    LC$Fichier := PKG_FICHIERS.Selection ;
    If LC$Fichier is not null Then
    :TRANSFERTS.FIC_SOURCE := LC$Fichier ;
    End if ;
    End ;
    and the package is
    package specification
    ==================
    PACKAGE PKG_FICHIERS IS
    -- Sélection d'un fichier --
    FUNCTION Selection ( PC$Filtre IN Varchar2 DEFAULT '|All files|*.*|' ) RETURN VARCHAR2 ;
    END;
    package body
    =============
    PACKAGE BODY PKG_FICHIERS IS
    -- Sélection d'un fichier --
    FUNCTION Selection ( PC$Filtre IN Varchar2 DEFAULT '|All files|*.*|' )RETURN VARCHAR2
    IS
    LC$Path Varchar2(128) ;
    LC$Fichier Varchar2(256) ;
    LC$Filtre          Varchar2(100) := PC$Filtre ;
    Begin
         -- Répertoire temporaire --
         LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
    LC$Fichier := WEBUTIL_FILE.FILE_OPEN_DIALOG
         LC$Path,
         LC$Filtre,
         'Select a file to upload'
    Return LC$Fichier ;
    END Selection ;
    END;
    please reply..

  • Applications associated with workstations not working

    Hello,
    I have onld zen 7.x, on netware.
    Applications associated with workstations not working or appearing in one container. Not sure if it every worked. Apps work fine with users.
    I am in a bind, since I need to get the app out in the workstation space.
    It maybe rights or simple install error with the ZEN from the begining.
    thanks for any help or ideas.. Yes I know I need to get to Zen 11.
    Phil

    PhilJannusch,
    > Applications associated with workstations not working or appearing in
    > one container. Not sure if it every worked. Apps work fine with users.
    >
    > I am in a bind, since I need to get the app out in the workstation
    > space.
    Please tell us more as "not working" can mean a lot of things. So:
    Are they user or workstation associated?
    Are those for whick they do not work (users or workstations) all in the
    same container?
    In what way do they not work?
    Any errors?
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • CS2 AS: Scripted "Import XML" is not working (like manual import does)

    I have problem where importing a XML (merge import + delete unmatched) by script simply doesnt work, where the manual import works 100% fine!!??
    (I'm exporting the XML, refill it with new text data (localisation process actually), and bring the xml back to commit the change in the Indesign document).
    With the script, the XML get imported as a child in the XML
    I have xml structure like:
    root
    node
    and get something like
    root
    node
    root
    node
    My code looks like this (sorry for the formatting):
    tell application "Adobe InDesign CS2"
    tell XML import preferences
    set create link to XML to false
    set ignore unmatched incoming to true
    set ignore whitespace to false
    set import style to merge import
    set import text into tables to false
    set import to selected to false
    set repeat text elements to false
    set remove unmatched existing to true
    end tell
    try
    import XML (document 1) from pFilePath
    on error pmsg
    display dialog pmsg
    end try
    end tell
    Is there something obvious that i'm misssing??
    ps: I have checked the XML structure correspondance already.. but i dont think that's the cause of problem as the manual import is working.
    Thanks for any help!
    Eric

    Hi Eric,
    If you can see the behavior in the user interface, you can see it in scripting. I think it makes perfect sense to have the XML import preferences set at the document level, because some documents need one set of preferences; other documents need another. I think (hope) that the user documentation covers the differences between application and document preferences (if not, I do, in my book).
    If you see a preferences object on both the application and the document, assume you want to use the document preferences. Unless you're trying to set preferences for new documents.
    Thanks,
    Ole

  • Drawstring is not working in Linux !!!

    hi everbody
    Graphics.drawString is not working properly on Linux ,
    how can i fix it.
    what is problem.
    on XP , 10gR2 db evertything is ok. 326x160 picture and "Sample Text." seen on browser.
    on Oracle Unbrakeble Linux , 11g db 326x160 picture seen on browser but "Sample Text." absent on picture !!!!!
    complete code is below
    Thanks.
    create or replace and compile java source named java1 as
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    public class MyGraph
    public static byte[] vcanvas (int width ,int height ) throws IOException
    BufferedImage bimage = new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB);
    Graphics g = bimage.createGraphics();
    g.setColor(Color.white);
    g.fillRect(0, 0, width - 1, height - 1);
    g.setColor(Color.red);
    g.drawRect(0,0,width-1,height-1);
    g.setColor(Color.black);
    g.drawRect(2,2,width-3,height-3);
    g.drawString("Sample Text.",10,height/2);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JPEGImageEncoder jpeg = JPEGCodec.createJPEGEncoder(baos);
    jpeg.encode(bimage);
    baos.flush();
    baos.close();
    return baos.toByteArray();
    } // MyGraph
    create or replace function javaimage(w number,h number) return varchar2
    as LANGUAGE JAVA name 'MyGraph.vcanvas(int, int) return byte[]';
    create or replace procedure imgXYZ is
    vData varchar2(32767);
    begin
    owa_util.mime_header('image/jpeg', FALSE );
    owa_util.http_header_close;
    vData:=javaimage(326,160);
    htp.prn(vData);
    end;
    http://server:port/schema/imgXYZ

    You have to start Http server for that :
    $ $ORACLE_HOME/Apache/Apache/bin/apachectl start

  • FormsCentral PDFs not working for Linux and Unix users

    I recently created a PDF (using Indesign > Acrobat IX Pro > Formscentral [AFC]) that includes radio buttons, form fields, linked videos set to play in the PDF once clicked and (after running through AFC) a submit button.
    The form has been distributed and we have already had hundreds of successful responses collected in the AFC site, all is working well there.
    One major problem we are having is that we have a lot of Linux/Unix users and the response from them is that they can't activate the videos, the form fields are out of kilter alignmentwise and the submit button does not work. Even when using the proper Adobe Acrobat Reader (v9, for example).
    Is the Adobe development team aware of problems such as these for Linux/Unix platforms and is there a suggested fix that they know of?
    The link to the actual file is here: http://cms.iopscience.iop.org/alfresco/d/d/workspace/SpacesStore/b5a48eac-8642-11e2-8cf8-e 50acbc9fd86/NJP-Video-Abstracts-Competition-2013.pdf
    Thanks in advance

    Hi Jesse,
    can you email me ([email protected]) the original PDF (before you imported it in FormsCentral)? Also, I'm curious about the format of the video in the PDF. Does the video in the PDF worked in Linux/Unix before going through the FormsCentral import/export?
    When I look at your PDF on my Red Hat Entrprise Linux 6.0 system with Reader 9.5.4 it does look fine (location of the fields) but the video generate an error (which I'm still investigating). I have not yet try the submit button on your form (as I don't want to submit bad data to you) but I seem to have an issue with the submit button on other PDF forms I generated (when I try to submit from a linux machine). Still investigating that as well.
    Gen

  • Import/removal policy not working javax.naming.NameNotFound

    Hi, i am experiencing some problems with my import/removal policy...more so the removal workstation policy not working.
    When the policy schedule time initiates - the following shows up on the zenworks removal workstation removal screen:
    30-Oct-2009 17:35:39 javax.naming.NameNotFoundException [Root exception is com.novell.service.jncp.NDSException: ccode = -601 (0xfffffda7)]
    I keep seeing this on the screen and in the zenwsrem.log file.
    I am running:
    Zenworks 6.5 sp2
    Netware 6.5 sp5
    Can anyone help as i want to keep my tree clean from all the thousands of workstation objects that are generating and are mostly redundant.
    Any help with this would be very helpful.
    I do not know why this is happening...i have read a few tids, but the naming of my container does not use any special characters, just "Workstations".
    regards
    Dennis

    Did any of the removals succeed?
    i.e.
    20-Sep-2009 23:00:31 Removed workstation:T82715.Workstations.BilletRd.WF
    20-Sep-2009 23:00:32 Removed workstation:T87490.Workstations.BuxtonRd.WF
    20-Sep-2009 23:00:32 Removed workstation:T87810.Workstations.BuxtonRd.WF
    Are they still in eDir?
    I'm assuming that edir is clean.. so the only other thing that would come to
    mind is that the server/workstation policy doesn't have rights to delete
    from the OU's your workstations are in?
    I didn't go thru the log exactly line by line, but it looks like its always
    bombing on workstations in
    your BuxtonRd.WF and CecilRd.WF containers.
    >>> On 11/5/2009 at 10:26 AM, in message
    <[email protected]>,
    dchitolie<[email protected]> wrote:
    > In relation to the tid, i do not have any / in my containers?
    > Here is my Zenwsrem.log:
    >
    > NameNotFoundException [Root exception
    > iscom.novell.service.jncp.NDSException: ccode = -601 (0xfffffda7)]
    > 27-Dec-2008 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 03-Jan-2009 23:00:03 Removed
    workstation:T87306.Workstations.BuxtonRd.WF
    > 03-Jan-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 10-Jan-2009 23:00:50 Removed
    workstation:T84740.Workstations.BilletRd.WF
    > 10-Jan-2009 23:00:50 Removed
    workstation:T87424.Workstations.BilletRd.WF
    > 10-Jan-2009 23:00:50 Removed
    workstation:T87324.Workstations.BuxtonRd.WF
    > 10-Jan-2009 23:00:51 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-Jan-2009 23:00:16 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 31-Jan-2009 23:00:07 Removed
    workstation:T85290.Workstations.BilletRd.WF
    > 31-Jan-2009 23:00:08 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    >
    > 14-Mar-2009 23:00:36 Removed
    workstation:T87327.Workstations.BuxtonRd.WF
    > 14-Mar-2009 23:00:37 Removed
    workstation:T87484.Workstations.BuxtonRd.WF
    > 14-Mar-2009 23:00:39 Removed workstation:T93380.Workstations.CecilRd.WF
    > 14-Mar-2009 23:00:39 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 22-Mar-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 28-Mar-2009 23:00:48 Removed workstation:T88849.Workstations.CecilRd.WF
    > 28-Mar-2009 23:00:49 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 29-Mar-2009 23:00:27 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 02-Apr-2009 17:51:08 Could not authenticate as policy:
    > 05-Apr-2009 23:00:31 Removed workstation:T8102T.Workstations.CecilRd.WF
    > 05-Apr-2009 23:00:32 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 12-Apr-2009 23:00:23 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-Apr-2009 11:12:04 Could not authenticate as policy:
    > 19-Apr-2009 23:00:23 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 26-Apr-2009 23:00:21 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 03-May-2009 22:59:55 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 10-May-2009 23:00:04 Removed workstation:T88842.Workstations.CecilRd.WF
    > 10-May-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-May-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 24-May-2009 22:59:47 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 31-May-2009 23:00:15 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 07-Jun-2009 23:00:49 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 14-Jun-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 21-Jun-2009 23:00:38 Removed workstation:T88834.Workstations.CecilRd.WF
    > 21-Jun-2009 23:00:38 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 28-Jun-2009 08:09:11 No removal policy found.
    > 28-Jun-2009 09:08:54 No removal policy found.
    > 28-Jun-2009 10:08:37 No removal policy found.
    > 28-Jun-2009 11:08:20 No removal policy found.
    > 28-Jun-2009 12:08:03 No removal policy found.
    > 28-Jun-2009 13:07:45 No removal policy found.
    > 28-Jun-2009 14:07:28 No removal policy found.
    > 28-Jun-2009 15:07:11 No removal policy found.
    > 28-Jun-2009 16:06:55 No removal policy found.
    > 28-Jun-2009 17:06:37 No removal policy found.
    > 28-Jun-2009 18:06:20 No removal policy found.
    > 28-Jun-2009 19:06:03 No removal policy found.
    > 28-Jun-2009 20:05:46 No removal policy found.
    > 28-Jun-2009 21:05:29 No removal policy found.
    > 28-Jun-2009 22:05:12 No removal policy found.
    > 28-Jun-2009 22:55:58 No removal policy found.
    > 28-Jun-2009 23:04:55 No removal policy found.
    > 29-Jun-2009 00:04:38 No removal policy found.
    > 29-Jun-2009 01:04:21 No removal policy found.
    > 29-Jun-2009 02:04:04 No removal policy found.
    > 29-Jun-2009 03:03:47 No removal policy found.
    > 29-Jun-2009 04:03:30 No removal policy found.
    > 29-Jun-2009 05:03:13 No removal policy found.
    > 29-Jun-2009 06:02:56 No removal policy found.
    > 29-Jun-2009 07:02:38 No removal policy found.
    > 29-Jun-2009 08:02:22 No removal policy found.
    > 29-Jun-2009 09:02:05 No removal policy found.
    > 05-Jul-2009 23:00:30 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 12-Jul-2009 23:00:44 Removed workstation:T82363.Workstations.CecilRd.WF
    > 12-Jul-2009 23:00:44 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 19-Jul-2009 23:00:28 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 26-Jul-2009 23:00:19 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 02-Aug-2009 23:00:41 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 09-Aug-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 16-Aug-2009 23:00:22 Removed
    workstation:T85264.Workstations.BuxtonRd.WF
    > 16-Aug-2009 23:00:22 Removed
    workstation:T85266.Workstations.BuxtonRd.WF
    > 16-Aug-2009 23:00:24 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 23-Aug-2009 23:00:20 Removed
    workstation:T85261.Workstations.BuxtonRd.WF
    > 23-Aug-2009 23:00:21 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Aug-2009 23:00:02 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 06-Sep-2009 23:00:19 Removed workstation:T82722.Workstations.CecilRd.WF
    > 06-Sep-2009 23:00:20 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 13-Sep-2009 23:00:13 Removed
    workstation:T85336.Workstations.BilletRd.WF
    > 13-Sep-2009 23:00:15 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 20-Sep-2009 23:00:31 Removed
    workstation:T82715.Workstations.BilletRd.WF
    > 20-Sep-2009 23:00:32 Removed
    workstation:T87490.Workstations.BuxtonRd.WF
    > 20-Sep-2009 23:00:32 Removed
    workstation:T87810.Workstations.BuxtonRd.WF
    > 20-Sep-2009 23:00:33 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 27-Sep-2009 23:00:03 Removed
    workstation:T85179.Workstations.BilletRd.WF
    > 27-Sep-2009 23:00:04 Removed
    workstation:T87494.Workstations.BuxtonRd.WF
    > 27-Sep-2009 23:00:05 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 04-Oct-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 11-Oct-2009 23:00:03 javax.naming.NamingException [Root exception
    > iscom.novell.service.jncp.NDSException: ccode = -637
    > (0xfffffd83)];remaining name 'T87395'
    > 11-Oct-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 18-Oct-2009 23:00:35 Removed
    workstation:T87395.Workstations.BuxtonRd.WF
    > 18-Oct-2009 23:00:36 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Oct-2009 17:30:31 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Oct-2009 17:35:39 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    >
    > Any ideas.....
    > thanks
    > regards
    >
    > Dennis--
    dchitolie-------------------------------------------------------------------
    -----dchitolie's Profile:
    > http://forums.novell.com/member.php?userid=4304View this thread:
    > http://forums.novell.com/showthread.php?t=391202

  • Manually set IP addresses not working as needed

    We have setup our DCHP server in that we manually not dynamically give IP addresses to workstations according to there mac addresses. But most of the time the the workstations go and get the IP addresses dynamically, and in this case most of the time we get IP conflict. Does it mean the giving IP addresses manually does not work properly in the DHCP configuration. For reasons, we need to use Manually assigned IP addresses not dynamically. And how can I trace why the manually configured workstation go and get IP addresses dynamically ?

    It should work properly. Please post your configuration.

  • DVD/CD drive not working on linux - ubuntu or linux mint

    CD/DVD drive doesn't work with linux mint or ubuntu. Tried mounting it manually but fails.

    Hi there,
    Is the drive being detected when you click Computer or My computer ?
    if not, you can try the following.
    Run Regedit then go to
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
    look for upper and lower filters ; Right click both of them and delete it.
    alternatively you go to this link and download the patch:
    http://askiris.toshiba.com/ToshibaSupportSite/search.do;jsessionid=78DE0C1BFF71FB71B290A830E7E71 A5D?cmd=displayKC&docType=kc&externalId=445782xml& sliceId=&dialogID=47618490&stateId=0%200%204798466 7
    If all else fails, then you might need to try booting on the recovery cd. since it will isolate wether if your problem is software related. if it still fails, then you might already need to have a CD replacement.

Maybe you are looking for

  • Abobe exportpdf doen not work with windows 8.1 and chrome or ieXI

    When using exportpdf, the file is outputted to the cloud, converted and downloaded. Everything to this point looks good.  All messages  indicate a successful run.  When you open the xlsx file there no characters only little squares.  I think this mea

  • SMSY//Logical component definition - multiple roles for one system?

    Dear all, as our client has a divided system landscape (three-tier operational line as well as two-tier development line) some systems have more than one role to fill. The development system on development line is source system for all developments,

  • How long to download Win 7 N SP 1 KB968211 ? Hours ?

    I had/bought new with Win 7 64 bit. & Media Player 12, etc., etc During Tech service & me clueless Win 7 N 64 bit was installed. Is there a free & easy way to regain Media Player Or an free online alternative -to download, play, record My music CD, D

  • Can't write to external hard drive

    I have a MacMini G4 and and iBook G3 both running Tiger. I bought a Verbatim USB 2.0 500 GB external hard drive and reformatted it to HFS+. I can write files from the iBook without any problems. However, from the MacMini, the external drive mounts, I

  • Separateframe=true

    Hi I am new to the oracle forms 10g.. first time working on forms.. Just want to know how parameters separateframe=true affects the functionlity ??? Also having other question in which year oracle introduces 10g forms n reports n which were the previ