Configure SQL Server to work together with OpenFire (XMPP/Jabber Server)

Hi all,
I am trying to set up Openfire (a jabber/xmpp server) to talk to a SQL Server on the same machine.
I am following these instructions for this: https://www.igniterealtime.org/builds/openfire/docs/latest/documentation/database.html#sqlserver
I have created a database for this, created a login under the server node, called OpenFireUser, and have also created a User, also called OpenFireUser, which is mapped to just mentioned login, for the Database, called OpenFireDB.
I then ran some scripts provided by openfire to set up the database. The scripts execute fine.
I then proceed to set up the connecition using the OpenFire Web Admin, at localhost:9090. This is the setup screen, with my settings:
Specifically, the Database URL looks like this: jdbc:jtds:sqlserver://WIN-LV4K7BSUPJO/OpenFireDB;appName=jive, where
WIN-LV4K7BSUPJO is the server (localhost, in this case). I have also tried specifying port 1433, e.g. jdbc:jtds:sqlserver://WIN-LV4K7BSUPJO:1433/OpenFireDB;appName=jive.
Unfortunately, I always get the red-boxed message you can see in the image. If I view the OpenFire Error logs this is
the last message:
2014.09.24 21:17:10 org.jivesoftware.database.DbConnectionManager - Network error IOException: Connection refused: connect
java.sql.SQLException: Network error IOException: Connection refused: connect
at net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:385)
at net.sourceforge.jtds.jdbc.ConnectionJDBC3.<init>(ConnectionJDBC3.java:50)
at net.sourceforge.jtds.jdbc.Driver.connect(Driver.java:182)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at org.logicalcobwebs.proxool.DefaultConnectionBuilder.buildConnection(DefaultConn ectionBuilder.java:39)
at org.logicalcobwebs.proxool.Prototyper.buildConnection(Prototyper.java:159)
at org.logicalcobwebs.proxool.ConnectionPool.getConnection(ConnectionPool.java:211 )
at org.logicalcobwebs.proxool.ProxoolDriver.connect(ProxoolDriver.java:89)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at org.jivesoftware.database.DefaultConnectionProvider.getConnection(DefaultConnec tionProvider.java:86)
at org.jivesoftware.database.DbConnectionManager.setConnectionProvider(DbConnectio nManager.java:616)
at org.jivesoftware.openfire.admin.setup.setup_002ddatasource_002dstandard_jsp._js pService(setup_002ddatasource_002dstandard_jsp.java:206)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:738)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1651)
at com.opensymphony.module.sitemesh.filter.PageFilter.parsePage(PageFilter.java:11 8)
at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:52)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1639)
at org.jivesoftware.util.LocaleFilter.doFilter(LocaleFilter.java:74)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1639)
at org.jivesoftware.util.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingF ilter.java:50)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1639)
at org.jivesoftware.admin.PluginFilter.doFilter(PluginFilter.java:78)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1639)
at org.jivesoftware.admin.AuthCheckFilter.doFilter(AuthCheckFilter.java:164)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.ja va:1631)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:568)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:22 1)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:11 11)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:478)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:183 )
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:104 5)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandler Collection.java:199)
at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.jav a:109)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:97)
at org.eclipse.jetty.server.Server.handle(Server.java:462)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:279)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:232)
at org.eclipse.jetty.io.AbstractConnection$2.run(AbstractConnection.java:534)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607 )
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536)
at java.lang.Thread.run(Unknown Source)
Caused by: java.net.ConnectException: Connection refused: connect
at java.net.DualStackPlainSocketImpl.connect0(Native Method)
at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.sourceforge.jtds.jdbc.SharedSocket.createSocketForJDBC3(SharedSocket.java:3 04)
at net.sourceforge.jtds.jdbc.SharedSocket.<init>(SharedSocket.java:255)
at net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:310)
... 47 more
The SQL Server logs (sp_readerrorlog) dont indicate any problem or even any attempt to connect. I am not sure
if this is an isue with the configuration of my SQL Server (it is configured to use both Windows and Sql Server Authentication), or whether this is an issue with OpenFire. I have posted on the OpenFire forum as well, but I thought I'd post here as well to
see if anyone has any suggestions on SQL Server configuration that might solve this.
Thanks for any and all help,
Best regards,
Chris

