[SOLVED] Help to compile qutim 0.2 please!

Hello everybody,
I'm trying to compile a package "qutim 0.2" messenger, the best lightweight linux gui messenger out there.
Help needed as I can't compile it from AUR package and from source.
here is what I get:
[100%] Building CXX object CMakeFiles/qutim.dir/src/corelayers/tray/moc_exsystrayicon.cxx.o
[100%] Building CXX object CMakeFiles/qutim.dir/qrc_qutim.cxx.o
Linking CXX executable qutim
/usr/bin/ld: CMakeFiles/qutim.dir/src/idle/idle_x11.cpp.o: undefined reference to symbol 'XSetErrorHandler'
/usr/bin/ld: note: 'XSetErrorHandler' is defined in DSO /usr/lib/libX11.so.6 so try adding it to the linker command line
/usr/lib/libX11.so.6: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
make[2]: *** [qutim] Error 1
make[1]: *** [CMakeFiles/qutim.dir/all] Error 2
make: *** [all] Error 2
I don't understand what linker command line means, and what should I exactly do from here?
Could somebody explain me and guide me what should I do next?
Last edited by tasty_minerals (2011-12-23 10:26:58)

Here is CMakeLists.txt
CMAKE_MINIMUM_REQUIRED (VERSION 2.6 FATAL_ERROR)
IF (COMMAND cmake_policy)
cmake_policy (SET CMP0003 NEW)
ENDIF (COMMAND cmake_policy)
PROJECT (qutim)
SET(QT_MIN_VERSION "4.4.0")
ADD_DEFINITIONS ( -DBUILD_QUTIM )
if( UNIX )
if( BSD )
SET( CMAKE_THREAD_LIBS -pthread )
SET( CMAKE_USE_PTHREADS ON )
SET( CMAKE_EXE_LINKER_FLAGS -pthread )
endif( BSD )
endif( UNIX )
if(NOT REVISION )
find_path(REVISION_ENTRY "entries" "${CMAKE_CURRENT_SOURCE_DIR}/.svn")
if( REVISION_ENTRY )
file(STRINGS "${REVISION_ENTRY}/entries"
QUTIM_SVN_INFO
LIMIT_COUNT 4)
list(GET QUTIM_SVN_INFO 3 QUTIM_SVN_REVISION)
else( REVISION_ENTRY )
find_path(REVISION_FILE ".revision" "${CMAKE_CURRENT_SOURCE_DIR}")
if( REVISION_FILE )
file(STRINGS "${REVISION_FILE}/.revision"
QUTIM_SVN_INFO
LIMIT_COUNT 2)
list(GET QUTIM_SVN_INFO 0 QUTIM_SVN_REVISION)
else( REVISION_FILE )
set( QUTIM_SVN_REVISION 0 )
endif( REVISION_FILE )
endif( REVISION_ENTRY )
else(NOT REVISION )
set( QUTIM_SVN_REVISION ${REVISION} )
endif(NOT REVISION )
message( "Current revision: ${QUTIM_SVN_REVISION}" )
ADD_DEFINITIONS( -DQUTIM_SVN_REVISION=${QUTIM_SVN_REVISION} )
SET (CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
SET (CMAKE_BUILD_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
SET (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
LIST (APPEND CMAKE_MODULE_PATH "cmake")
LIST (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
SET (QT_USE_QTNETWORK true)
SET (QT_USE_QTXML true)
IF(NOT NO_CHAT)
SET (QT_USE_QTWEBKIT true)
SET (QT_USE_QTUITOOLS true)
ENDIF(NOT NO_CHAT)
SET (QUTIM_LIBS "")
IF( Phonon )
SET (PHONON_REQUIRED)
include( FindPhonon )
IF(PHONON_FOUND)
ADD_DEFINITIONS ( -DHAVE_PHONON )
LIST(APPEND QUTIM_LIBS ${PHONON_LIBS})
ENDIF(PHONON_FOUND)
ENDIF( Phonon )
SET (QUTIM_PLUGINS_DEST "lib/qutim/")
FIND_PACKAGE (Qt4 REQUIRED)
INCLUDE (UseQt4)
INCLUDE (MacroEnsureVersion)
INCLUDE_DIRECTORIES (${QT_QTGUI_INCLUDE_DIR}
${QT_QTCORE_INCLUDE_DIR}
${QT_QTXML_INCLUDE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
src
src/3rdparty/qtsolutions
src/plugins
src/idle
include
macro_ensure_version( "4.5.0" ${QTVERSION} Qt4_HAS_4_5 )
IF (UNIX)
include( FindPkgConfig )
pkg_check_modules (XSS xscrnsaver)
IF( XSS_FOUND )
ADD_DEFINITIONS( -DHAVE_XSS )
FIND_LIBRARY( XSS_LIB NAMES Xss PATHS ${XSS_LIBDIR} )
LIST( APPEND QUTIM_LIBS ${XSS_LIB} )
INCLUDE_DIRECTORIES( ${XSS_INCLUDEDIR} )
ELSE( XSS_FOUND )
message(STATUS "Warning: libxss not found, idle detection won't be accurate")
ENDIF( XSS_FOUND )
ENDIF (UNIX)
SET (HEADERS
include/qutim/plugininterface.h
include/qutim/protocolinterface.h
solutions/qtcustomwidget.h
solutions/qtcustomwidget_p.h
src/3rdparty/qtsolutions/qtlocalpeer.h
src/3rdparty/qtwin/qtwin.h
src/aboutinfo.h
src/abstractcontextlayer.h
src/abstractlayer.h
src/accountmanagement.h
src/addaccountwizard.h
src/console.h
src/globalsettings/abstractglobalsettings.h
src/globalsettings/globalproxysettings.h
src/guisettingswindow.h
src/iconmanager.h
src/idle/idle.h
src/logindialog.h
src/mainsettings.h
src/pluginsettings.h
src/pluginsystem.h
src/profilelogindialog.h
src/qutim.h
src/qutimsettings.h
src/systeminfo.h
if( Qt4_HAS_4_5 )
LIST( APPEND HEADERS src/proxyfactory.h )
endif( Qt4_HAS_4_5 )
SET (SOURCES
main.cpp
solutions/qtcustomwidget.cpp
src/3rdparty/qtsolutions/qtlocalpeer.cpp
src/3rdparty/qtwin/qtwin.cpp
src/aboutinfo.cpp
src/abstractcontextlayer.cpp
src/abstractlayer.cpp
src/accountmanagement.cpp
src/addaccountwizard.cpp
src/console.cpp
src/globalsettings/abstractglobalsettings.cpp
src/globalsettings/globalproxysettings.cpp
src/guisettingswindow.cpp
src/iconmanager.cpp
src/idle/idle.cpp
src/idle/idle_mac.cpp
src/idle/idle_win.cpp
src/idle/idle_x11.cpp
src/logindialog.cpp
src/mainsettings.cpp
src/pluginsettings.cpp
src/pluginsystem.cpp
src/profilelogindialog.cpp
src/proxyfactory.cpp
src/qutim.cpp
src/qutimsettings.cpp
src/systeminfo.cpp
SET (RESOURCES
qutim.qrc
SET (FORMS
src/aboutinfo.ui
src/accountmanagement.ui
src/console.ui
src/globalsettings/globalproxysettings.ui
src/guisettingswindow.ui
src/logindialog.ui
src/mainsettings.ui
src/pluginsettings.ui
src/profilelogindialog.ui
src/qutim.ui
src/qutimsettings.ui
IF(NOT NO_ANTISPAM)
LIST (APPEND HEADERS
src/corelayers/antispam/abstractantispamlayer.h
src/corelayers/antispam/antispamlayersettings.h
LIST (APPEND SOURCES
src/corelayers/antispam/abstractantispamlayer.cpp
src/corelayers/antispam/antispamlayersettings.cpp
LIST (APPEND FORMS
src/corelayers/antispam/antispamlayersettings.ui
ELSE(NOT NO_ANTISPAM)
ADD_DEFINITIONS( -DNO_CORE_ANTISPAM )
ENDIF(NOT NO_ANTISPAM)
IF(NOT NO_CHAT)
LIST (APPEND HEADERS
src/corelayers/chat/chatemoticonmenu.h
src/corelayers/chat/chatforms/chatwindow.h
src/corelayers/chat/chatforms/conferencewindow.h
src/corelayers/chat/chatlayerclass.h
src/corelayers/chat/chatwindowstyle.h
src/corelayers/chat/chatwindowstyleoutput.h
src/corelayers/chat/confcontactlist.h
src/corelayers/chat/conferenceitem.h
src/corelayers/chat/conferenceitemmodel.h
src/corelayers/chat/conferencetabcompletion.h
src/corelayers/chat/generalwindow.h
src/corelayers/chat/logscity.h
src/corelayers/chat/movielabel.h
src/corelayers/chat/separatechats.h
src/corelayers/chat/settings/chatlayersettings.h
src/corelayers/chat/tabbedchats.h
src/corelayers/chat/tempglobalinstance.h
LIST (APPEND SOURCES
src/corelayers/chat/chatemoticonmenu.cpp
src/corelayers/chat/chatforms/chatwindow.cpp
src/corelayers/chat/chatforms/conferencewindow.cpp
src/corelayers/chat/chatlayerclass.cpp
src/corelayers/chat/chatwindowstyle.cpp
src/corelayers/chat/chatwindowstyleoutput.cpp
src/corelayers/chat/confcontactlist.cpp
src/corelayers/chat/conferenceitem.cpp
src/corelayers/chat/conferenceitemmodel.cpp
src/corelayers/chat/conferencetabcompletion.cpp
src/corelayers/chat/generalwindow.cpp
src/corelayers/chat/logscity.cpp
src/corelayers/chat/movielabel.cpp
src/corelayers/chat/separatechats.cpp
src/corelayers/chat/settings/chatlayersettings.cpp
src/corelayers/chat/tabbedchats.cpp
src/corelayers/chat/tempglobalinstance.cpp
LIST (APPEND FORMS
src/corelayers/chat/chatforms/chatform.ui
src/corelayers/chat/chatforms/conferenceform.ui
src/corelayers/chat/settings/chatlayersettings.ui
ELSE(NOT NO_CHAT)
ADD_DEFINITIONS( -DNO_CORE_CHAT )
ENDIF(NOT NO_CHAT)
IF(NOT NO_CONTACTLIST)
LIST (APPEND HEADERS
src/corelayers/contactlist/contactlistitemdelegate.h
src/corelayers/contactlist/contactlistproxymodel.h
src/corelayers/contactlist/contactlistsettings.h
src/corelayers/contactlist/defaultcontactlist.h
src/corelayers/contactlist/proxymodelitem.h
src/corelayers/contactlist/treecontactlistmodel.h
src/corelayers/contactlist/treeitem.h
LIST (APPEND SOURCES
src/corelayers/contactlist/contactlistitemdelegate.cpp
src/corelayers/contactlist/contactlistproxymodel.cpp
src/corelayers/contactlist/contactlistsettings.cpp
src/corelayers/contactlist/defaultcontactlist.cpp
src/corelayers/contactlist/proxymodelitem.cpp
src/corelayers/contactlist/treecontactlistmodel.cpp
src/corelayers/contactlist/treeitem.cpp
LIST (APPEND FORMS
src/corelayers/contactlist/contactlistsettings.ui
src/corelayers/contactlist/defaultcontactlist.ui
ELSE(NOT NO_CONTACTLIST)
IF(NOT NO_CHAT)
LIST (APPEND HEADERS src/corelayers/contactlist/contactlistitemdelegate.h)
LIST (APPEND SOURCES src/corelayers/contactlist/contactlistitemdelegate.cpp)
ENDIF(NOT NO_CHAT)
ADD_DEFINITIONS( -DNO_CORE_CONTACTLIST )
ENDIF(NOT NO_CONTACTLIST)
IF(NOT NO_EMOTICONS)
LIST (APPEND HEADERS
src/corelayers/emoticons/abstractemoticonslayer.h
LIST (APPEND SOURCES
src/corelayers/emoticons/abstractemoticonslayer.cpp
ELSE(NOT NO_EMOTICONS)
ADD_DEFINITIONS( -DNO_CORE_EMOTICONS )
ENDIF(NOT NO_EMOTICONS)
IF(NOT NO_HISTORY)
LIST (APPEND HEADERS
src/corelayers/history/historysettings.h
src/corelayers/history/historywindow.h
src/corelayers/history/jsonengine.h
src/corelayers/history/k8json.h
LIST (APPEND SOURCES
src/corelayers/history/historysettings.cpp
src/corelayers/history/historywindow.cpp
src/corelayers/history/jsonengine.cpp
src/corelayers/history/k8json.cpp
LIST (APPEND FORMS
src/corelayers/history/historysettings.ui
src/corelayers/history/historywindow.ui
ELSE(NOT NO_HISTORY)
ADD_DEFINITIONS( -DNO_CORE_HISTORY )
ENDIF(NOT NO_HISTORY)
IF(NOT NO_NOTIFICATION)
LIST (APPEND HEADERS
src/corelayers/notification/defaultnotificationlayer.h
src/corelayers/notification/notificationslayersettings.h
src/corelayers/notification/popuptextbrowser.h
src/corelayers/notification/popupwindow.h
src/corelayers/notification/soundlayersettings.h
LIST (APPEND SOURCES
src/corelayers/notification/defaultnotificationlayer.cpp
src/corelayers/notification/notificationslayersettings.cpp
src/corelayers/notification/popuptextbrowser.cpp
src/corelayers/notification/popupwindow.cpp
src/corelayers/notification/soundlayersettings.cpp
LIST (APPEND FORMS
src/corelayers/notification/notificationslayersettings.ui
src/corelayers/notification/popupwindow.ui
src/corelayers/notification/soundlayersettings.ui
ELSE(NOT NO_NOTIFICATION)
ADD_DEFINITIONS( -DNO_CORE_NOTIFICATION )
ENDIF(NOT NO_NOTIFICATION)
IF(NOT NO_SETTINGS)
LIST (APPEND HEADERS
src/corelayers/settings/qsettingslayer.h
LIST (APPEND SOURCES
src/corelayers/settings/qsettingslayer.cpp
ELSE(NOT NO_SETTINGS)
ADD_DEFINITIONS( -DNO_CORE_SETTINGS )
ENDIF(NOT NO_SETTINGS)
IF(NOT NO_SOUNDENGINE)
LIST (APPEND HEADERS
src/corelayers/soundengine/defaultsoundenginelayer.h
src/corelayers/soundengine/soundenginesettings.h
LIST (APPEND SOURCES
src/corelayers/soundengine/defaultsoundenginelayer.cpp
src/corelayers/soundengine/soundenginesettings.cpp
LIST (APPEND FORMS
src/corelayers/soundengine/soundenginesettings.ui
ELSE(NOT NO_SOUNDENGINE)
ADD_DEFINITIONS( -DNO_CORE_SOUNDENGINE )
ENDIF(NOT NO_SOUNDENGINE)
IF(NOT NO_SPELLER)
LIST (APPEND HEADERS
src/corelayers/speller/spellerhighlighter.h
src/corelayers/speller/spellerlayerclass.h
LIST (APPEND SOURCES
src/corelayers/speller/spellerhighlighter.cpp
src/corelayers/speller/spellerlayerclass.cpp
ELSE(NOT NO_SPELLER)
ADD_DEFINITIONS( -DNO_CORE_SPELLER )
ENDIF(NOT NO_SPELLER)
IF(NOT NO_STATUS)
LIST (APPEND HEADERS
src/corelayers/status/defaultstatuslayer.h
src/corelayers/status/statusdialog.h
src/corelayers/status/statuspresetcaption.h
LIST (APPEND SOURCES
src/corelayers/status/defaultstatuslayer.cpp
src/corelayers/status/statusdialog.cpp
src/corelayers/status/statuspresetcaption.cpp
LIST (APPEND FORMS
src/corelayers/status/statusdialogvisual.ui
src/corelayers/status/statuspresetcaption.ui
ELSE(NOT NO_STATUS)
ADD_DEFINITIONS( -DNO_CORE_STATUS )
ENDIF(NOT NO_STATUS)
IF(NOT NO_TRAY)
LIST (APPEND HEADERS
src/corelayers/tray/defaulttraylayer.h
src/corelayers/tray/exsystrayicon.h
LIST (APPEND SOURCES
src/corelayers/tray/defaulttraylayer.cpp
src/corelayers/tray/exsystrayicon.cpp
ELSE(NOT NO_TRAY)
ADD_DEFINITIONS( -DNO_CORE_TRAY )
ENDIF(NOT NO_TRAY)
IF (WIN32)
# LIST (APPEND SOURCES
# src/ex/exsystrayicon.cpp
# src/idle/idle_win.cpp
# LIST (APPEND HEADERS
# src/ex/exsystrayicon.h
if (MINGW)
exec_program(windres
ARGS "-i qutim.rc -o qutim_res.o --include-dir=${CMAKE_CURRENT_SOURCE_DIR}")
LIST (APPEND SOURCES qutim_res.o)
else(MINGW)
LIST (APPEND SOURCES qutim.rc)
endif(MINGW)
ENDIF (WIN32)
#IF (APPLE)
# LIST (APPEND SOURCES
# src/ex/exsystrayicon.cpp
# src/idle/idle_mac.cpp
# LIST (APPEND HEADERS
# src/ex/exsystrayicon.h
# SET (MACOSX_BUNDLE_ICON_FILE icons/qutim.icns)
#ELSEIF (UNIX)
# LIST (APPEND SOURCES
# src/idle/idle_x11.cpp
#ENDIF ()
set( QUTIM_DO_NOT_FIND "true" )
include( FindQutIM )
QT4_WRAP_CPP (MOC_SRCS ${HEADERS})
QT4_WRAP_UI (UIS_H ${FORMS})
QT4_ADD_RESOURCES (RCC ${RESOURCES})
if( APPLE )
SET (MACOSX_BUNDLE_ICON_FILE icons/qutim.icns)
ADD_EXECUTABLE (qutim MACOSX_BUNDLE ${SOURCES} ${MOC_SRCS} ${UIS_H} ${RCC})
else( APPLE )
ADD_EXECUTABLE (qutim WIN32 ${SOURCES} ${MOC_SRCS} ${UIS_H} ${RCC})
endif( APPLE )
TARGET_LINK_LIBRARIES (qutim
${QT_LIBRARIES}
${QT_QTMAIN_LIBRARY}
${QUTIM_LIBS}
SET (module_install_dir "${CMAKE_ROOT}/Modules")
SET (CMAKE_MODULES
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindQutIM.cmake"
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/qutimuic.cmake"
SET (DEV_HEADERS
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/iconmanagerinterface.h"
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/layerinterface.h"
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/layerscity.h"
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/plugininterface.h"
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/protocolinterface.h"
"${CMAKE_CURRENT_SOURCE_DIR}/include/qutim/settings.h"
CONFIGURE_FILE(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)
ADD_CUSTOM_TARGET(uninstall
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
INSTALL (FILES ${CMAKE_MODULES} DESTINATION ${module_install_dir})
INSTALL (FILES ${DEV_HEADERS} DESTINATION "include/qutim")
INSTALL (TARGETS qutim DESTINATION "bin")
INSTALL (FILES "${CMAKE_CURRENT_SOURCE_DIR}/share/qutim.desktop" DESTINATION "share/applications")
INSTALL (FILES "${CMAKE_CURRENT_SOURCE_DIR}/icons/qutim_64.png" DESTINATION "share/icons/hicolor/64x64/apps" RENAME "qutim.png")
INSTALL (FILES "${CMAKE_CURRENT_SOURCE_DIR}/icons/qutim.xpm" DESTINATION "share/pixmaps")

Similar Messages

  • Cannot Compile....please help

    I am trying to compile the program below. I have set my class path, but this is the first time I have tried to import files. The attached program is in a folder called C:\csci3753
    My import files are in subdirectories of C:\jdk1.3.1_02
    I get the following error:
    C:\csci3753>javac -sourcepath . MultipleSelection.java
    error: cannot read: MultipleSelection.java
    1 error
    I attached the code, I think it is the way I am setting up my compile line...please help.
    // Multiple-Selection Lists
    // Copying items from one list to another.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public static void main(String[] args)
              MultipleSelection ms = new MultipleSelection();
              ms.addWindowListener(
                   new WindowAdapter() {
                        public void windowClosing(WindowEvent e)
                             System.exit(0);
    public class MultipleSelection extends JFrame
         private JList colorList, copyList;
         private JButton copy;
         private String colorName[] = {"Black", "Blue", "Cyan","Dark Gray","Gray",
         "Green","Light Gray","Magenta","Orange",
                        "Pink","Red","White","Yello","White"};
    public MultipleSelection()
              super("Multiple Selection List");
              Container c = getContentPane();
              c.setLayout(new FlowLayout());
              colorList = new JList(colorName);
              colorList.setVisibleRowCount(5);
              colorList.setFixedCellHeight(15);
                        colorList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
              c.add(new JScrollPane(colorList));
              copy = new JButton("Copy >>>");
              copy.addActionListener(
                   new ActionListener() {
                        public void actionPerformed(ActionEvent e)
                             copyList.setListData(colorList.getSelectedValues());
              c.add(copy);
              copyList = new JList();
              copyList.setVisibleRowCount(5);
              copyList.setFixedCellWidth(100);
              copyList.setFixedCellHeight(15);
              copyList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
              c.add(new JScrollPane(copyList));
              setSize(300, 120);
              show();

    If you are compiling from the same directory as the source file, then you don't need a sourcepath. Just type:
    javac MultipleSelection.javaThe import files will be found as long as you have the C:\jdk1.3.1_02\bin directory in your command path.
    By the way, you will need to move the 'main' method into the MultipleSelection class to compile correctly.
    Hope this helps.
    Jeff Hurt

  • When publishing a captivate I get the message "Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name." and it won't allow me to publish the Captivate, can anyone help?

    When publishing a captivate I get the message "Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name." and it won't allow me to publish the Captivate, can anyone help?

    Hi There,
    Can you tell me the Operating System and Captivate version you are using?
    Also can you confirm if you are getting this issue will this one project or all the projects? Try to copy paste this project on a new blank project and then try to publish.
    Regards,
    Mayank

  • HT4623 why my device  had "no service" even I already put my sim card..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    why my device  had "no service" ..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    See if anything in this support document help http://support.apple.com/kb/ts4429

  • When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."  Reistallation impossible!

    When starting Window XP on my laptop (which was connected, in the past, in a wi-fi network now no more available) appears immediatly this allert: "iTunes Helper was not installed correctly. Please reinstall iTunes. ERROR 7."
    Reistallation of older or up to date  iTunes versions is impossible because: "Installation package iTunes.msi is located on a network resource not available" and because "It is impossible to remuove thew previous verson of iTunes. Impossible fto find the path."
    Someone can help me ???
    Thank,
    Gerald

    Take a look at iTunes for Windows: "Error 7" message when opening iTunes. Perhaps your .NET Framework needs a repair.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Unable to publish in Swf format. Get error message: 'Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name'. Anyone know how to fix?

    Unable to publish in Swf format. Get error message reads: 'Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name'. Anyone know how to fix?

    Hi There,
    Can you tell me the Operating System and Captivate version you are using?
    Also can you confirm if you are getting this issue will this one project or all the projects? Try to copy paste this project on a new blank project and then try to publish.
    Regards,
    Mayank

  • Need some help with security sandbox stuff asap please

    hey guys... so im trying to do a swfLoader call to a swf on a server from my actionscript on my local machine, when i do that i get the security sandbox violation error.... i tried adding a crossdomain.xml file to the server that has the following code in it
    <cross-domain-policy>
         <site-control permitted-cross-domain-policies="master-only"/>
         <allow-access-from domain="*"/>
         <allow-http-request-headers-from domain="*" headers="SOAPAction"/>
    </cross-domain-policy>
    and in my actionscript on application initialize i do
    initialize="init(); Security.loadPolicyFile('http://myServer.com/crossdomain.xml')"
    i also do
    Security.allowDomain("http://myServer.com");
    any ideas???? oh and i also went to this website http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.ht ml and set the always allow trust locations to "/"
    any ideas on how i could possible fix this problem?? ive been trying to get around this problem for the last 2 days!!
    please help!!!!

    Hi,
    Please use policy file logging to check the exact error. This should shed some light on the problem.The procedure is detailed here.
    http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_05.html
    Nishad

  • Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    Good evening I would please help me, IGood evening I would please help me, I have problems with flash player when update on my computer Flash Player for windows 8, gives me error in the installation that is not apply on my computer. Please help. Thank You

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • Help with Adobe.premiere.elements12. Please It would appear under the organizer tab that the photos are organised in the lowest folder in the folder structure within Windows Explorer.  How can I use the Windows Explorer structure to organise the photos wi

    Help with Adobe.premiere.elements12. Please
    It would appear under the organizer tab that the photos are organised in the lowest folder in the folder structure within Windows Explorer.  How can I use the Windows Explorer structure to organise the photos within Elements.

    In a situation such as yours, I tend to consolidate items into folders so I have folders of nice workable numbers of images, somewhere between 20 and 200 images. Now, whatever, once you've imported, do your moving within LR, not the OS! I will select all in a folder and drag into a folder a level or two or three above, and then delete the newly empty subfolders. I hope this helps a bit!
    Once you've reached just new Imports of camera output, you'll be flying along.

  • Help Needed compile, deploy Web Service with Annotations on Web Logic 9.2

    Hi,
    I am new web logic and need some help in compiling, creating deployment file i.e. war, ear on Web Logic 9.2. I have the following sample web service with annotations code code but need help in compiling, creating deployment file (war,ear), creating proxy for testing etc. How to compile and create deployment files in WebLogic 9.2. Any help is really appreciated.
    package sample_ws;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }Thanks

    I am using Oracle Jdeveloper as an IDE and created a war file and deployed on Oracle App. Server it works fine. Now if I deploy the same war on Web Logic it gives me the following error:
    java.lang.IllegalStateException: could not find schema type named {{http}//exa.org}>>echoResult
    Errors were encountered while performing this operation. Here is the code I have:
    package webservice2 ;
    import java.rmi.RemoteException;
    import javax.jws.*;
    import javax.jws.soap.SOAPBinding;
    import org.w3c.dom.Document;
    @WebService
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT,
                 use = SOAPBinding.Use.LITERAL,
                 parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class EchoService {
        public EchoService() {
        @WebMethod(action="echo")
        @WebResult(targetNamespace="http://exa.org", name="echoResult")
        public Document echo(@WebParam(targetNamespace = "http://exa.org",
                                       name = "echoMsg")
            Document doc) throws RemoteException{
            return doc;
    }And here is the wsdl file I have:
    <definitions
         name="EchoServiceService"
         targetNamespace="http://webservice2/"
         xmlns="http://schemas.xmlsoap.org/wsdl/"
         xmlns:tns="http://webservice2/"
         xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
         xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
         xmlns:ns1="http://exa.org"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        >
        <types>
            <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://exa.org" elementFormDefault="qualified"
                 xmlns:tns="http://exa.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
                <element name="echoMsg" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
                <element name="echoResult" nillable="true">
                    <complexType>
                        <sequence>
                            <any/>
                        </sequence>
                    </complexType>
                </element>
            </schema>
        </types>
        <message name="EchoServicePortType_echo">
            <part name="echoMsg" element="ns1:echoMsg"/>
        </message>
        <message name="EchoServicePortType_echoResponse">
            <part name="echoResult" element="ns1:echoResult"/>
        </message>
        <portType name="EchoService">
            <operation name="echo">
                <input message="tns:EchoServicePortType_echo"/>
                <output message="tns:EchoServicePortType_echoResponse"/>
            </operation>
        </portType>
        <binding name="EchoServiceSoapHttp" type="tns:EchoService">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="echo">
                <soap:operation soapAction="echo"/>
                <input>
                    <soap:body use="literal" parts="echoMsg"/>
                </input>
                <output>
                    <soap:body use="literal" parts="echoResult"/>
                </output>
            </operation>
        </binding>
        <service name="EchoServiceService">
            <port name="EchoServiceSoapHttpPort" binding="tns:EchoServiceSoapHttp">
                <soap:address location="http://localhost:8888/EnableSrc-WebService2-context-root/EchoServiceSoapHttpPort"/>
            </port>
        </service>
    </definitions>Any ideas what might be wrong.

  • Help itunes won download tried everything please help

    ok just got my itouch today and tried to download itunes it got to the part where the green is almost finished and it says on the status bar that it is starting services then a thing pops up and says ipod service modulestopped working and was closed then in small lettering under that it says a problem caused the application to stop working i have looked around to see if i could find something that might help and have found nothing so please someone help me

    However I try to open it (double clicking/right click and launch/run as administrator) the little blue circle appears that shows something is happening (like the old egg timer) for about ten seconds, then nothing.
    Many thanks.
    Some questions aimed at narrowing in even further on possible culprits.
    (1) Does your QuickTime Player launch, or do you get an error message of some kind when you try to launch that?
    (2) If your QuickTime seems to be launching fine, try (by way of experiment) disabling the BonJour Service.
    In your Start Menu, right-click Computer and select "Manage".
    Expand "Services & Applications".
    Open "Services". (Maximise the window to better see what's going on.)
    Right-click the BonJour Service and select "Properties". In the "General" tab, set Start-up type to "Disabled".
    Restart the PC, and try launching iTunes again. Does it launch this time?
    If iTunes launches with the BonJour Service disabled, by any chance do you have a recent version of IOBit's Advanced SystemCare utility currently installed on the PC? If so, try uninstalling and reinstalling Advanced SystemCare. Can you launch iTunes without having to disable the BonJour Service now?

  • My child got ahold of my mac book. She did something and now there is a "dialogue box" that is constantly displayed and it essentially narrates all of my actions, telling what I am doing and viewing etc. help me get rid of this, please.

    My child got ahold of my mac book. She did something and now there is a "dialogue box" that is constantly displayed and it essentially narrates all of my actions, telling me what I am doing and viewing etc. Along with it every icon I click shows a box arond it . Help me get rid of this, please.

    Choose system preferences, then under 'Personal' choose 'Universal Access''
    You will see a checkbox called 'Voice Over'' (under the seeing tab). Switch this to off.
    Good luck
    Max

  • Hi I bought this Friday a 10 GB storage plan, but I received an email than I need to pay it every months how I can cancel this contract Becouse I don't able to pay it every years somebody can help and explains it to me please thanks you

    Hi I bought this Friday a 10 GB storage plan, but I received an email than I need to pay it every year how I can cancel this contract Becouse I don't able to pay it every years somebody can help and explains it to me please thanks you

    From this page http://support.apple.com/kb/TS4009 :
    iOS 5
    From your home screen, tap Settings > iCloud.
    Tap your iCloud account at the top of the screen.
    Select your iCloud Storage plan.
    Tap Downgrade Options and follow the prompts.
    There are also instructions for Windows and Mac OS X on that page

  • TS3899 I can receive, but not send emails on iPad. All settings checked several times and with internet provider. imap settings confirmed as ok. Account deleted and set up under guidance of service provider several times - problem not solved - help!!

    I can receive, but not send emails on iPad. All settings checked several times and with internet provider. imap settings confirmed as ok. Account deleted and set up under guidance of service provider several times - problem not solved - help!!

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • HT1338 I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    You can sell your existing computer using eBay, Craigslist or the venue of your choice. You could then use the proceeds to purchase a new computer.

Maybe you are looking for