MalformedURLException: Protocol not jmxmp: rmi

Hi there,
I'm accessing my MBeans remotely over jmxmp, and all looks fine through JConsole, but when I turn up logging on javax.management.remote I see this exception and the messages which follow, twice in succession the logs:
threadId=10 2009-02-10 Tue 15:49:52.375 JMXConnectorServerFactory getConnectorAsService: FINER: URL[service:jmx:rmi://<mymachinename>] Service provider exception java.net.MalformedURLException: Protocol not jmxmp: rmi
threadId=10 2009-02-10 Tue 15:49:52.375 RMIConnectorServer start: FINER: setting default class loader
threadId=10 2009-02-10 Tue 15:49:52.375 RMIConnectorServer start: FINER: setting RMIServer object
threadId=10 2009-02-10 Tue 15:49:52.390 RMIServerImpl RMIServerImpl: FINER: class=javax.management.remote.rmi.RMIJRMPServerImpl
threadId=10 2009-02-10 Tue 15:49:52.437 RMIConnectorServer start: FINER: getting RMIServer object to export
threadId=10 2009-02-10 Tue 15:49:52.437 RMIConnectorServer start: FINER: Encoding URL
threadId=10 2009-02-10 Tue 15:49:52.453 RMIConnectorServer start: FINER: Encoded URL: service:jmx:rmi://<mymachinename>/stub/rO0ABXNyAC5qYXZheC5tYW5hZ2VtZW50LnJlbW90ZS5ybWkuUk1JU2VydmVySW1wbF9TdHViAAAAAAAAAAICAAB4cgAaamF2YS5ybWkuc2VydmVyLlJlbW90ZVN0dWLp/tzJi+FlGgIAAHhyABxqYXZhLnJtaS5zZXJ2ZXIuUmVtb3RlT2JqZWN002G0kQxhMx4DAAB4cHc2AApVbmljYXN0UmVmAA0xMC4xODMuMjUyLjc1AAAKY8JOWi3aJmq+9lY4KgAAAR9fKdqGgAAAeA==
threadId=10 2009-02-10 Tue 15:49:52.453 RMIConnectorServer start: FINER: Connector Server Address = service:jmx:rmi://<mymachinename>/stub/rO0ABXNyAC5qYXZheC5tYW5hZ2VtZW50LnJlbW90ZS5ybWkuUk1JU2VydmVySW1wbF9TdHViAAAAAAAAAAICAAB4cgAaamF2YS5ybWkuc2VydmVyLlJlbW90ZVN0dWLp/tzJi+FlGgIAAHhyABxqYXZhLnJtaS5zZXJ2ZXIuUmVtb3RlT2JqZWN002G0kQxhMx4DAAB4cHc2AApVbmljYXN0UmVmAA0xMC4xODMuMjUyLjc1AAAKY8JOWi3aJmq+9lY4KgAAAR9fKdqGgAAAeA==
threadId=10 2009-02-10 Tue 15:49:52.453 RMIConnectorServer start: FINER: started.I did find this thread: http://forums.sun.com/thread.jspa?forumID=537&threadID=5137348 but placing the service provider's class name under META-INF/services didn't resolve it.
I also tried setting the environment property of my connector server bean in Spring but to no avail...
     <bean id="jmxServerConnector" class="org.springframework.jmx.support.ConnectorServerFactoryBean"
          lazy-init="default" autowire="default" dependency-check="default">
          <property name="serviceUrl" value="service:jmx:jmxmp://localhost:4567/" />
          <property name="threaded" value="true" />
          <property name="daemon" value="true" />
          <property name="server" ref="jmxMBeanServer" />
          <property name="environment">
               <props>
                    <prop key="jmx.remote.protocol.provider.pkgs">com.sun.jmx.remote.protocol.jmxmp</prop>
               </props>
          </property>
     </bean>(I tried with the value of the prop as com.sun.jmx.remote.protocol also..maybe I’m missing something here)
While the MalformedURLException doesn't seem to affect the functionality, I would like to get it resolved or at least know why it happens/if it can be ignored.
I have jmxremote_optional.jar on my classpath and can access the mbeans by connecting to jconsole with my service url.
Any insight as to how I can resolve this would be much appreciated.
Many thanks!
- Edel

When executing an operation via JMX using JConsole, I get the following error:
Problem invoking getManifest : java.rmi.UnmarshallException: Error unmarshalling return: nested is: java.lang.ClassNotFoundException: foo.bar.InernalServiceException (no security manager: RMI class loader disabled)
Code snippet:
public ArrayList getManifest(String s) throws InternalServiceException, MBeanException{
String path = ".\\foo_services.jar"; // Invalid path on purpose to test exception...
File file = new File(path);
FileInputStream fileInput;
try {
fileInput = new FileInputStream(file);
} catch (FileNotFoundException e) {
String msg = "The manifest file is not found in the given path";
if (logger.isErrorEnabled()) logger.error(msg);
throw new InternalServiceException(msg, ErrorConstants.JMX_FILE_NOT_FOUND);
If I throw new RuntimeException(msg, e) instead of InternalServiceException(msg, ErrorConstants.JMX_FILE_NOT_FOUND), it works and I get the appropriate exception.
What is the reason for this?

Similar Messages

  • MalformedURLException - Oracle not support?

    Dear all,
    I'm trying to use a standalone java client to talk to ALBPM via PAPI. I get it compiled (the Fuego55-APIsGuide is a bit out dated in terms of jar file list, btw). However, when I try to get it run, I got the following error:
    W:\savaria_1\server_1_0\src>java -Dfuego.je22.initialctx.file=C:\bea\TestApp\Properties\tomcatProperties.jndi -classpath . -Djava.ext.dirs=W:\savaria_1\server_1_0\lib com.tradebeam.workflow.gateway.WFRequestHandler
    fuego.papi.exception.ProtocolNotSupportedException: Protocol not supported for URL: 'oracle://grendel.sftech.corp.biz:1521/schema=beaaqualogic,sid=DEV'.
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:72)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:155)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:132)
    at fuego.papi.ProcessService.create(ProcessService.java:426)
    at com.tradebeam.workflow.gateway.WFRequestHandler.firstTest(WFRequestHandler.java:46)
    at com.tradebeam.workflow.gateway.WFRequestHandler.main(WFRequestHandler.java:94)
    Caused by: fuego.directory.exception.ProtocolNotSupportedException: Invalid URL: [oracle://grendel.sftech.corp.biz:1521/schema=beaaqualogic,sid=DEV].
    at fuego.directory.exception.ProtocolNotSupportedException.malformedUrlWithException(ProtocolNotSupportedException.java:45)
    at fuego.directory.provider.Factory.getFactoryFromPassport(Factory.java:209)
    at fuego.directory.Directory.startAnonymousSession(Directory.java:616)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:68)
    ... 5 more
    Caused by: fuego.directory.exception.MalformedURLException: Protocol [oracle] not supported.
    Technical detail:Verify that the needed plug-in supporting files are present in your system and that the provider name is not misspelled.
    at fuego.directory.exception.MalformedURLException.protocolNotSupported(MalformedURLException.java:64)
    at fuego.directory.URLParser.createStrategy(URLParser.java:202)
    at fuego.directory.URLParser.createURLParser(URLParser.java:79)
    at fuego.directory.provider.Factory.getFactoryFromPassport(Factory.java:205)
    ======================================
    In my directory.properties, I have:
    # Directory configuration
    # The following properties define the configuration for a directory provider.
    # Do not modify the prefix of the properties. Always leave "directory.default."
    directory.default.url=oracle://grendel.sftech.corp.biz:1521/schema=beaaqualogic,sid=DEV
    # Presets are used to provide properties to the directory with an specific name
    # If a preset is anonymous (no Fuego participant), then comment the participant line
    # nevertheless, connection properties can be defined
    directory.default.preset.xobjects.participant=beaaqualogic
    directory.default.preset.xobjects.participant_password=123456#
    directory.default.preset.portal-anonymous.participant=beaaqualogic
    directory.default.preset.portal-anonymous.participant_password=123456
    directory.default.preset.datawarehouse.participant=beaaqualogic
    directory.default.preset.datawarehouse.participant_password=123456
    directory.default.preset.engine.participant=beaaqualogic
    directory.default.preset.engine.participant_password=123456#
    # oracle FDI implementation
    # Single connection properties (used when FDI handles the authentication)
    directory.default.jdbc-user=beaaqualogic
    directory.default.jdbc-password=123456
    provider.oracle.anonymous-user=beaaqualogic
    provider.oracle.anonymous-password=123456
    =================================
    Finally, this is my TomcatProperties.jndi:
    #TOMCAT jndi config
    java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
    java.naming.provider.url=localhost:1099
    Any idea what I've done wrong or missed? Thanks in advance!!
    Regards,
    Matthew

    I've found why - turns out it was mentioned in the older APIs guide (ver 5.1). I need fuegofdi-oracle.jar.
    Now I just hit another error - CachedRowSet NoClassDefFoundError. This is easy cause I just need to get rowset.jar from sun's j2ee library (or if I were using Java 1.5 it would have already bundled inside).
    Regards,
    Matthew

  • Failover to redundant box shows Redundancy Protocol: Not Running on CSS

    After failover to redundant (backup) BOX, the backup BOX becomes Master but output of “sh redundancy” shows Redundancy Protocol: Not Running and shows intermittent packet drops.

    Here is the URL for the configuration for the Configuring VIP and Virtual IP Interface Redundancy follow the configuration guide which may help you http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v7.10/configuration/advanced/guide/VIPRedun.html

  • [SOLVED] NFS protocol not supported

    I get this error:
    mount.nfs4: Protocol not supported
    when trying to mount a NFS share from my server like so:
    sudo mount -t nfs4 192.168.1.20:/srv/nfs4/ /media/server
    I can mount it on my raspberry pi, but not on my arch laptop.
    The server configuration is like this:
    /srv/nfs4/ 192.168.1.1/24(rw,fsid=root,no_subtree_check)
    /srv/nfs4/media 192.168.1.1/24(rw,no_subtree_check,nohide)
    showmount -e gives this:
    Export list for 192.168.1.20:
    /srv/nfs4/media 192.168.1.1/24
    /srv/nfs4 192.168.1.1/24
    Any ideas?
    Last edited by marius (2013-08-17 12:50:46)

    I don't think you are supplying all the information that you are given by your machine.  The error you mention is often preceeded by a number of other messages which give some idea of what is actually occurring.  Please post error messages exactly as they are given to you, and check the journal and/or dmesg for more information.
    Also as a side note, you need to use code tags for things like commands and output.  Hit the quote button on this post to see how I created the boxes below (the arrows will make sense when this post is quoted):
    <--These are code tags-->
    <--These are quote tags-->

  • How do I not get rmi.UnmarshalException: java.lang.ClassNotFoundException:?

    Hello,
    I'm not able to run the RMI example code provided by the sun tutorial. When I attempt running ComputeEngine in Eclipse I get:
    ComputeEngine exception:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: compute.Compute
    The code may be found on http://java.sun.com/docs/books/tutorial/rmi/running.html
    I've only removed the code concerned with security. I run the registry in the terminal, before trying to execute. I recall it had worked with me yesterday, but today presenting it not.

    The RMI Registry can't find the class(es) in question on its CLASSPATH. So what to do?Err, make sure the RMI Registry can find the class(es) in question on its CLASSPATH?
    For example, specify -J-classpath when starting the RMI Registry. Or start it in the root directory of your .class package structure. Or start it withing the server JVM via LocateRegistry.createRegistry(). Or use the codebase feature.

  • Raw Socket: Protocol Not Supported

    OS Solaris 10, using Zones
    I have one zone set up which houses HP Openview NNM 7.5
    Inside of the application you should be able to right click on a node and do a traceroute or telnet to the node.
    Neither works. Get error:
    raw socket: Protocol not supported
    Can anyone tell me if this is an OS issue or HP Openview issue?
    Any assistance will be greatly appreciated!!!

    This is known issue in zone. Please see http://developers.sun.com/solaris/articles/application_in_zone.html about socket function.
    But if you really need traceroute in nnm, you can use /usr/sbin/traceroute.
    Here's how:
    manager@ov:~$ diff /root/old-NNM-IP.tbl $OV_REGISTRATION/C/ovip/NNM-IP.tbl
    473c473
    <          -cmd ovtraceroute ";
              -cmd traceroute "; You can always add something like "xterm -e telnet" instead of "not working" menu item in registration file. Please see "Creating and Using Registration Files" guide on http://docs.hp.com.
    nice nnm-ing :)
    Message was edited by:
    Porky@Pig

  • I do 'router isis' but I get 'protocol not in this image'

    C2610, IOS 12.3.
    I've searched this on forums but I couldn't find the answer:
    I attempt to do 'router isis' but IOS returns 'protocol not in this image'. How can I solve this ? I would like to work on ISIS redistribution labs against EIGRP, OSPF, etc.

    Thanks for info. hmmm... I need to search it more, but so far it seems my image can't do ISIS...
    Cisco Internetwork Operating System Software
    IOS (tm) C2600 Software (C2600-I-M), Version 12.3(12b), RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2005 by cisco Systems, Inc.
    Compiled Thu 31-Mar-05 19:08 by jfeldhou
    Image text-base: 0x80008098, data-base: 0x80CCAA68
    ROM: System Bootstrap, Version 11.3(2)XA4, RELEASE SOFTWARE (fc1)
    ROM: C2600 Software (C2600-I-M), Version 12.3(12b), RELEASE SOFTWARE (fc2)
    RouterC uptime is 8 hours, 16 minutes
    System returned to ROM by power-on
    System image file is "flash:c2600-i-mz.123-12b.bin"
    cisco 2610 (MPC860) processor (revision 0x203) with 28672K/4096K bytes of memory
    Processor board ID JAD05390K1C (3082946085)
    M860 processor: part number 0, mask 49
    Bridging software.
    X.25 software, Version 3.0.0.
    1 Ethernet/IEEE 802.3 interface(s)
    2 Serial network interface(s)
    32K bytes of non-volatile configuration memory.
    --More--

  • IP Protocol not running

    I am setting up 2 aironet 1310's. I am connecting them to my NIC to configure instead of placing them ont he network. I am able to assign an IP address, however, when I ping, I get a "Protocol not running" error. If I type ping <enter><enter> i get "unknown protocol."
    I have never encountered this befor...???

    Hi
    It means you don't have a proper IP address configured I guess - have you put the iP address on the ethernet interface?
    It's normally put on the Int BVI1... try that.
    Regards
    Aaron
    Please rate helpful posts...

  • WebDAV protocol not supported

    Running 10.6.6 server with several websites running on the server.  Have used WebDAV to access the documents directory succesfully.  Just added another site and enabled WebDAV but when trying to connect to the server from client I get an error.
    Connection failed - There was an error connecting to the server "www.mydomain.org" Check the server name or IP and try again.
    In console I find:
    5/9/11 11:17:22 AM          webdavfs_agent[4510]          network_mount: WebDAV protocol not supported; file: /SourceCache/webdavfs/webdavfs-293.2/mount.tproj/webdav_network.c; line: 2844
    All the other sites with WebDav work fine, it's just this one website. 
    Any advice for troubleshooting?

    Solved.  This is an intranet development site with an active internet site.  Had Windows 7 running in Parallels VM and was connected to a corporate secure site which was evidently directing requests to the public internet site.  Wasn't aware that the virtual machine connecting to a corporate secure site would affect the host mac dns resolution.

  • "http protocol not enable" on Palm

    I saw the topic that suggested using a HttpConnection and a setRequestMethod( HttpConnection.GET), so I tried that without any luck.
    I have a Visor Platinum (no phone attached and no Internet-browser included). I think I read somewhere that it should be possible to establish a network connection through the cradle, but I keep getting the "http protocol not enable. Please enable Networking Preference".
    How do I do that?

    [michaelBP],
    I saw the topic that suggested using a HttpConnection
    and a setRequestMethod( HttpConnection.GET), so I
    tried that without any luck.
    I have a Visor Platinum (no phone attached and no
    Internet-browser included).Q1. Do you have SUN's MIDP for Palm 1.0 BETA installed onto to the Visor Platinum device?
    Q2. If not, which kVM/JAM are you using on your Visor device?
    Q3. A more generic question - which JAM (Java Application Manager) have you installed onto the Visor?
    I think I read somewhere
    that it should be possible to establish a network
    connection through the cradle, but I keep getting the
    "http protocol not enable. Please enable Networking
    Preference".
    How do I do that?Officially, the MIDP for PalmOS 1.0 BETA kVM from SUN does not support serial I/O communication, so you are out of luck here.
    However, if you use the old kVM (CLDC + com.sun.kjava), then this is the unsupported way. It uses the com.sun.cldc.io.palm.comm.Protocol class to provide serial I/O communication. For more details, see this thread:
    http://forum.java.sun.com/thread.jsp?forum=50&thread=156989
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Pluggable Protocol not released (?)

    Hi,
    I have an MFC application which uses CHtmlView (WebBrowser control) to display HTML data. For displaying, I implemeted an asynchronous pluggable protocol. I did this by adding ATL support to my MFC project and adding an OLE class derived from IInternetProtocol
    and IInternetProtocolInfo to my project (using the wizard). My pluggable protocol is defined as follows:
    class ATL_NO_VTABLE CPluggableProtocol :
    public CComObjectRootEx<CComSingleThreadModel>,
    public CComCoClass<CPluggableProtocol, &CLSID_PluggableProtocol>,
    public IInternetProtocol,
    public IInternetProtocolInfo
    public:
    CPluggableProtocol()
    : m_fData(MEMORY_BUFFER)
    DECLARE_REGISTRY_RESOURCEID(IDR_PLUGGABLEPROTOCOL)
    BEGIN_COM_MAP(CPluggableProtocol)
    COM_INTERFACE_ENTRY(IInternetProtocolInfo)
    COM_INTERFACE_ENTRY(IInternetProtocol)
    END_COM_MAP()
    DECLARE_PROTECT_FINAL_CONSTRUCT()
    HRESULT FinalConstruct()
    return S_OK;
    void FinalRelease()
    // IInternetProtocol interface
    public:
    STDMETHOD(Start)(
    LPCWSTR szUrl,
    IInternetProtocolSink *pIProtSink,
    IInternetBindInfo *pIBindInfo,
    DWORD grfSTI,
    DWORD dwReserved);
    STDMETHOD(Continue)(PROTOCOLDATA *pStateInfo);
    STDMETHOD(Abort)(HRESULT hrReason,DWORD dwOptions);
    STDMETHOD(Terminate)(DWORD dwOptions);
    STDMETHOD(Suspend)();
    STDMETHOD(Resume)();
    STDMETHOD(Read)(void *pv,ULONG cb,ULONG *pcbRead);
    STDMETHOD(Seek)(
    LARGE_INTEGER dlibMove,
    DWORD dwOrigin,
    ULARGE_INTEGER *plibNewPosition);
    STDMETHOD(LockRequest)(DWORD dwOptions);
    STDMETHOD(UnlockRequest)();
    // IInternetProtocolInfo interface
    public:
    STDMETHOD(CombineUrl)(LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
    LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
    STDMETHOD(CompareUrl)(LPCWSTR pwzUrl1, LPCWSTR pwzUrl2, DWORD dwCompareFlags);
    STDMETHOD(ParseUrl)(LPCWSTR pwzUrl, PARSEACTION ParseAction, DWORD dwParseFlags,
    LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult, DWORD dwReserved);
    STDMETHOD(QueryInfo)( LPCWSTR pwzUrl, QUERYOPTION QueryOption, DWORD dwQueryFlags,
    LPVOID pBuffer, DWORD cbBuffer, DWORD *pcbBuf, DWORD dwReserved);
    private:
    CAtlStringW GetContentType(CString &);
    CMemFile m_fData;
    In my InitInstance I register this protocol using RegisterNameSpace (and UnregisterNameSpace in ExitInstance). This is done by the following:
    CComPtr<IClassFactory> m_spCF; // (class member)
    CComPtr<IInternetSession> spIInetSession;
    if(FAILED(CoInternetGetSession(0, &spIInetSession, 0)))
    return FALSE;
    HRESULT hr;
    if(FAILED(CPluggableProtocol::_ClassFactoryCreatorClass::CreateInstance(CPluggableProtocol::_CreatorClass::CreateInstance, IID_IClassFactory, reinterpret_cast<void**>(&m_spCF))))
    return FALSE;
    hr = spIInetSession->RegisterNameSpace(m_spCF, CLSID_PluggableProtocol, m_strProtocol, 0, NULL, 0);
    This works on all the computers I have access to and it worked for a few months no. No problems.
    But now I got the message from somebody using the application that the application does not terminate. Using logfiles I found out that AfxOleCanExitApp() returns TRUE in CMainFrame::OnNcDestroy. This means that not all COM objects have been released and
    therefore the application does not quit (only the windows disappear). Using the debugger (breakpoint at AfxOleLockApp()), I found out that the one COM object which is calling AfxOleLockApp is the asynchronous pluggable protocol (through urlmon.dll).
    Unfortunately I can not do trial and error because it works perfectly on all my computers. But since it does obviously not work for a different person I am sure I have a little mistake in my implementation. I have very few COM experience, therefore it may
    be that the code above is not perfectly correct.
    Does anybody see a mistake in my implementation which could cause the bug?
    Thank you very much,
    Peter

    Hello,
    Hmm, no idea? :-(
    Another thing which came into my mind:
    I call RegisterNameSpace in InitInstance and UnregisterNameSpace in ExitInstance. However, ExitInstance is called
    after receiving WM_QUIT, bevor the MFC framework asks via AfxOleCanExitApp() if it will call PostQuitMessage().
    Maybe I must do this stuff in the window function? E.g. RegisterNameSpace on WM_CREATE and UnregisterNamespace on WM_CLOSE? This would be before the AfxOleCanExitApp() check...
    And: After I cann UnregisterNameSpace, can I be sure that all COM objects are destroyed and released?
    Regards, Peter

  • OSB 11g - Clustered - Email protocol not available in transport config page

    Hi,
    We have a clustered environment of Oracle SOA suite and OSB server on OEL 5/Solaris-64 Bit. While trying to create a business service with protocol as Email, we do not get email in the drop down.
    Whereas in standalone environment we got it and we are able to create the business service.
    Even while creating a Proxy Service we do not get email protocol in the transport configuration drop down.
    When I try to import a business service from the standalone server where the Business Service is created, I get the following error:
    Transport provider with id 'email' is not registered
    I am using OSB console (to import as well as create BS).
    What may be the reason? Is there any setting we need to do in a clustered environment for the email protocol? Please advice.
    Thanks,
    Sanjay

    At least a part of the answer is in http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/deploy/highav.html
    +File, FTP, and Email are poller based transports. Since these protocols are not transactional, to increase reliability and high availability, an additional JMS-based framework has been created to allow these transports to recover from failure. These transports use the JMS framework to ensure that the processing of a message is done at least once. However, if the processing is done, but the server crashes or the server is restarted before the transaction is complete, the same file may be processed again. The number of retires depends on the redelivery limit that is set for the poller transport for the domain.+
    try the suggested wlsb.internal.transport.task.queue.email
    hth,
    Peter Paul

  • Protocol not supported for YouTube

    I was trying to view a video clip on YouTube & I got an error message saying the protocol was not supported on my handheld device. I have an 8830 World Edition. Is there something I need to download to watch the video clips?

    Hi,
    Did you browse to m.youtube.com or www.youtube.com?
    You need to goto m.youtube.com....
    Checked out my Blackberry FAQ's and Links to Needed Articles here
    http://darkeen.homelinux.com/index.php/Blackberryfaq

  • Firefox protocol not working on new version of firefox

    Hello,
    I had working a firefor protocol named "teamspeak" until last actualization of the system. I am on UBUNTU 11.04 64-bits platform and after upgrade to this from 9.04 (and over the intermediate 9.10, 10.04 and 10.10) the protocol stop to working.
    I called:
    teamspeak:///<and_some_parameters_here>
    And firefox tell me:
    Firefox no sabe cómo abrir esta dirección, porque el protocolo (teamspeak) no está asociado con ninguna aplicación.
    Firefox do not know how to open this address, because the protocol (teamspeak) is not associated with any application.
    I have defined the app via gconftool-2 (remember it was working) on:
    ~/.gconf/desktop/gnome/url-handlers/teamspeak$
    and there there area file %gconf.xml with the next content:
    <?xml version="1.0"?>
    <gconf>
    <entry name="need-terminal" mtime="1284304261" type="bool" value="false"/>
    <entry name="enabled" mtime="1284304255" type="bool" value="true"/>
    <entry name="command" mtime="1310065777" type="string">
    <stringvalue>/usr/bin/teamspeak --channel=&quot;%s&quot; --password=&quot;%s&quot; --user=&quot;%s&quot;</stringvalue>
    </entry>
    </gconf>
    that seems correct.
    Please, tell me what can I do. I tryed everything.
    As you can see on the next lines I have defined the protocol, I think correct.
    Thanks in advance
    Eduardo Perez S.

    I just tried an identical example that worked fine on Apache. Please indicate exactly what environment you're testing this on. Thanks.
    null

  • I want to access iCloud with POP3 protocol, NOT IMAP

    I want my mail and contacts stored LOCALLY, not on your server. I do NOT want to use IMAP protocol for my iCloud account, I want to use POP3. I have paid for my email account for over 10 years, and still list it at "mac.com". If I cannot do this I will fianlly have to DUMP any connection with Apple-based email. What a betrayal! Who decided FOR me that I want IMAP. I want POP3.

    I know I'm not communicating with Apple here. They do not listen.
    I use the MobileMe/iCloud precisely for synching multiple devices. As soon as they are synched, I delete them from the common server and store them locally on my devices. This allows me to save different mail and contacts on different devices. I have control of my information locally. THAT is the point of POP3. I only use the servers for synching
    I want the ability to synch them but not to be FORCED to synch them. As I say, I have been doing this for over 10 years with my mac.com account.
    I am looking for anyone who has managed to subvert Apple's enforced policy and succeeded in accessing with POP3.

Maybe you are looking for