Forms configuration : JTable within Forms

in 10g form with jre6 ver 1.6.0_33 I'm not able to figure out what creates the error while Implementation Class property
Importing Class oracle.forms.fd.FJTable...
Exception occurred: java.lang.ClassNotFoundException: oracle.forms.fd.FJTable
the step that I've done is :
Copy the fjtable16.jar file in the /forms/java directory
Edit the /forms/server/formsweb.cfg file to add the jar file to the archive and archive_jini tags

actually I've both the file there fjtable16.jar & fjtable.jar in
\DevSuiteHome_1\forms\java\fjtable.jar
shall I remove fjtable.jar

Similar Messages

  • Rendering a JTable within a JTable Cell

    How can one render a JTable within another JTable cell?

    You could return JTable in your TableCellRenderer.
    Denis Krukovsky
    http://sourceforge.net/projects/dotuseful/

  • Configuring Log4j within a Portal WAR

    I'm having difficulty setting up log4j through commons-logging within my portal WAR project.
    I've put commons-logging.jar, and log4j.jar in my WEB-INF/lib directory and made sure my log4j.properties file is in the classpath. However, when I run the application, the logging occurs based on the settings defined in the Admin Console. Regardless of what I have defined in the log4j.properties file, the server seems to take priority.
    Can this be changed? If so, how?
    Thanks,
    Dan

    Dan,
    I had a similar problem because I wanted to define my own log4j config regardless of what other portal apps were deployed in the BEA domain or what log4j was the default for the domain. This is what I do:
    1) Put your log4j config file in the WEB-INF classes dir (or I guess it could be in some other place that the CLASSPATH knows of)
    2) Create a servlet that looks like:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.log4j.xml.*;
    public class Log4jInitServlet extends HttpServlet {
    private static final long serialVersionUID = 23456;
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    DOMConfigurator.configure(Thread.currentThread().getContextClassLoader().getResource("myLog4jConfigFile.xml"));
    public void doGet(HttpServletRequest req, HttpServletResponse resp) {
    3) Add the servlet definition in the web.xml and add a <load-on-startup>1</load-on-startup>
    That should do it.
    - Peter

  • What are the best configuration settings within the weblogic administration console for performance?

    Hello,
    Does anyone know of a good tutorial for setting the best configurations within the adminstrative console for weblogic servers?
    Thanks,
    Al

    Hi,
    Please refer the below links,
    http://middlewaremagic.com/weblogic/?p=6384
    http://docs.oracle.com/cd/E13222_01/wls/docs100/perform/topten.html
    Regard,
    Ramprakash Arun
    Industry Vertical
    Please Mark Helpful / Correct Answer if so

  • Office 2013 - Is there a way to when installing that you can change the default save location without having to configure it within the client?

    So, What I am trying to do is deploy Office 2013 throughout our company, and I do not want the users to save their business or personal files created within Office 2013 on the C: drive or Sky Drive. We have what is called the U: drive and I'd like to know
    if there's a quick registry tweak that I can use to not only change the default location upon setting up a computer, but to deploy through Group Policy? 
    One other question perhaps; Is there a way to change not only the file location to default to only the one place, but also is there a way to also set a specific size limit to folders and prevent certain files from being saved (videos and personal pictures). 
    I have our network pretty tight as to what or who can go where, and what not, I am just really for an answer or some help to the default location...anything you have GREATLY APPRECIATED! 

    You can use the OCT and/or domain Group Policy, to customise the Office experience and settings for your users:
    https://technet.microsoft.com/en-us/library/ee460874.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Cell Editor for a JTable within A JTable Cell

    My individual cells each contain a seperate JTable and I need to write a cell editor for it. I'm not really sure how to write one so if someone show me where I can find some useful examples of such a cell editor I would greatly appreciate it. Thank you for your time. :-)

    So, you have a big table whose cells each contain a little table. I assume you already have the little tables working correctly with cell editors and so on, and you want to write a cell editor for the big table. Correct?
    My problem with this is that I can't imagine how this would actually work in practice. Suppose I click on a cell in the big table; then the cell renderer displays the appropriate little table. At this point should I see one of the cells in that little table selected, and should I be able to use the Tab key to move around the little table? And if so, then I can't use the Tab key to move around the big table. Next, suppose I press F2 indicating that I want to edit the little table. What should change? Should I now be able to tab around the little table, whereas I couldn't before? And if so, how do I indicate that I have stopped editing the little table? Pressing Enter indicates to the little table's cell editor that its editing is finished, but how should I tell the big table's cell editor that its editing is finished?
    Perhaps if you can answer this, you may have a better idea of how to solve your problem. Sorry I only have questions and not answers.

  • Resize small jtable within jframe

    Hi, I have a small jtable in a jframe and would like to enable the user to resize this table by dragging its edges via mouse? How can I do this?
    thx
    D.

    Try adding the JScrollPane onto a JPanel with GridLayout and add the JPanel to the north of the content pane of the JFrame using BorderLayout.
    Is this what you intended to do?

  • Unable to grow and shrink a JTable within a JScrollPane

    I need help with the following: I want to display a JTable component with a calendar like design. Dragging the size of the parent component (having a border to drag) should dynamically adapt the JTable' size and its cells. Since the JTable has a minimum size shrinking the parent component should show scrollbars if the minimum size is reached horizontal or vertical respectively.
    I have the JTable put ijnto the viewport of a scrollpane and the scrollpane is the child component of a JPanel. So dragging appears with the panel.
    The JTable cells do nicely but from a specific size on there is a grey area on the lower part of the JPanel which is not repainted. What is causing this? What do I have to do? I'm lost in the jungle of invalidate(), repaint(), update(), doLayout() etc.
    Here is my SSCCE (at least I hope it is one):
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.ComponentAdapter;
    import java.awt.event.ComponentEvent;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.UIManager;
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    //public class MyComponent extends JScrollPane
    public class MyComponent extends JPanel
    ///   class data
         static public final long serialVersionUID = -1L;
         static public final int c_ColWidth = 29;
         static public final int c_RowHeight = 18;
         static public final int c_TableWidth = 930;
         static public final int c_TableHeight = 234;
    ///   instance data
         private String[] m_strColHeader = {
              "01", "02", "03", "04", "05", "06", "07", "08", "09", "10",
              "11", "12", "13", "14", "15", "16", "17", "18", "19", "20",
              "21", "22", "23", "24", "25", "26", "27", "28", "29", "30",
              "31",
         private Object[][] m_Data = new Object[12][33];// data array
         private TableModel m_DataModel = new AbstractTableModel() {
              static public final long serialVersionUID = -1L;
              public int getColumnCount() { return m_strColHeader.length; }
              public int getRowCount() { return m_Data != null ? m_Data.length : 0; }
              public Object getValueAt(int row, int col) { return m_Data[row][col]; }
              public String getColumnName(int col) { return m_strColHeader[col]; }
              public Class getColumnClass(int col) { return String.class; }
              public boolean isCellEditable(int row, int col) { return false; }
              public void setValueAt(Object aValue, int row, int col) {
                   m_Data[row][col] = aValue;
         protected BorderLayout myLayout = new BorderLayout();
         protected JTable tableView = new JTable(m_DataModel);
         protected JScrollPane scrollPane = new JScrollPane(tableView);
    ///   public class methods
         static public void main(String[] args)
              try
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              catch(Exception e)
                   e.printStackTrace();
              MyComponent comp1 = new MyComponent();
              JFrame frame = new JFrame("MyComponent");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              frame.getContentPane().add(comp1);
              frame.pack();
              frame.setVisible(true);
    ///   constructors
         public MyComponent()
              try
                   jbInit();
                   initTable();
              catch(Exception ex)
                   ex.printStackTrace();
    ///   protected instance methods
         protected void initTable()
              // do nor allow user interaction with calendar view
              tableView.getTableHeader().setReorderingAllowed(false);
              tableView.getTableHeader().setResizingAllowed(false);
              //tableView.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
              tableView.setRowHeight(c_RowHeight);
              // adapt all CellRenderers
              for (int i = 0; i < m_DataModel.getColumnCount(); i++)
                   TableColumn column = tableView.getColumn(tableView.getColumnName(i));
                   column.setMinWidth(c_ColWidth);
                   column.setPreferredWidth(c_ColWidth);
    ///   private instance methods
         private void jbInit() throws Exception
              this.setLayout(myLayout);
              this.add(scrollPane, BorderLayout.CENTER);
              scrollPane.getViewport().setMinimumSize(new Dimension(c_TableWidth, c_TableHeight));
              scrollPane.getViewport().setPreferredSize(new Dimension(c_TableWidth, c_TableHeight));
              tableView.setPreferredSize(new Dimension(c_TableWidth, c_TableHeight));
              addComponentListener(new MyComponent_componentAdapter(this));
    ///   event handling
         public void componentBoundsChanged(ComponentEvent e)
              scrollPane.setBounds(0, 0, getWidth(), getHeight());
              scrollPane.getViewport().setBounds(0, 0, getWidth(), getHeight());
              //tableView.setBounds(0, 0, getWidth(), getHeight());
              tableView.setSize(scrollPane.getViewport().getWidth(), scrollPane.getViewport().getHeight());
              tableView.setRowHeight(getBounds().height / 13 < c_RowHeight ?
                        c_RowHeight : getBounds().height / 13);
              System.out.println("componentBoundsChanged: getBounds() = " + getBounds());
              System.out.println("componentBoundsChanged: getSize() = " + getSize());
              System.out.println("componentBoundsChanged: getViewport().getBounds() = " + scrollPane.getViewport().getBounds());
              System.out.println("componentBoundsChanged: getViewport().getSize() = " + scrollPane.getViewport().getSize());
              System.out.println("componentBoundsChanged: tableView.getBounds() = " + tableView.getBounds());
              System.out.println("componentBoundsChanged: tableView.getSize() = " + tableView.getSize());
    ///   event adapters
    class MyComponent_componentAdapter extends ComponentAdapter
         protected MyComponent adaptee;
         MyComponent_componentAdapter(MyComponent adaptee)
              this.adaptee = adaptee;
         public void componentMoved(ComponentEvent e)
              adaptee.componentBoundsChanged(e);
         public void componentResized(ComponentEvent e)
              adaptee.componentBoundsChanged(e);
    }

    I guess i am facing exactly opposite problem.
    What i want to do is, I have nested tables in a scroll pane. So I don't want a scroll pane to show exactly whatever visible rows are there in Table (No extra space). If i expand any row, i want scroll pane to be able to show expanded.

  • How to configure WRT54G within VPN

    Hi,
    In my area we usually get internet through a cat5 cable (uplink) that directly goes into computer's lan port, without using a modem.  Our so called Isp has made a network out of  a single internet connection and supply it by providing individual uplinks via switch to others.  In order to connect to internet we have to run a small software (or dialler) that authenicates unique user name and password and ensure that only one computer is connected at one time.  Once connected the internet stays live unless we disconnect it.  The connection detail as it appears in status tab is as follows:
    Device name   WAN Miniport (PPTP)
    Device type     VPN
    Server type     PPP
    Transports       TCP/IP
    Authentication  MS CHAP V2
    Compression   MPPC
    PPP Multilink framing   Off
    Server IP address       125.xxx.xxx.x
    Client  IP address       125.xxx.xxx.xx
    Local Lan connection status says:
    IP address          10.xxx.xx.xxx
    Subnet mask       255.xxx.xxx.x
    Default gateway  10.xxx.x.x
    I need to connect another desktop (one at a time, which is permitted) wirelessly to internet. The idea is not to cheat but setup an arrangement where one can access internet whenever it is available or not in use by other computer.  I am using a Linksys wrt54g v.4 router and a wusb54g wireless adapter.
    So far I am able to establish a good communication between router and adapter but no internet connection.  I have checked there is no mac filtering, direct connection works perfectly with other computers. 
    My os is xp pro, in a pentium 4 2.40g processor, with 512 mb ram.
    Any help will be highly appreciated.  thanks in advance.
    Hiway

    john1232 wrote:your wired computer is able to go online... make sure that it is not connected using the broad band conenction .. go to start ==> control pannel ==> network connections... you will see broad band connection.. if it connected using the broadband connection then disconnect it .. right click on the broadband connection and choose the option cancel as default connection then set up your router
    Thanks John1232. I already disabled wired connection before configuring wireless. I am unable to access internet either wired or wireless when connected through router.

  • JTable within JScrollPane (setting BGColor)

    Hello,
    if the JScrollPane is larger than the contained JTable. How can I set the background-color of the arised gap?
    Neither JTable.setBackground(...) nor JScrollPane.setBackground(...) show any effect, i.e. the background-color doesn't change.
    Is there a proper way to avoid this gap, without scrollbars or knowning the exact size of the JTable?
    Yours truly, Raffael Vogler

    http://search.java.sun.com/search/java/index.jsp?qt=%2Btitle%3Ajscrollpane+%2Btitle%3Abackground&nh=10&qp=&rf=1&since=&country=&language=&charset=&variant=&col=javaforums

  • JTable within JTable

    I want to view additional table below the selected row on my table. This additional table will display more additional data for the selected row.
    My question is how to display/put this additional table just below the selected table? so that if I expand the current selected row it will display this additional table.

    Create a JPopop (or maybe even a JPopupMenu). Add your table to it and then position it below the selected row. of the table.

  • APP-V Office 2013 configuration.xml

    Hi all, 
    I'm trying to roll out Office 2013 with APP-V, whenever I change the config.xml to accept the EULA it still pops up with the EULA.
    The documentation for APP-V differs from the normal ODT config.xml, what's the difference and am I missing out on something? 
    See the document from Microsoft on the configuration.xml within app-v: 
    https://technet.microsoft.com/en-us/library/jj219426.aspx
    The XML file states to accept the EULA. The output in there is a configuration.xml like this: 
    <Configuration>
      <Add SourcePath="C:\office2013" OfficeClientEdition="32" >
        <Product ID="O365ProPlusRetail">
          <Language ID="nl-nl" />
    <Language ID="en-us" />
        </Product>
    <Product ID="ProjectProRetail">
          <Language ID="nl-nl" />
    <Language ID="en-us" />
        </Product>
     <Product ID="VisioProRetail" >
          <Language ID="nl-nl" />
    <Language ID="en-us" />
        </Product>
      </Add>
    <Display Level="None" AcceptEULA="TRUE" />
    <Property Name="SharedComputerLicensing" Value="1" />
    </Configuration>
    Kind regards, 
    Jacob van Rooijen

    You can use two registry keys to disable it, push them using a GPO:
    HKCU\Software\Policies\Microsoft\Office\15.0\Registration
    Reg_DWORD = "AcceptAllEulas"= 1
    HKCU\software\policies\microsoft\office\15.0\firstrun
    Reg_DWORD = "bootedrtm" = 1
    See this post

  • In Solution Manager, where can I find the SRM 7.0 Configuration Guide?

    Please give me directions on how to download the SRM 7.0 configuration guide within Solution Manager, these documents are not available on the service marketplace.  We have sol manager 4 I believe, it's not sol manger 7.0.
    Also, if you could send me the guide at matt.joseph at thq.com that would save me from losing more time trying to figure out Solution Manger
    Thanks for your help.
    Matt

    Matt,
    1. Log on to your SAP Solution Manager system.
    2. To be able to access configuration documentation, create a project as follows:
    1. Create your project with transaction SOLAR_PROJECT_ADMIN for project administration.
    2. Connect your SAP system to SAP Solution Manager with transaction SMSY for the SAP Solution Manager system landscape.
    3. Create a project structure and add the required scenarios for your SAP system to your project structure with the Business Blueprint transaction SOLAR01,
    4. Add your SAP system configuration structures to your project structure with the configuration transaction SOLAR02.
    3. Go to the project structure folder <project name> using transaction SOLAR02.
    4. Access configuration documentation for SAP NetWeaver usage types at Configuration StructureSAP NetWeaver 7.0.
    5. Access configuration documentation for all areas of SAP SRM at Configuration StructureSAP SRM <release>.
    Nesimi

  • How can I add the "Profile Removal Password Payload"  to a configuration Profile?

    How can I add the “Profile Removal Password Payload”  to a configuration Profile?
    I’m not seeing an option to add this option when I edit the configuration profile within Apple Configurator.
    Do I have to edit the configuration profile(xml file) within a text editor?
    FYI:
    https://developer.apple.com/library/ios/featuredarticles/iPhoneConfigurationProf ileRef/Introduction/Introduction.html
    Profile Removal Password Payload
    The Removal Password payload is designated by specifying com.apple.profileRemovalPassword value as the PayloadType value.
    A password removal policy payload provides a password to allow users to remove a locked configuration profile from the device. If this payload is present and has a password value set, the device asks for the password when the user taps a profile's Remove button. This payload is encrypted with the rest of the profile.
    Key
    Type
    Value
    RemovalPassword
    String
    Optional. Specifies the removal password for the profile.

    You have found where it is stored in Thunderbird?
    Delete it. When Thunderbird needs it again, it will ask you for it.

  • How to configure sun application server 8.2 for Oracle RAC 10g

    Hello,
    We have numerous boxes running the sun platform application server 8.2 and 2 boxes running enterprise version 8.2 all connecting to a 4 node Oracle RAC 10 G release 2 database. We have the system up and working. The application servers are connecting just fine to the database and the apps don't have any problems querying, inserting, etc. However, when we try to do failover testing of situations when a node or nodes of the Oracle RAC database goes down the application server does not gain new valid connections. Our configuration is this, OracleDataSource for the data source, table validation turned on with a valid table, ONS configuration set in properties, connectionCache enabled, and fastconnectionfailover enabled as well in the properties. We have that long oracle rac url with load balancing turned on set fot the database URL. We have the checkbox checked to fail all connections on any failure. ONS is configured properly within the database because we have a java application that runs outside of the application server that uses all the same settings described above (only set manually in our code for the OracleDataSource). This application works seemlessly when DB nodes are shutdown. We can shutdown all but one node and it's still humming along without skipping a beat. Start up one of the others, kill the last node, it still hums along nicely without skipping a beat. We'd really like to get the applications running in the application server to work the same way. Any help would be greatly appreciated. We've tried all the combinations that we can think of with configuration settings in the application server and it never works. Am tempted to rip out the database connection pool from inside the application server and configure it manually in the code but we are using entity beans and this is the much easier approach, if it will work. It's down to the point of does sun application server actually work with oracle RAC for connection failovers.

    Hi,
    We are also facing similar execption. Here is the error, we are getting, when a node is failed on RAC.
    [#|2007-11-11T12:43:53.685+0000|WARNING|sun-appserver-ee8.1_02|javax.enterprise.system.core.transaction|_ThreadID=38;|JTS5041: The resource manager is doing work outside a global transaction
    oracle.jdbc.xa.OracleXAException
    at oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:1270)
    at oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:318)
    at com.sun.gjc.spi.XAResourceImpl.start(XAResourceImpl.java:184)
    at com.sun.jts.jta.TransactionState.startAssociation(TransactionState.java:258)
    at com.sun.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:181)
    at com.sun.enterprise.distributedtx.J2EETransaction.enlistResource(J2EETransaction.java:397)
    at com.sun.enterprise.distributedtx.J2EETransactionManagerImpl.enlistResource(J2EETransactionManagerImpl.java:312)
    at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:114)
    at com.sun.enterprise.resource.ResourceManagerImpl.registerResource(ResourceManagerImpl.java:113)
    at com.sun.enterprise.resource.ResourceManagerImpl.enlistResource(ResourceManagerImpl.java:71)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:176)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.internalGetConnection(ConnectionManagerImpl.java:268)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:193)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:122)
    at com.sun.gjc.spi.DataSource.getConnection(DataSource.java:70)
    at com.syntegra.nasp.etp.dax.DBManager.getConnection(DBManager.java:192)
    at com.syntegra.nasp.etp.dax.DBManager.createDBCommand(DBManager.java:241)
    at com.syntegra.nasp.etp.dax.DBManager.createDBCommand(DBManager.java:251)
    at com.syntegra.nasp.etp.dax.sp.SPS_PRESCRIPTION_GUID_PROC.getCommand(SPS_PRESCRIPTION_GUID_PROC.java:31)
    at com.syntegra.nasp.etp.dax.sp.SPS_PRESCRIPTION_GUID_PROC.execute(SPS_PRESCRIPTION_GUID_PROC.java:23)
    at com.syntegra.nasp.etp.dax.PrescriptionBaseDataMapper.loadPresciptionByGUID(PrescriptionBaseDataMapper.java:203)
    at com.syntegra.nasp.etp.model.PrescriptionBase.findByPrescriptionGUID(PrescriptionBase.java:176)
    at com.syntegra.nasp.etp.messages.PatientPrescriptionReleaseRequest.execute(PatientPrescriptionReleaseRequest.java:120)
    at com.syntegra.nasp.etp.service.ETPSLBean.processMessage(ETPSLBean.java:159)
    at sun.reflect.GeneratedMethodAccessor97.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:147)
    at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:128)
    at $Proxy6.processMessage(Unknown Source)
    at com.syntegra.nasp.etp.listener.RequestListener.onRequest(RequestListener.java:204)
    at com.syntegra.spine.csf.consumer.mdb.CSFListenerRegisteringConsumer.onRequest(CSFListenerRegisteringConsumer.java:54)
    at com.syntegra.spine.csf.consumer.mdb.CSFConsumerBase.invokeListener(CSFConsumerBase.java:267)
    at com.syntegra.spine.csf.consumer.mdb.CSFConsumerBase.processMessage(CSFConsumerBase.java:180)
    at com.syntegra.spine.csf.consumer.mdb.CSFConsumerBase.onMessage(CSFConsumerBase.java:102)
    at sun.reflect.GeneratedMethodAccessor96.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.enterprise.security.SecurityUtil$2.run(SecurityUtil.java:153)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.application.EJBSecurityManager.doAsPrivileged(EJBSecurityManager.java:955)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:158)
    at com.sun.ejb.containers.MessageBeanContainer.deliverMessage(MessageBeanContainer.java:956)
    at com.sun.ejb.containers.MessageBeanListenerImpl.deliverMessage(MessageBeanListenerImpl.java:42)
    at com.sun.enterprise.connectors.inflow.MessageEndpointInvocationHandler.invoke(MessageEndpointInvocationHandler.java:130)
    at $Proxy9.onMessage(Unknown Source)
    at com.sun.genericra.inbound.DeliveryHelper.deliverMessage(DeliveryHelper.java:183)
    at com.sun.genericra.inbound.DeliveryHelper.deliver(DeliveryHelper.
    Regards
    Selvan.

Maybe you are looking for

  • Combining 4:3 and 16:9 video in a single widescreen project

    I am working on my first DV widescreen project in iMovie 6. The majority of the video footage I'm using was shot in 16:9 (widescreen) format and imported just fine. I then imported into the same project some additional footage from a friend's camera

  • Adding soap header in MX6.1

    I have a code working on MX7, it first adds soap header(username and password) then gets the response, but similar code didn't work on MX6.1. Please help. MX7 code: <cfscript> ru = XmlNew(); ru.AuthenticationHeader = XmlElemNew(ru, " http://www.mytes

  • Advice on TV Out Cable CA-75U

    Hi     I have a N79 phone.  I understand that it requires a CA-75U cable for TV out.   I have a smiliarly looking cable that I use for a Harddisk->TV player.  I wonder if I could use this cable or must I get the CA-75U ?  Is the CA-75U a proprietory

  • Flash.text.engine.TypographicCase.CAPS_AND_SMALL_CAPS

    In AS3,  flash.text.engine.TypographicCase.CAPS_AND_SMALL_CAPS  seems to not have the desired effect (Specifies that all lowercase characters use small-caps glyphs on  output.). It only makes everything upper case. I've searched the forums and Google

  • RFC error handling

    Hi gurus ! i have created RFC and that rfc is called in dotnet application. but when i pass data to dotnet system. how to track that my data is passed successfully.