Datasource connection with jboss, need help

Hi friends,
I am doing data source connection through Jboss (jboss-4.0.2) with mysql database. I am using java(j2sdk1.4.2_04). I have made all changes given in this link -- http://community.jboss.org/wiki/SetUpAMysqlDatasource
After making changes I restart jboss properly, but when I am going to attempt to connection through class. it give following error.
1.ERROR! Shared library ioser12 could not be found.
Can't find SerialContextProvider
When a create a diffrent new class, then give me this error.
2. ERROR! Shared library ioser12 could not be found.
Cannot get connection: javax.naming.CommunicationException: Can't find SerialContextProvider
Kindly help me out for this problem.
Thanks
Abhishek Jain

user13428037 wrote:
,,, JBoss ... give following error.
1.ERROR! Shared library ioser12 could not be found.
Can't find SerialContextProvider
When a create a diffrent new class, then give me this error.
2. ERROR! Shared library ioser12 could not be found.
Cannot get connection: javax.naming.CommunicationException: Can't find SerialContextProviderPlease don't crosspost http://www.javaprogrammingforums.com/jdbc-databases/6353-datsource-connection-mysql-need-help.html#post22533
The
ERROR! Shared library ioser12 could not be found.error message has nothing to do with you adding a datasource.
It would happen even before you made the datasource configuration changes.
Looks like you added a j2ee.jar to the JBoss classpath.