Good day
I advise you to try asking on the application support's team or forum, since this is not look like an sql server problem but application. Once the connection string is OK and the other actions done without problem, It give a feeling like this is something that
the application's developer could find very fast
[Personal Site] [Blog] [Facebook]

Similar Messages

  • How can I create a client console and work together with the Cache Server?

    How can I edit the following Cache-Server.cmd file to create a client console and work together with the Cache Server?
    The following is the cache server file: contacts-cache-server.cmd
    @echo off
    setlocal
    if (%COHERENCE_HOME%)==() (
    set COHERENCE_HOME=c:\coherence
    set CONFIG=C:\home\oracle\coherence\Contacts
    set COH_OPTS=%COH_OPTS% -server -cp %COHERENCE_HOME%\lib\coherence.jar;C:\home\oracle\
    coherence\Contacts;C:\home\oracle\coherence\Contacts\classes;
    set COH_OPTS=%COH_OPTS% -Dtangosol.coherence.cacheconfig=%CONFIG%\contacts-cache-config.xml
    java %COH_OPTS% -Xms1g -Xmx1g -Xloggc: com.tangosol.net.DefaultCacheServer %2 %3 %4 %5 %6 %7
    :exitEdited by: junez on 23-Oct-2009 09:20

    Hi
    To run the console, change DefaultCacheServer to CacheFactory
    Paul

  • How notification system work together with Acrobat X Pro?

    Hi everyone,
    I use Adobe Acrobat 10 Pro to implement Distributed PDF Form in my organization. I have some problem about this.
    When client fill information in application form on our distribution server,Do you have solution that Acrobat 10 Pro can send a notification to specific authorized
    prerson for his/her Digital Signature?
    example : Mr.A filled some information about Purchase Order. System require his supervisor's digital signature so, Acrobat send notification to his supervisor automatically.
    I have some idea about Active Directory work together with Acrobat but, I don't know how to use both of it together.
    Any advice will help me so much.
    Best Regards,
    Charles
    PS. sorry about my poor english

    Thank you so much about your suggestion.
    Do you know how i can integrate Acrobat X Pro with Active Directory?
    I look forwarding to hear from you.Thank you.
    Chompunoot
    Date: Thu, 2 Jun 2011 19:29:41 -0600
    From: [email protected]
    To: [email protected]
    Subject: How notification system work together with Acrobat X Pro?
    Hi Charles,
    You want to modify the signature field properties and set a script to execute when the field is signed.
    Here's how to get started in Acrobat X:
    Open the file that will eventually be uploaded to the server
    Click Tools on the top right to open the Tools panel
    Expand Forms (click on Forms so you can see the buttons underneath)
    Click the Edit button
    Right mouse click on the first signature field and then click Properties from the pop-up menu
    Select the Signed tab on the Digital Signature Properties dialog
    Select the This script executes when the field is signed radio button
    Click the Edit button
    Add the following in the JavaScript Editor dialog:
              var cMyMsg = "Please log on the server and sign the document";
              app.mailMsg ({
                  bUI: true,
                  cTo: "mailto:[email protected]",
                  cSubject: "A document requires your attention",
                  cMsg: cMyMsg
    Click the OK button on the JavaScript Editor dialog
    Click the Close button on the Digital Signature Properties dialog
    Click the Close Form Editing button in the Forms panel under Tools
    Save the PDF file
    It's going to look something like this:
    http://forums.adobe.com/servlet/JiveServlet/showImage/70913/SignScript.jpg
    Give that a try and from and see what you think. You can set the strings as necessary and repeat for each signature field (except for the last one )
    Steve
    >

  • Someone who can say how to get Adpbe flash player version 11.2.202.197 to work together with Lion on mac mini. Support from Apple can obviously not help the problem and do not care if it works

    Someone who can say how to get Adpbe flash player version 11.2.202.197 to work together with Lion on mac mini. Support from Apple can obviously not help the problem and do not care if it works

    Adobe flash player version 11.2.202.197 is for Windows Vista / Windows 7 / Vista 64 / Windows 7 64
    Adobe Flash Player version 11.1.102.55 is the current version for Snow Leopard and Lion.
    Adobe - Install Adobe Flash Player

  • Does iPhoto 11 works together with a NAS?

    Hi folks,
    does anybody know, if iPhoto 11 works together with a NAS, or does the iPhoto library still needs a MAC journaled HardDisk format?
    Kind regards,
    Michael

    I'm going to say no, none of my libraries have worked over a network very well or at all (lightroom totally blocks it). depending on your format (RAW, TIFF, JPEG), a NAS isn't fast enough to work from usually, unless you have apple supported hardware running fibre channel.
    best bet is to get a decent external drive & use the fastest interface you can (I use firewire 800). another option is to have or do it yourself hard drive upgrade.
    I may try this anyway, my copy is to be delivered tonight.

  • Does Tech21 Impact Band Case for iPhone 5 work together with a screen film?

    Does Tech21 Impact Band Case for iPhone 5 work together with a screen film? If it does what kind of screen film?

    A standard screen protector seems to large, when mounting the Band Case the edges on the screen protector get loose.

  • Convert a Mac Pro Server from January 2007 with OS 10.4 Server to Snow Leopard 6.0 (NON SERVER)

    I have a Mac Pro Server from January 2007 with OS 10.4 Server installed. I want to convert from OS 10 Server OS to just using Snow Leopard 6.0 (NON SERVER). I have two hard drives installed. What is the best way to do this?
    Can I just install Snow Leopard NON-SERVER on the second drive, then switch it into the place of the original main drive?
    Can I switch the drives, then install the Snow Leopard on the replacement drive?

    Not sure how you configured the server, though you can install snow leopard on second HDD and select boot drive with pressing "option" key during startup.

  • Ask Best Practice How to Work Together with ADF

    Hi,
    I'm using JDev 10.1.3.3 with CVS. Could someone show me best practice to work together in team to build an application using ADF Faces, EBJ and TopLink.
    I've read ADF Developer guide about collaboration with CVS, but still doesn't give enough best practice for me.
    For example, let say i have Oracle DB 11g as database and my application have 3 module (finance, sales and callcenter). The 3 module will access same database, schema and tablespace.
    I have 5 developer in team, now my problem is sometimes DataModel can make conflict with the other because we edit the file together (toplink.mwp), UserInterface also can make a conflict with file FacesConfig.xml, databindings.cpx etc.
    Please share some best practice.

    There's a new set of articles about team development with Subversion that you should probably read here:
    http://www.oracle.com/technology/pub/articles/adf-development-essentials/index.html

  • Working together with the other two editors on the same project

    Dear All,
    My situation is that I have three editors working together but not in the same place, and all of us have our own FCP. In short, my question is how we can work together.
    From my understanding, I need to Recompress two copies of the media files by using Media Manager and store the files into two portable firewire hard drives to give them to the other two editors first.
    Then I really have no idea how we call exchange our bin, sequence and project after we work on it. In Avid, I know I can just copy the bin and manually put it into project folder. How about FCP?
    Thanks in advance.
    King

    Nice suggestion.
    I've been researching digital asset management theory and practical applications for years. While doing so, I've been studying practices at production shops where several artists or technicians work on the same projects using remote connections and a variety of creative applications like Photoshop, Flash, and video editors. Without centralized network storage that is deliberately built into the hardware systems, all I have come across are complex processes that require careful policing and stringent adherence to filenaming and file placement conventions as well as mutual commitment from all parties to communicate openly, precisely, and on some kind of dependable schedule.
    All of these ad hoc management processes are doomed to failure because, just by the burden of the paperwork, they impede the flow of the job. And yet without them, all parties rapidly become confused and work is lost or duplicated needlessly, making a joke of the whole thing. As soon as one party is allowed to sidestep or ignore one step in the elaborate process, the entire process can be discarded.
    My limited experience with joint editing is to divide the project into sections and marry the segments collaboratively instead of trying to allow everyone to work the whole project at the same time.
    bogiesan

  • Why is photostream not working together with my macbook and iphone?

    Photostream is not working togther with my macbook and iphone. How can I sync it?

    Has it ever worked?
    If you recently turned on photo stream on the mac and iphone, then (on the iphone) only new photos are included in photo stream, old ones are not.
    But syncing to your mac (if the photos originate from the iphone) is critical.  That's how you store photos (they can easily disappear on the iphone due to many "issues" that can occur, and relying on an icloud backup is not safe - to many users have lost some/all their photos when doing a restore.
    So be sure to begin by doing a sync to the mac using itunes/iphoto with a USB cable. 

  • Aiport Extreme and Airport Express are not working together with DSL

    My 2wire modem failed and I have replaced it with a basic actiontec dsl modem. I have my airport extreme connected to the actiontec via ethenet cable. All is working. Internet access through the actiontec is working and internet access through the extreme is working. What I cannot for the life of me remember how to do is get my express to work as a range extender for airport extreme.
    The extreme is set up in Ethernet not PPPoE mode which might be the issue, but I can't remember the right settings (IP ranges, etc) if I set it up in PPPoE mode.
    Net - my network that was working DSL modem to Extreme to Express as a range extender no longer works at the Express end. And don't even get me started about AT&T tech support. Help smart guys/girls out there - I know this is something simple that I should have written down when I first set up my network...

    shakeelium wrote:
    Good People,
    I have an Airport Extreme serving as my wireless router with an external hard drive connected to it.  I also have an Airport Express in another room connected to a stereo for Airplay.  Neither can be found on the Airport Utility (v5.5.3), but wireless internet still works.  This happens often, with both reappearing in Airport Utility for short amounts of time periodically.
    I've once had the same problem.
    The reason for that issue is the frequency (radio band) hopping of the station.
    On your AP-Extreme
    Enter the manual setup
    Disable Guest Network if not desperately needed
    Set a dedicated name for the 5GHz wireless (wireless -> wireless options)
    Eventually change the radio mode (if no 802.11b/g systems in your home) to "only 802.11n (5GHz) - only 802.11n (2.4GHz)" by holding down the option key *alt* while clicking on the drop down.
    On your Mac
    Disable (switch off) wireless
    Enter system configuration -> network -> wireless
    Uncheck "Ask to join new networks"
    Enter advanced options and check that your wireless name is in the first position of the list. If not, drag it with the mouse to the first position.
    Click apply
    Join your wireless again and try to connect to the 5GHz name (SSID) because the 5GHz will improve the connection speed of your Mac remarkably.
    Eventually you might change the settings on the Express too.
    Check the location of the AP-Extreme.
    It should NOT be placed: On the floor, in a corner, behind furniture, near metal objects, life high voltage wire or cordless phone bases.
    It should be placed: As high as possible (up on a shelf or ceiling mounted) with a maximum line of sight to all stations, even thru walls.
    If your home situation allows that, try to use the 5GHz band only. If you own a iPhone this must use the 2.4GHz radio.
    Lupunus

  • How do I configure my Airport to work well with a Linksys WRT54G?

    I have DSL Extreme coming into my house in bridge mode. (Don't know the specifics, but they said that's how it has to work.) I had my Airport Extreme connected to the modem, sending out a nice wireless signal.
    I was given a Linksys WRT54G Ver. 6 wireless router, and I thought I'd use it as the main router connected the modem. I also want to use it as a wireless access point for one half the house for b/g devices AND I also want to set up the Airport Extreme as another wired access point for the other half of the house for n devices.
    So, I set up the Linksys as the main router sending out a wireless signal on channel 1 for b/g devices. I connected the WAN port of the Airport to one of the open LAN ports on the Linksys, changed the Airport to Bridge mode, and set up a new wirelss network to broadcast on a different channel. Unfortunately, this isn't working. Only the Linksys wireless is working properly, i.e. connected to the internet. The Airport broadcasts the wireless signal, but it isn't connecting to the internet.
    I've tried changing the IP address of the Airport to one that falls within the range of the Linksys (192.168.1.x) and making sure that the subnet of the Airport is identical to the Linksys. I've also added the DNS servers, although I'm not sure why the Airport Admin Utility asked for this. Regardless, nothing works. I'll get a green light, but there's no connectivity to the internet.
    I've also tried connecting to a LAN port and not the WAN port on the Airport. No joy there.
    I've read through numerous threads, and they all seem to indicate that my original set up should work. I've upgraded my Linksys firmware, to no avail. I don't want the Airport to be a repeater as there is a reduction in speed. I want to have two separate wireless access points.
    Thanks in advance for any and all help.

    Ok, I got you. Prior to the introduction of the simultaneous dual-band routers, the only way to mimic them was exactly what you are trying to do. Connect two routers by Ethernet and create separate wireless networks to allow clients to connect to either as appropriate.
    You are also correct that the upstream router (Linksys) should have both NAT & DHCP enabled and that the downstream router (AirPort) be configured as a bridge. The only recommendation is to set the AirPort's static Private IP address to one just outside of the Linksys' DHCP server range instead of inside it to prevent the same IP address being handed out to multiple clients.
    You could do this a number of ways, but the simplest would be to use the Configure IPv4 = Manually option on the TCP/IP tab within the AirPort Utility. Use the LAN-side IP address of the Linksys for the Router Address, and the appropriate DNS server addresses (either your ISP's or a service like OpenDNS). The Domain Name field can be left blank.
    Since the AirPort is in bridge mode, it really doesn't matter which Ethernet port (WAN or LAN) you connect the Linksys to, but for consistency, I would recommend the WAN (circle-of-dots) port.

  • Do we need appache and ssl work together with tomcat

    Hi all,
    I have experience use tomcate+ sql2000 +JDK to develop and web search site.  Now I hope somebody told me
    1) do I need add apache with tomcat?
    2) do I need to add SSL?
    thank you every much

    Hi all,
    I download mod_jk 1.2.5_2.0.47.dll from (http://www.apache.org/dist/jakarta/tomcat-connectors/jk/binaries/win32/) rname it as mod_jk.dll and put it down to apache modules, at this step I still get Syntax Ok when I try c:\apache|apache2\bin|Apache.exe -t. but when I add
    <Listener className="org.apache.ajp.tomcat5.config.ApacheConfig" modJk="c:/Apache/Apache2/modules/mod_jk.dll" /> just below the
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    I can't not star my tomcat.
    what is wrong??
    I have apache 2.0.50 and tomcat 5.0.25 on my Pc and before I add apache my tomcat work fine.
    Thank you

  • Server login works just with Open Dir user not local user ?

    Hi,
    New to MAC server and trying to learn.
    I configured the server with a local account and then took into use the OpenDir
    service and made some new users.
    Now I can login an the server just using my OpenDir username NOT my local serveradmin username
    that was used when setting up the server.
    This is a login on the actual server itself - not remotely.
    Have I configured something wrongly or should this behave like this?
    Sincerely,
    DB
    Message was edited by: DominicusB

    No names are identical.
    Tried to look in the place where the login cridentials are
    configured (login options) and there was a searchpath "local" and "LDAP"
    so it seems to me that it's allright.
    Hope someone sees something obvious that I'm missing.
    I can login using one of the OD users and then authenticate when changing something
    on the server using the serveradmin username.
    Sincerely,
    DB
    Message was edited by: DominicusB
    Message was edited by: DominicusB

  • Did SRM 4.0 can work together with ECC 6?

    Hi:
       We are in a process of upgrade, we are plannig to move from R3 4.7c to ECC 6, and also we have a SRM 4.0.
       Do you know if it is possible to SRM 4.0 to work with ECC 6?? We want to know if we can stay our current version of SRM, and just upgrade R3 to ECC.
       Does anyone have this scenario implemented in your business?
       I'll appreciate your answers.
       Best regards, Abraham
    Edited by: Abraham Delgado on Nov 24, 2009 10:37 PM

    HI Matthew wee are facing a similar situation with our sap landscape with upgrading an EEC5 to an ECC6 system, and we are also looking to upgrade SRM 4-7
    how successful were you with your project and what issues have you come across  ?
    any information would be greatly appreciated.
    Cheers
    James
    Edited by: James Ibbotson on Oct 13, 2010 3:21 PM

Maybe you are looking for

  • Read ibooks in itunes in macbook pro

    Hi! I'm an happy user of macbook pro and I enjoy itunes very much. As most of mac users, i prefer to have one app that does most of the things instead than 200 apps unlinked doing part of the job. Indeed i was very happy to see that it's possible to

  • AD FS 2.0 Authentication loop

    We have set up a few SSO services in AD FS 2.0 and one is limited by group membership due to license issues. If a user not a member of the group tries to log on they end up in a loop and event log is filled with thousands of "The caller is not author

  • [solved]VLC crash while playing rmvb video

    I executed it from the terminal to find the error message [bahaa@Bahaa ~]$ vlc VLC media player 2.1.5 Rincewind (revision 2.1.4-49-gdab6cb5) [0x100a118] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface. [rm

  • Hiding the FLVPlayback control bar

    I have a FLVPlayback on my stage, but I want to use my own controls rather than the ones provided by the skin. I read that I can make my own skin - but have not been successful. Any pointers as to how to do it?

  • Video and sound slightly out of sync when screen mirroring

    When I start screen mirroring and play a video, then my macbook screen matches perfectly with the sound output from my stereo, but my tv is slightly delayed compared to my macbook which makes the sound and video out of sync. it is something like 1/10