Similar Messages

  • TS1363 my ipad is disabled its not showing key pad and not connecting with itunes need help

    ipad is disabled and not connecting with itunes

    1: Connect the device to your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.

  • My macbook pro is not connecting with my iPhone, help?

    my macbook pro is not connecting with my iPhone 4S, help? I followed the instructions but somehow the Iphone doesn't connect!

    I am having the same problem.  First on a new ViewSonic, which I sent back thinking it wasn't working.  Now the same problem on my new Powerbook Mac with a new Epson projector.  Apple support hasn't been helpful.

  • Problem with clustering with JBoss server---help needed

    Hi,
    Its a HUMBLE REQUEST TO THE EXPERIENCED persons.
    I am new to clustering. My objective is to attain clustering with load balencing and/or Failover in JBoss server. I have two JBoss servers running in two diffferent IP addresses which form my cluster. I could succesfully perform farm (all/farm) deployment
    in my cluster.
    I do believe that if clustering is enabled; and if one of the server(s1) goes down, then the other(s2) will serve the requests coming to s1. Am i correct? Or is that true only in the case of "Failover clustering". If it is correct, what are all the things i have to do to achieve it?
    As i am new to the topic, can any one explain me how a simple application (say getting a value from a user and storing it in the database--assume every is there in a WAR file), can be deployed with load balencing and failover support rather than going in to clustering EJB or anything difficult to understand.
    Kindly help me in this mattter. Atleast give me some hints and i ll learn from that.Becoz i could n't find a step by step procedure explaining which configuration files are to be changed to achieve this (and how) for achiving this. Also i could n't find Books explaining this rather than usual theorectical concepts.
    Thanking you in advance
    with respect
    abhirami

    hi ,
    In this scenario u can use the load balancer instead of fail over clustering .
    I would suggest u to create apache proxy for redirect the request for many jboss instance.
    Rgds
    kathir

  • JMF Datasource problem..i need help with this one error

    This the error i get when i try to run my program
    Error: Unable to realize com.sun.media.amovie.AMController@18b81e3Basically i have a mediapanel class that initialize and play the media as datasource
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.*;
    import java.net.URL;
    import javax.media.*;
    import javax.swing.JPanel;
    import java.nio.ByteBuffer;
    public class MediaPanel extends JPanel
       InputStream stream;
       String name = "";
       ByteBuffer inputBuffer;
       byte[] store = null;
       public MediaPanel( InputStream in )
       try{
          this.stream = in;
          //store stream as ByteBuffer
          store = new byte[stream.available()];
          stream.read(store);
          inputBuffer.allocate(store.length);
          inputBuffer.wrap(store);
          //get contentType
          DrmDecryption drm = new DrmDecryption();
          name = drm.naming;
          setLayout( new BorderLayout() ); // use a BorderLayout
          ByteBufferDataSource ds = new ByteBufferDataSource(inputBuffer,name);
          // Use lightweight components for Swing compatibility
          Manager.setHint( Manager.LIGHTWEIGHT_RENDERER, true );
             // create a player to play the media specified in the URL
             Player mediaPlayer = Manager.createRealizedPlayer(ds);
             // get the components for the video and the playback controls
             Component video = mediaPlayer.getVisualComponent();
             Component controls = mediaPlayer.getControlPanelComponent();
             if ( video != null )
                add( video, BorderLayout.CENTER ); // add video component
             if ( controls != null )
                add( controls, BorderLayout.SOUTH ); // add controls
             mediaPlayer.start(); // start playing the media clip
           }catch(Exception e){}
       } // end MediaPanel constructor
    } // end class MediaPanelThe ByteBufferDataSource class is use to create the datasource for the player
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullDataSource;
    import java.nio.ByteBuffer;
    import java.io.IOException;
    import javax.media.MediaLocator;
    import javax.media.Duration;
    import javax.media.Time;
    public class ByteBufferDataSource extends PullDataSource {
    protected ContentDescriptor contentType;
    protected SeekableStream[] sources;
    protected boolean connected;
    protected ByteBuffer anInput;
    protected ByteBufferDataSource(){
    * Construct a ByteBufferDataSource from a ByteBuffer.
    * @param source The ByteBuffer that is used to create the
    * the DataSource.
    public ByteBufferDataSource(ByteBuffer input, String contentType) throws IOException {
    anInput = input;
    this.contentType = new ContentDescriptor(
                   ContentDescriptor.mimeTypeToPackageName(contentTyp  e));
    * Open a connection to the source described by
    * the ByteBuffer/CODE>.
    * The connect method initiates communication with the source.
    * @exception IOException Thrown if there are IO problems
    * when connect is called.
    public void connect() {
    sources = new SeekableStream [1];
    sources[0] = new SeekableStream(anInput);
    * Close the connection to the source described by the locator.
    * The disconnect method frees resources used to maintain a
    * connection to the source.
    * If no resources are in use, disconnect is ignored.
    * If stop hasn't already been called,
    * calling disconnect implies a stop.
    public void disconnect() {
    * Get a string that describes the content-type of the media
    * that the source is providing.
    * It is an error to call getContentType if the source is
    * not connected.
    * @return The name that describes the media content.
    public String getContentType() {
    return contentType.getContentType();
    public Object getControl(String str) {
    return null;
    public Object[] getControls() {
    return new Object[0];
    public javax.media.Time getDuration() {
    return Duration.DURATION_UNKNOWN;
    * Get the collection of streams that this source
    * manages. The collection of streams is entirely
    * content dependent. The MIME type of this
    * DataSource provides the only indication of
    * what streams can be available on this connection.
    * @return The collection of streams for this source.
    public javax.media.protocol.PullSourceStream[] getStreams() {
    return sources;
    * Initiate data-transfer. The start method must be
    * called before data is available.
    *(You must call connect before calling start.)
    * @exception IOException Thrown if there are IO problems with the source
    * when start is called.
    public void start() throws IOException {
    * Stop the data-transfer.
    * If the source has not been connected and started,
    * stop does nothing.
    public void stop() throws IOException {
    }i have a SeekableStream to manipulate the control of the streaming position.
    import java.lang.reflect.Method;
    import java.lang.reflect.Constructor;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import java.nio.BufferUnderflowException;
    import javax.media.protocol.PullSourceStream;
    import javax.media.protocol.Seekable;
    import javax.media.protocol.ContentDescriptor;
    public class SeekableStream implements PullSourceStream, Seekable {
    protected ByteBuffer inputBuffer;
    * a flag to indicate EOF reached
    /** Creates a new instance of SeekableStream */
    public SeekableStream(ByteBuffer byteBuffer) {
    inputBuffer = byteBuffer;
    this.seek((long)(0)); // set the ByteBuffer to to beginning
    * Find out if the end of the stream has been reached.
    * @return Returns true if there is no more data.
    public boolean endOfStream() {
    return (! inputBuffer.hasRemaining());
    * Get the current content type for this stream.
    * @return The current ContentDescriptor for this stream.
    public ContentDescriptor getContentDescriptor() {
    return null;
    * Get the size, in bytes, of the content on this stream.
    * @return The content length in bytes.
    public long getContentLength() {
    return inputBuffer.capacity();
    * Obtain the object that implements the specified
    * Class or Interface
    * The full class or interface name must be used.
    * The control is not supported.
    * null is returned.
    * @return null.
    public Object getControl(String controlType) {
    return null;
    * Obtain the collection of objects that
    * control the object that implements this interface.
    * No controls are supported.
    * A zero length array is returned.
    * @return A zero length array
    public Object[] getControls() {
    Object[] objects = new Object[0];
    return objects;
    * Find out if this media object can position anywhere in the
    * stream. If the stream is not random access, it can only be repositioned
    * to the beginning.
    * @return Returns true if the stream is random access, false if the stream can only
    * be reset to the beginning.
    public boolean isRandomAccess() {
    return true;
    * Block and read data from the stream.
    * Reads up to length bytes from the input stream into
    * an array of bytes.
    * If the first argument is null, up to
    * length bytes are read and discarded.
    * Returns -1 when the end
    * of the media is reached.
    * This method only returns 0 if it was called with
    * a length of 0.
    * @param buffer The buffer to read bytes into.
    * @param offset The offset into the buffer at which to begin writing data.
    * @param length The number of bytes to read.
    * @return The number of bytes read, -1 indicating
    * the end of stream, or 0 indicating read
    * was called with length 0.
    * @throws IOException Thrown if an error occurs while reading.
    public int read(byte[] buffer, int offset, int length) throws IOException {
    // return n (number of bytes read), -1 (eof), 0 (asked for zero bytes)
    if ( length == 0 )
    return 0;
    try {
    inputBuffer.get(buffer,offset,length);
    return length;
    catch ( BufferUnderflowException E ) {
    return -1;
    public void close() {
    * Seek to the specified point in the stream.
    * @param where The position to seek to.
    * @return The new stream position.
    public long seek(long where) {
    try {
    inputBuffer.position((int)(where));
    return where;
    catch (IllegalArgumentException E) {
    return this.tell(); // staying at the current position
    * Obtain the current point in the stream.
    public long tell() {
    return inputBuffer.position();
    * Find out if data is available now.
    * Returns true if a call to read would block
    * for data.
    * @return Returns true if read would block; otherwise
    * returns false.
    public boolean willReadBlock() {
    return (inputBuffer.remaining() == 0);
    }

    can u send me ur DrmDecryption.java file so that i can help

  • Two PC's Connected to WRT54G -Need Help With File Sharing Folder

    Hi,
    I have both PC's connected to the WRT54G with internet access on.  How do I create file sharing and or a folder named "shared" on each desktop that allows each PC to drop files in this folder so that each PC can open and access those files?
    Jerry

    For File and Printer Sharing follow this link

  • Problem with 8900 Browser connecting... need help

    I have a who has a 8900 and is using digicel jamaica for service. 
    She is able to make and receive calls.  She can receive emails but unable to get her blackberry browser to connect.  This service was working fine until this past friday.  Now she did mention someone else's email is on the phone but customer service could not remove that person until they called.  Not sure I understand that part.  We have tried the following:
    1.  Battery pull
    2.  Checked APN settings and tried:
    APN:web.digiceljamaica.com
    Username: blank
    Password: blank
    and..
    APN: web.digiceljamaica.com
    User: wapuser
    Password: wap03jam
    3.  She is not sure if they recently sent any new service books.
    4.  She spoke to her customer service and stated her account is properly provisioned. 
    5.  Her wifi is on but she is not connected to any local network.
    6.  We checked her browser version and she has 4.6.1.250. 
    At this point, I am stuck.  Any insight or ideas that I can try?  She gets unable to connect when she tries to use her blackberry browser. 

    Unfortunately, if you have not enough knowledge about using Flash, and do not want to pay to have this done for you, the folks who did this for you are likely going to be the only ones who can help you resolve it.  They should be able to provide the edited fla and the new swf if they are in any way a credible/reliable business.... which at this point sounds like they are not.

  • Something is not letting me connect with adobe for help,its controllig my browser and keyboard,i need help please.

    @

    yes I was trying to shart and trying to connect,but I couldn't,something wont let me,its keeping me away from adobe,it don't want adobe to help me,if possible please help me,thanks hasmat ali.
    Sent from Windows Mail

  • Problem with routing - Need help

    Hello,
    I need a little direction with what I think is a routing problem. Any help will be appreciated. My setup is as follows:
    Cable Modem
    27.177.21.9
    WAN - Gi0/0
    27.177.21.10
    Cisco 2901
    LAN - Gi0/1
    192.168.1.250
    Client
    192.168.1.10
    The Problem
    Router can ping LAN interface
    Router cannot ping WAN interface -X
    Router can ping Cable Modem
    Client
    Client can ping LAN interface
    Client can ping WAN interface
    Client cannot ping Cable Modem -X
    Here is my routing table:
    Gateway of last resort is 27.177.21.9 to network 0.0.0.0 (this is my cable modem)
    S*    0.0.0.0/0 [1/0] via 27.177.21.9
                    is directly connected, GigabitEthernet0/0
          27.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
    C        27.177.21.8/30 is directly connected, GigabitEthernet0/0
    L        27.177.21.10/32 is directly connected, GigabitEthernet0/0
          192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
    C        192.168.1.0/24 is directly connected, GigabitEthernet0/1
    L        192.168.1.250/32 is directly connected, GigabitEthernet0/1
    Here is a portion of my configuration:
    interface GigabitEthernet0/0
     description Cable Internet$FW_OUTSIDE$$ETH-WAN$
     ip address 27.177.21.10 255.255.255.252
     zone-member security out-zone
     duplex auto
     speed auto
    interface GigabitEthernet0/1
     description hbc_staff$FW_INSIDE$$ETH-LAN$
     ip address 192.168.1.250 255.255.255.0
     zone-member security in-zone
     duplex auto
     speed auto
     no mop enabled
    ip default-gateway 27.177.21.9
    ip forward-protocol nd
    ip http server
    ip http access-class 23
    ip http authentication local
    ip http secure-server
    ip http timeout-policy idle 600 life 86400 requests 10000
    ip route 0.0.0.0 0.0.0.0 27.177.21.9
    ip route 192.168.1.0 255.255.255.0 27.177.21.9
     Thanks in advance

    Hello Jon,
    I continue to try different configurations to get my router to connect without success. I am now trying NAT and this is where we stand now. Any help will be much appreciated.
    The problem
    Router now pings everything by ip address or name
    Client PC from inside the LAN cannot ping modem or Internet
    Relevant parts of configuration:
    ip domain name mydomain.org
    ip name-server 24.247.15.53
    ip name-server 66.189.0.100
    interface GigabitEthernet0/0
     description Internet$FW_OUTSIDE$ETH-WAN$
     ip address 27.177.21.10 255.255.255.252
     ip nat outside
     ip virtual-reassembly in
     duplex auto
     speed auto
    interface GigabitEthernet0/1
     description hbc_staff$FW_INSIDE$$ETH-LAN$
     ip address 192.168.1.250 255.255.255.0
     ip nat inside
     ip virtual-reassembly in
     zone-member security in-zone
     duplex auto
     speed auto
     no mop enabled
    ip nat pool HBC-I 27.177.21.10 27.177.21.10 prefix-length 24
    ip nat inside source list 7 pool HBC-I overload
    ip route 0.0.0.0 0.0.0.0 27.177.21.9
    ip route 192.168.1.0 255.255.255.0 GigabitEthernet0/1
    access-list 7 permit 192.168.1.0 0.0.0.255
    #show ip route
    Gateway of last resort is 27.177.21.9 to network 0.0.0.0
    S*    0.0.0.0/0 [1/0] via 27.177.21.9
          27.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
    C        27.177.21.8/30 is directly connected, GigabitEthernet0/0
    L        27.177.21.10/32 is directly connected, GigabitEthernet0/0
          192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
    C        192.168.1.0/24 is directly connected, GigabitEthernet0/1
    L        192.168.1.250/32 is directly connected, GigabitEthernet0/1
    When pinging the modem from a client inside the LAN this is what I get from NAT translations and statistics:
    #sho ip nat translations ver
    Pro Inside global         Inside local          Outside local         Outside global
    icmp 27.177.21.10:40709   192.168.1.8:40709     27.177.21.9:40709     27.177.21.9:40709
        create 00:00:05, use 00:00:00 timeout:60000, left 00:00:59, Map-Id(In): 1, 
        flags: 
    extended, use_count: 0, entry-id: 4, lc_entries: 0
    #sho ip nat statistics
    Total active translations: 2 (0 static, 2 dynamic; 2 extended)
    Peak translations: 2, occurred 00:00:04 ago
    Outside interfaces:
      GigabitEthernet0/0
    Inside interfaces: 
      GigabitEthernet0/1
    Hits: 104  Misses: 0
    CEF Translated packets: 104, CEF Punted packets: 0
    Expired translations: 7
    Dynamic mappings:
    -- Inside Source
    [Id: 1] access-list 7 pool HBC-I refcount 2
     pool HBC-I: netmask 255.255.255.0
        start 27.177.21.10 end 27.177.21.10
        type generic, total addresses 1, allocated 1 (100%), misses 0
    Total doors: 0
    Appl doors: 0
    Normal doors: 0
    Queued Packets: 0

  • Serious problem with database need help

    hello experts
    i am working with MS-ACCESS and connecting it with java programing
    now the problem with me are
    according to my need i have to create a table that contain Autonumber field
    but when i insert element in this table by query
    String query1 = "insert into Forum (Subject,Author,Date,Reply) values('"+param1+"','"+username+"','"+dateformat+"',"+reply+")";
    st1 = con1.createStatement(); it gives sql exception but when i remove
    autonumber field and make it simple field it works ok but i want to keep autonumber field and thn want to insert it
    is it possible to create a dynamic table in ms-access through java query like
    String query3 = "create table"+"topicId"+"( message varchar(1000) NOT NULL,author varchar(50) NOT NULL, date varchar(30) NOT NULL)";
    here topic id some variable that contain table name
    i think problem is that MS-ACCESS has no varchar data type plz help me
    The complete code i written is as follow
    <html>
    <%@ page language="java" import="java.sql.*,java.text.*"  %>
    <head>
    <title> Processing the post request </title>
    </head>
    <body background ="images/modbkgnd.jpg" bgproperties="fixed" >
    <%
       String param1="",param2="",topicId="";
       Connection con1=null;
       Statement  st1=null;
       ResultSet rs1=null;
       int a=2,reply=0;
       java.util.Date date = new java.util.Date();
       DateFormat df ;
       df = DateFormat.getDateInstance(DateFormat.FULL ,java.util.Locale.UK);
       String dateformat = df.format(date);
       String username = (String)session.getAttribute("forumlogin");
       param1=request.getParameter("Subject");
       param2 =request.getParameter("message");
    try
       Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
       con1 = DriverManager.getConnection("jdbc:odbc:lingua");
       String query1 = "insert into Forum (Subject,Author,Date,Reply) values('"+param1+"','"+username+"','"+dateformat+"',"+reply+")";
       st1 = con1.createStatement();
       out.print("hello i am here");
       boolean posubject = st1.execute(query1);
       out.print("hello i am here");
       String query2 = "select *from Forum";
       rs1 = st1.executeQuery(query2); //retriving table id for creating
        out.print("hello i am here");  //  message table
       while(rs1.next())
           topicId = rs1.getString(1);
       String query3 = "create table"+"topicId"+"( message varchar(1000) NOT NULL,author varchar(50) NOT NULL, date varchar(30) NOT NULL)";
       boolean createtable = st1.execute(query3);
       out.print("hello i am here");
       if(createtable)
          String query4 = "insert into"+"topicId"+"values('"+param2+"','"+username+"','"+dateformat+"')";
          boolean insertmess = st1.execute(query4);
    }catch(SQLException ex){
        out.print("sql exception");
    finally
       st1.close();
       con1.close();
    %>
    </body>
    </html>

    hello experts
    first i change my Date to date and thn try but it was not working.
    and thn i try as dinesh_tcs said
    i change my query as
    String query3 = "create table"+"topicId"+"( message string NOT NULL,author string NOT NULL, date string NOT NULL)";
    but nothing help me
    one more thing actually i don,t want to insert manually the field of autonumber what i want that my query work when i leave the autonumber field to insert values in the table ( or whatever way i want to insert values in that table by keeping autonuber given by MS_ACCESS)
    plz do the change in code i have maintained above or if not possible thn write the query that u have tested

  • MySQL DataSource configuration with JBOSS

    Hi,
    I am using Eclipse with Lomboz and JBOSS as Application Server. I created a CMP Entity Bean and setup my MySQL Database Server including its JDBC Driver. I also configured several files like login-config.xml, standardjbosscmp-jdbc.xml, standardjaws.xml, mysql-service.xml, and
    I got the following error messages when I tried deploying the bean.
    Please help me in resolving this problem so I can continue my study using these tools.
    15:45:09,547 INFO [Server] JBoss (MX MicroKernel) [3.0.7 (CVSTag=JBoss_3_0_7 Date=200304081816)] Started in 0m:47s:418ms
    15:46:34,970 INFO [MainDeployer] Starting deployment of package: file:/C:/JBoss/JBoss/server/default/deploy/mybeans.jar
    15:46:36,392 INFO [EjbModule] Creating
    15:46:36,502 INFO [EjbModule] Deploying TestSession
    15:46:36,652 INFO [EjbModule] Created
    15:46:36,662 INFO [EjbModule] Starting
    15:46:37,033 INFO [EjbModule] Started
    15:46:37,033 INFO [MainDeployer] Deployed package: file:/C:/JBoss/JBoss/server/default/deploy/mybeans.jar
    15:47:33,604 INFO [MainDeployer] Starting deployment of package: file:/C:/JBoss/JBoss/server/default/deploy/myentitybean.jar
    15:47:34,335 INFO [EjbModule] Creating
    15:47:34,395 INFO [EjbModule] Deploying Address
    15:47:35,177 INFO [EjbModule] Created
    15:47:35,177 INFO [EjbModule] Starting
    15:47:41,135 ERROR [MainDeployer] could not start deployment: file:/C:/JBoss/JBoss/server/default/deploy/myentitybean.jar
    java.lang.NoClassDefFoundError: org/jboss/proxy/compiler/Proxies$ProxyTarget
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:502)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:431)
         at org.jboss.proxy.compiler.Runtime.makeProxyType(Runtime.java:68)
         at org.jboss.proxy.compiler.ProxyCompiler.<init>(ProxyCompiler.java:76)
         at org.jboss.proxy.compiler.Proxies$Impl.newTarget(Proxies.java:580)
         at org.jboss.proxy.compiler.Proxies.newTarget(Proxies.java:77)
         at org.jboss.proxy.compiler.Proxy.newProxyInstance(Proxy.java:49)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCCreateBeanClassInstanceCommand.<init>(JDBCCreateBeanClassInstanceCommand.java:52)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCCommandFactory.createCreateBeanClassInstanceCommand(JDBCCommandFactory.java:97)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.startStoreManager(JDBCStoreManager.java:436)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:369)
         at org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:198)
         at org.jboss.ejb.EntityContainer.start(EntityContainer.java:376)
         at org.jboss.ejb.Container.invoke(Container.java:782)
         at org.jboss.ejb.EntityContainer.invoke(EntityContainer.java:1058)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:1003)
         at $Proxy4.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:413)
         at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy26.start(Unknown Source)
         at org.jboss.ejb.EjbModule.startService(EjbModule.java:404)
         at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:1003)
         at $Proxy4.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:413)
         at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy10.start(Unknown Source)
         at org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:395)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:814)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:627)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:591)
         at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:435)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scanDirectory(URLDeploymentScanner.java:656)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:507)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:217)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:230)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:207)
    15:47:41,175 ERROR [URLDeploymentScanner] Failed to deploy: org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@b1c4d3ce{ url=file:/C:/JBoss/JBoss/server/default/deploy/myentitybean.jar, deployedLastModified=0 }
    org.jboss.deployment.DeploymentException: Could not create deployment: file:/C:/JBoss/JBoss/server/default/deploy/myentitybean.jar; - nested throwable: (java.lang.NoClassDefFoundError: org/jboss/proxy/compiler/Proxies$ProxyTarget)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:835)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:627)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:591)
         at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:435)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scanDirectory(URLDeploymentScanner.java:656)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:507)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:217)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:230)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:207)
    Caused by: java.lang.NoClassDefFoundError: org/jboss/proxy/compiler/Proxies$ProxyTarget
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:502)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:431)
         at org.jboss.proxy.compiler.Runtime.makeProxyType(Runtime.java:68)
         at org.jboss.proxy.compiler.ProxyCompiler.<init>(ProxyCompiler.java:76)
         at org.jboss.proxy.compiler.Proxies$Impl.newTarget(Proxies.java:580)
         at org.jboss.proxy.compiler.Proxies.newTarget(Proxies.java:77)
         at org.jboss.proxy.compiler.Proxy.newProxyInstance(Proxy.java:49)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCCreateBeanClassInstanceCommand.<init>(JDBCCreateBeanClassInstanceCommand.java:52)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCCommandFactory.createCreateBeanClassInstanceCommand(JDBCCommandFactory.java:97)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.startStoreManager(JDBCStoreManager.java:436)
         at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.start(JDBCStoreManager.java:369)
         at org.jboss.ejb.plugins.CMPPersistenceManager.start(CMPPersistenceManager.java:198)
         at org.jboss.ejb.EntityContainer.start(EntityContainer.java:376)
         at org.jboss.ejb.Container.invoke(Container.java:782)
         at org.jboss.ejb.EntityContainer.invoke(EntityContainer.java:1058)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:1003)
         at $Proxy4.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:413)
         at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy26.start(Unknown Source)
         at org.jboss.ejb.EjbModule.startService(EjbModule.java:404)
         at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:1003)
         at $Proxy4.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:413)
         at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy10.start(Unknown Source)
         at org.jboss.ejb.EJBDeployer.start(EJBDeployer.java:395)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:814)
         ... 15 more
    //==================end of Error message ========================?
    This is how I configured mysql-service.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- ===================================================================== -->
    <!-- -->
    <!-- JBoss Server Configuration -->
    <!-- -->
    <!-- ===================================================================== -->
    <server>
    <!-- ==================================================================== -->
    <!-- New ConnectionManager setup for mysql using 2.0.11 driver -->
    <!-- Build jmx-api (build/build.sh all) and view for config documentation -->
    <!-- ==================================================================== -->
    <mbean code="org.jboss.resource.connectionmanager.LocalTxConnectionManager"
         name="jboss.jca:service=LocalTxCM,name=MySqlDS">
    <!-- //ABD: 05.22.2003 => Commented.
         Include a login module configuration named MySqlDbRealm.
    Update your login-conf.xml, here is an example for a
    ConfiguredIdentityLoginModule:
    <application-policy name = "MySqlDbRealm">
    <authentication>
    <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
    <module-option name = "principal">root</module-option>
    <module-option name = "userName">root</module-option>
    <module-option name = "password"></module-option>
    <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=MySqlDS</module-option>
    </login-module>
    </authentication>
    </application-policy>
    -->
    <!-- //ABD: Commented.
    NOTE: the application-policy name attribute must match SecurityDomainJndiName, and the
    module-option name = "managedConnectionFactoryName"
    must match the object name of the ConnectionManager you are configuring here.
    -->
    <!-- ABD: Uncommented. uncomment out this line if you are using the MySqlDbRealm above -->
    <attribute name="SecurityDomainJndiName">MySqlDbRealm</attribute>
    <depends optional-attribute-name="ManagedConnectionFactoryName">
    <!--embedded mbean-->
    <mbean code="org.jboss.resource.connectionmanager.RARDeployment"
         name="jboss.jca:service=LocalTxDS,name=MySqlDS">
    <attribute name="JndiName">MySqlDS</attribute>
    <attribute name="ManagedConnectionFactoryProperties">
    <properties>
    <config-property name="ConnectionURL" type="java.lang.String">jdbc:mysql://localhost:3306/test</config-property>
    <config-property name="DriverClass" type="java.lang.String">com.mysql.jdbc.Driver</config-property>
    <!--set these only if you want only default logins, not through JAAS -->
    <config-property name="UserName" type="java.lang.String">root</config-property>
    <config-property name="Password" type="java.lang.String"></config-property>
    </properties>
    </attribute>
    <!--Below here are advanced properties -->
    <!--hack-->
    <depends optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper</depends>
    </mbean>
    </depends>
    <depends optional-attribute-name="ManagedConnectionPool">
    <!--embedded mbean-->
    <mbean code="org.jboss.resource.connectionmanager.JBossManagedConnectionPool"
    name="jboss.jca:service=LocalTxPool,name=MySqlDS">
    <attribute name="MinSize">0</attribute>
    <attribute name="MaxSize">50</attribute>
    <attribute name="BlockingTimeoutMillis">5000</attribute>
    <attribute name="IdleTimeoutMinutes">15</attribute>
    <!--criteria indicates if Subject (from security domain) or app supplied
    parameters (such as from getConnection(user, pw)) are used to distinguish
    connections in the pool. Choices are
    ByContainerAndApplication (use both),
    ByContainer (use Subject),
    ByApplication (use app supplied params only),
    ByNothing (all connections are equivalent, usually if adapter supports
    reauthentication)-->
    <attribute name="Criteria">ByContainer</attribute>
    </mbean>
    </depends>
    <depends optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedConnectionManager</depends>
    <depends optional-attribute-name="JaasSecurityManagerService">jboss.security:service=JaasSecurityManager</depends>
    <attribute name="TransactionManager">java:/TransactionManager</attribute>
    <!--make the rar deploy! hack till better deployment-->
    <depends>jboss.jca:service=RARDeployer</depends>
    </mbean>
    </server>

    Did you compile your bean with the same JDK which is used for JBoss ?

  • How to use Crystal Report with Java - need help

    Dear everyone,
    i am completely new to Crystal report , please can anyone help me to creat a very simple Report using the Crystal report,
    the report will show some records from oracle DB.
    How can i make it by a simple example and with code please?
    do i need any JAR or Bean for Crystal report?
    thanks for your help and please don't hesitate to contact me in case of any inquiries.
    my email: [email protected]
    Thanks in advance

    I what to use Crystal report to generate report.My programe in java swing .Iam retrive table from database in Jtable .But when giving print
    command its print half screen .so that why I wantto usecrystal report
    package file2;
    import file2.choice;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.sql.*;
    import java.util.*;
    import java.awt.print.*;
    import javax.swing.table.*;
    import com.sun.java.swing.*;
    import javax.swing.JTable;
    public class cour extends JFrame implements Printable
         //Menu fileMenu;
         public static void main(String[] a)
    cour n = new cour();
    n.setVisible(true);
    public cour()
         super("Course Report");
         report();
         protected void report()
              JPanel panel = new JPanel();
         JButton printButton = new JButton("Print");
         panel.add(printButton);
         JButton exitButton = new JButton("Exit");
         panel.add(exitButton);     
         DefaultTableModel defaulttablemodel = new DefaultTableModel();
              JTable jtable = new JTable(defaulttablemodel);
              panel.add(new JScrollPane(jtable));
              String      tempname="";
              int tempcnt;
              String driver="sun.jdbc.odbc.JdbcOdbcDriver";
              String url="jdbc:odbc:regs";
              Object[] data = new Object[4];
              try
                             Class.forName(driver);                         
                             Connection connection=DriverManager.getConnection(url,"sa","");
                             Statement statement = connection.createStatement();     
                             String query = "SELECT courseid as CourseID,coursen as CourseName,cfee as Fee,coursed as Duration FROM course";
                             ResultSet rs = statement.executeQuery(query);     
                             ResultSetMetaData rmeta = rs.getMetaData();
                             int numColumns=rmeta.getColumnCount();                         
                             for(int i=1;i<=numColumns;i++)
                                  if(i<=numColumns)
                                       defaulttablemodel.addColumn(rmeta.getColumnName(i));
                             while(rs.next())
                                  for(int i=1;i<=numColumns;++i)
                                       if( i<=numColumns)
                                            tempname = rs.getString(i);
                                            tempcnt=i-1;
                                            data[tempcnt] = tempname;          
                                  defaulttablemodel.addRow(data);                              
                   catch(Exception ex)
              printButton.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
              /*if(ae.getActionCommand().equals("Print"))
              PrinterJob pj = PrinterJob.getPrinterJob();
              pj.setPrintable(cour.this);
              if (pj.printDialog())
              try
              pj.print();
              catch (PrinterException pe)
              System.out.println(pe);
    exitButton.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
              choice ch=new choice();
                   setVisible(false);
                   ch.setVisible(true);
    setContentPane(panel);
         setSize(1040,780);
    /*Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = getSize();
    int x = (screenSize.width - frameSize.width) / 2;
    int y = (screenSize.height - frameSize.height) / 2;
    setLocation(x, y);*/
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    public int print(Graphics g, PageFormat pf, int pageIndex)
    if (pageIndex != 0) return NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D)g;
    g2.translate(pf.getImageableX(), pf.getImageableY());
    getContentPane().paint(g2);
    return PAGE_EXISTS;
    }

  • Frustrated with upgrade - NEED HELP

    I had a problem on my PowerBook PowerPC G4 when I updated to Safari 3.1.1
    Safari, Mail and the Software update would no longer run.
    Tried everything to no avail.
    Did an archive system install back to 10.4.6
    Now I am unable to update to 10.4.11
    I downloaded the Installer Package and when I run it I get the prompt:
    "You cannot install Mac OS X Update (PowerPC) on this volume.
    This volume does not meet the requirements for this update."
    What am I doing wrong?

    Here's another suggestion that will help in the future:
    Basic Backup
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    1. Retrospect Desktop (Commercial - not yet universal binary)
    2. Synchronize! Pro X (Commercial)
    3. Synk (Backup, Standard, or Pro)
    4. Deja Vu (Shareware)
    5. PsynchX 2.1.1 and RsyncX 2.1 (Freeware)
    6. Carbon Copy Cloner (Freeware - 3.0 is a Universal Binary)
    7. SuperDuper! (Commercial)
    8. Intego Personal Backup (Commercial)
    9. Data Backup (Commercial)
    The following utilities can also be used for backup, but cannot create bootable clones:
    1. Backup (requires a .Mac account with Apple both to get the software and to use it.)
    2. Toast
    3. Impression
    4. arRSync
    Apple's Backup is a full backup tool capable of also backing up across multiple media such as CD/DVD. However, it cannot create bootable backups. It is primarily an "archiving" utility as are the other two.
    Impression and Toast are disk image based backups, only. Particularly useful if you need to backup to CD/DVD across multiple media.
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore. Also read How to Back Up and Restore Your Files.
    Although you can buy a complete FireWire drive system, you can also put one together if you are so inclined. It's relatively easy and only requires a Phillips head screwdriver (typically.) You can purchase hard drives separately. This gives you an opportunity to shop for the best prices on a hard drive of your choice. Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu. You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available. You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports. I would stress getting enclosures that use the Oxford chipsets (911, 921, 922, for example.) You can find enclosures at places such as;
    Cool Drives
    OWC
    WiebeTech
    Firewire Direct
    California Drives
    NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover. Usually the only tool required is a small or medium Phillips screwdriver.

  • Reset router, can't connect to net - need help

    Here's my situation, I spent an hour digging through previous posts trying to solve my issue with no luck.
    Had Cavtel DSL running to a Linksys wrt54g ver.2 router which was working fine.  My brother needed access to the network but we forgot the password which was set about 2 years before. 
    I hit the reset button on the back of the linksys router and promptly lost access to the internet from my computer.
    I contacted linksys help over the phone and after dealing with someone in India he told me that they would charge me to walk me through it.  I disconnected and tried cavtel... They told me to plug the cavtel modem directly to the pc.  I still couldn't access the internet at this point.
    She then had me modify my tcp/ip settings and gave me nifty numbers that allowed me to get back online.  I asked her about the router and she said, oh just plug the modem into it and it will self detect everything and emphasized that I should call linksys and they'll be GLAD to help me out...
    Needless to say, I plugged the internet into the router and once again can't get online.  I then tried to backtrack and plug the pc back directly to the modem and can't connect to the internet once more.  Contacted cavtel and their response was the classic, well we got you working directly we can't help you with router issues.
    I don't have the install cd anymore, and I haven't a clue what to do to fix this.  Top this off, there are no other wireless networks around my house so I can't access this forum from home or any online 'easy help' tools or programs.
    Anyone have any suggestions???  And yes I know the basics of accessing the modem, the 192.168.1.1 etc etc admin password. 
    Thanks for help in advance.
    Message Edited by seawolf688 on 06-11-2008 09:00 AM

    Configuration for DSL connection:-
    Before doing the following steps, you have to connect the modem to the
    router's Internet Port and the computer to the Ethernet Port Number 1.
    1. Press and hold the reset button for 30 seconds.
    2. Then, unplug the power keep holding down the reset button for
    another 30 Seconds.
    3. Plug back the power back in, and keep holding down the reset button
    for 30 Seconds.
    4. Release the reset button.
    ===================================================================
    Access the setup page of the router by launching an
    Browser and type on the address bar, 192.168.1.1 and press enter. When
    it prompts for the username and password, leave the username field
    empty and provide password as "admin" (Without quotes)
    click on ok.
    On the main setup page the ""Internet Connection Type"" should be
    on ""Obtain IP Automatically - DHCP ?. Click on the Save Settings
    button.
    Now click on the sub tab ""MAC address clone"".
    - Click on enable
    Click Clone & click save settings
    Check WAN Ip on Status page of router ....
    If getting Valid Ip .... try going online
    If not ... power cycle for 4-5 minutes & then agian check the WAN Ip address .....

  • Connection dropping. Need help please.

    I have tried everything that In have seen in the forum related to this problem. The only thing not done is un-clicking the option to connect to BT Openzone if in range which seems to be in Communication Settings. Is this on my Laptop or within the hub settings. Please help if you can. Thanks, len.

    Hi yes you can deselect Openzone from your pc and reset it when you go out however the problem with your hub losing connection needs resolving and I suggest you try the following link Here is a basic guide to getting help from the community members done by CL Keith Please read through the link posted http://forumhelp.dyndns.info/speed/first_steps.html
    once you have posted the information asked for then the community members can help you more
    Thank You
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Maybe you are looking for

  • DIV Style background image not showing

    Hey Friends - can anyone take a look at line 136 to show why my background-image is not showing in this DIV Style? http://www.gratefulcreative.com/Andre_Madiz/index.html Thanks in advance! ken d creative director grateful creative www.gratefulcreativ

  • Program RFFOF__V - Paiment - F110

    Hi, i have a problem with the program RFFOF__V that i use in F110, when i launch , I have this message : Program RFFOF__V: No records selected      Message no. F0073 Diagnosis      The system did not find any data to be processed in the payment datas

  • Can't get trace statements omitted from SWC

    I'm trying to create a component. I'm using Flash CS4 and AS2. I've been using trace statements while developing and now I want to deliver it, without trace statements. I went to the Publish Settings and checked Omit trace actions and unchecked Permi

  • Pdf plugin for safari missing page setup

    Hi all, We have users that would like to change the page size when printing a pdf via safari when viewing via the adobePDFviewer.plugin. On 10.4 you could select the paper size when in the print menu, now in 10.5 its not there. Has anyone found a way

  • Message blinks and vanishes

    Hi Group, the below is the code where the problem is occuring.... Please suggest some solution for this.   IF ldf_subrc = 0.     MESSAGE s605(01).     COMMIT WORK.   ELSE.   Create error log.[Internal error: Update of table failed]     lds_msg-msgtyp