Problems whit Instant messaging 8.2 and SSL

Im trying to configure a instant messaging 8.2 whit ssl but when I restart the IM the mux start whitout ssl
I dont have idea what is the problem whit the configuration and I dont know if Instant messaging 8.2 support ssl
I use the same cert database that I used for the application server and smtp
Can I configure ssl only for the Mux and not for the server?
this is the configuration in the iim.conf for the mux
iim_mux.usessl=on
iim_mux.secconfigdir=/opt/sun/comms/im/config (I also tried this parameter whit the value /etc/opt/SUNWiim/default/config but it not work)
!iim_mux.keydbprefix=https-example.com-www-
!iim_mux.certdbprefix=https-example.com-www-
iim_mux.secmodfile=secmod.db
iim_mux.certnickname=portal.example.com
iim_mux.keystorepasswordfile=/opt/sun/comms/im/config/sslpassword.conf (I also tried whit the value "sslpassword.conf" )
Edited by: user9979971 on Jun 30, 2011 9:32 AM

Instant Messaging 7.3+ no longer supports SSL through the Multiplexor using NSS-based certificates,however you can now migrate the existing certificates from NSS store to JKS using the migratecert utility migratecert.Alternatively you can enable TLS on server which provides end to end encryption
HTH,
Swetha

Similar Messages

  • Problem with instant message in clustered environment

    Hello, I have some problem with Instant Message service.
    We need to use it in our Production Environment (a clustered emvironment with a central instance, two dialog instances and two web dispatchers), some months ago we tested it in Development Environment (not clustered emvironment, just a single system) and it worked fine.
    So I did the same configurations on Production Environment but it did not work.
    But if I access on my portal (Production Env.) by the central instance (avoiding the dispatchers) the instant message service works.
    I think it can be a web dispatcher's configuration problem, in its logs I found the message :
    "<i>[Thr 3700] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]</i>"
    I' ve repeated the same configuration done in Dev.Env. (no dispatcher) on the Prod.Env. (with 2 dispatcher), is possible that I'm missing some configurations??
    Could someone helps me?
    Best Regard
    null

    Hi Alessandro,
    unfortunately I got the same problem but I haven't found the solution yet.
    Hoping someone will help us.
    Regards  Nicola

  • Why are some instant messages colored green and some blue

    why are some instant messages colored green and some blue

    Green is SMS, Blue is iMessage.
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf#page66

  • Problem accessing Instant Messaging

    hi,
    I have been trying to access the Instant messaging module with no success. Jabber server is setup successfully and the connectivity to the server is also fine. I have copied Jabberbeans.jar version 0.9.0-pre4 to <Oracle Home>/wireless/lib but the error shown on accessing it is: 'The required jabber jar file is not present on the server.'
    PLEASE HELP !!
    Regards
    Shiv

    Hi.
    I was able to get the IM application running and to log on but there is not much action.
    Putting the jabberbeans.jar in the asroot/wireless/lib directory will make the IM application work. Don't forget to restart your wireless server.
    Starting the IM application you will be asked to log on. To do so I've used my MSN messenger password. I can create a group and set the status but how can I be sure that I am connected to the MSN messenger service?
    So...I've applied the following settings:
    REPLACE_URL
    FORM_METHOD
    INPUT_ENCODING
    Determines whether the service uses an HTTP proxy to access the Jabber Server.
    The host name of the HTTP proxy, if any, used to connect to the Jabber Server.
    The port number of the HTTP proxy, if any, used to connect to the Jabber Server.
    The host name of the machine on which the Jabber Server is configured.
    - jabber.org.uk
    The name of the user directory service configured on the Jabber Server accessed by the service.
    - username MSN (?)
    The initial group name to assign to users acquired through the Yahoo! transport, if any.
    - MSN (?)
    The name of the conference service configured on the Jabber Server accessed by the service, if any.
    -jabber.org.uk
    The refresh page timeout for some pages accessed by the service. This value is in milliseconds.
    -20000
    The maximum number of messages the service will display between you and another user.
    -10
    What are the right settings?
    rgds,
    Thomas

  • Problem sending notification message to Android and iOS devices with azure messaging dll

    We are a Bizspark customer andfor the past two days we are facing problem in Azure Notification Hub. We were trying to
    send push notifications to Android devices registered in "seexxxxxxwams" - An Azure Mobile Service in our account and no
    registered android devices are receiving the notifications. When we tried to debug it via Notification Hub in Azure Portal  (seexxxxxxwamshub
    - Notification hub in our account), the results are showing that the notifications are sent to the devices. However, the devices
    are not receiving the notifications which was receiving before.  
    Kindly let us know whether we are missing something in our code (Please find the code below) or is there any problem in Azure Notification
    Hub (for Android GCM). 
    Thanks.
    using System.Text;
    using Android.App;
    using Android.Content;
    using Android.Util;
    using Gcm.Client;
    using Android.Support.V4.App;
    //VERY VERY VERY IMPORTANT NOTE!!!!
    // Your package name MUST NOT start with an uppercase letter.
    // Android does not allow permissions to start with an upper case letter
    // If it does you will get a very cryptic error in logcat and it will not be obvious why you are crying!
    // So please, for the love of all that is kind on this earth, use a LOWERCASE first letter in your Package Name!!!!
    using ByteSmith.WindowsAzure.Messaging;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System;
    [assembly: Permission(Name = "@[email protected]_MESSAGE")]
    [assembly: UsesPermission(Name = "@[email protected]_MESSAGE")]
    [assembly: UsesPermission(Name = "com.google.android.c2dm.permission.RECEIVE")]
    //GET_ACCOUNTS is only needed for android versions 4.0.3 and below
    [assembly: UsesPermission(Name = "android.permission.GET_ACCOUNTS")]
    [assembly: UsesPermission(Name = "android.permission.INTERNET")]
    [assembly: UsesPermission(Name = "android.permission.WAKE_LOCK")]
    namespace seeMuscatAndroidApp
    //You must subclass this!
    [BroadcastReceiver(Permission= Gcm.Client.Constants.PERMISSION_GCM_INTENTS)]
    [IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_MESSAGE }, Categories = new string[] { "@PACKAGE_NAME@" })]
    [IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_REGISTRATION_CALLBACK }, Categories = new string[] { "@PACKAGE_NAME@"
    [IntentFilter(new string[] { Gcm.Client.Constants.INTENT_FROM_GCM_LIBRARY_RETRY }, Categories = new string[] { "@PACKAGE_NAME@"
    public class PushHandlerBroadcastReceiver : GcmBroadcastReceiverBase<GcmService>
    //IMPORTANT: Change this to your own Sender ID!
    //The SENDER_ID is your Google API Console App Project ID.
    //  Be sure to get the right Project ID from your Google APIs Console.  It's not the named project ID that appears in the Overview,
    //  but instead the numeric project id in the url: 
    //  where 785671162406 is the project id, which is the SENDER_ID to use!
    public static string[] SENDER_IDS = new string[] { Constants.SenderID };
    public const string TAG = "GoogleCloudMessaging";
    [Service] //Must use the service tag
    public class GcmService : GcmServiceBase
    public static string RegistrationID { get; private set; }
    private NotificationHub Hub { get; set; }
            Context _generalContext;
    public GcmService() : base(PushHandlerBroadcastReceiver.SENDER_IDS) 
    Log.Info(PushHandlerBroadcastReceiver.TAG, "GcmService() constructor"); 
    protected override async void OnRegistered (Context context, string registrationId)
    Log.Verbose(PushHandlerBroadcastReceiver.TAG, "GCM Registered: " + registrationId);
    RegistrationID = registrationId;
                _generalContext = context;
    //createNotification("GcmService Registered...", "The device has been Registered, Tap to View!");
    Hub = new NotificationHub(Constants.NotificationHubPath, Constants.ConnectionString);
    try
    await Hub.UnregisterAllAsync(registrationId);
    catch (Exception ex)
    Debug.WriteLine(ex.Message);
    Debugger.Break();
                var tags = new List<string>() { main.userCountry, main.userCity, main.userLatitude, main.userLongitude, main.userPhoneMake,
    main.userPhoneModel, main.userPhoneName, main.userPhoneAndroidVersion, main.userAppVersion,main.userUID};
                Console.WriteLine("///////////HUB TAGS///////////////////");
                Console.WriteLine("Country:" + main.userCountry);
                Console.WriteLine("City:" + main.userCity);
                Console.WriteLine("Latitude:" + main.userLatitude);
                Console.WriteLine("Longitude:"+main.userLongitude);
                Console.WriteLine("Make:" + main.userPhoneMake);
                Console.WriteLine("Model:" + main.userPhoneModel);
                Console.WriteLine("Phone Name:" + main.userPhoneName);
                Console.WriteLine("Android Version:" + main.userPhoneAndroidVersion);
                Console.WriteLine("App version:" + main.userAppVersion);
                Console.WriteLine("User ID:" + main.userUID);
                Console.WriteLine("///////////END OF HUB TAGS///////////////////");
    try
    var hubRegistration = await Hub.RegisterNativeAsync(registrationId, tags);                
    Debug.WriteLine("RegistrationId:" + hubRegistration.RegistrationId);
    catch (Exception ex)
    Debug.WriteLine("#########$$$$Error:"+ex.Message); 
    protected override void OnUnRegistered (Context context, string registrationId)
    Log.Verbose(PushHandlerBroadcastReceiver.TAG, "GCM Unregistered: " + registrationId);
    protected override void OnMessage (Context context, Intent intent)
    Log.Info(PushHandlerBroadcastReceiver.TAG, "GCM Message Received!");
                Debug.WriteLine("/********* GCM Received ****************");
    var msg = new StringBuilder();
    if (intent != null && intent.Extras != null)
    foreach (var key in intent.Extras.KeySet())
    msg.AppendLine(key + "=" + intent.Extras.Get(key).ToString());
    //Store the message
    var prefs = GetSharedPreferences(context.PackageName, FileCreationMode.Private);
    var edit = prefs.Edit();
    edit.PutString("last_msg", msg.ToString());
    edit.Commit();
    string message = intent.Extras.GetString("message");
    if (!string.IsNullOrEmpty(message))
    createNotification("New todo item!", "Todo item: " + message);
    return;
    string msg2 = intent.Extras.GetString("msg");
                string notititle = intent.Extras.GetString("notititle");
    if (!string.IsNullOrEmpty(msg2))
    createNotification(notititle, msg2);
    return;
    protected override bool OnRecoverableError (Context context, string errorId)
    Log.Warn(PushHandlerBroadcastReceiver.TAG, "Recoverable Error: " + errorId);
    return base.OnRecoverableError (context, errorId);
    protected override void OnError (Context context, string errorId)
    Log.Error(PushHandlerBroadcastReceiver.TAG, "GCM Error: " + errorId);
    void createNotification(string title, string desc)
                NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
                Intent uiIntent = new Intent();
                uiIntent.SetClass(this, typeof(dealsview));
                uiIntent.PutExtra("contentID", "todaydeals");
                uiIntent.PutExtra("contentName", "");
                uiIntent.PutExtra("isSale", "");
                const int pendingIntentId = 0;
                PendingIntent pendingIntent = PendingIntent.GetActivity(this, pendingIntentId, uiIntent, PendingIntentFlags.OneShot);
                var notification = builder.SetContentIntent(pendingIntent).SetSmallIcon(Resource.Drawable.Icon).SetAutoCancel(true).SetContentTitle(title).SetContentText(desc).Build();
                var notificationManager = GetSystemService(Context.NotificationService) as NotificationManager;
                notificationManager.Notify(1, notification);

    Hi Anpe83,
    TL;DR: The answer: Currently, no.
    As we speak, there is RMS Sharing app for all mobile platforms you mentioned. RMS Sharing App lets you open any file type that is a .pfile (generic file created by RMS Sharing App on your PC). But this is not a granular protection and policy enforcement
    - you can think about this way of protecting as a .zip file that has been password protected. So once you "unzip" the pfile with RMS Sharing App - you can do whatever you want (open in a native mobile app, forward, edit, copy, delete, etc) with that file. 
    Now, RMS Sharing App lets you protect pictures only on your mobile devices which I assume you will not be a feature used very often.
    On the other hand Microsoft has published Office suite (Word, Excel, etc) for iOS devices (iPhone and iPad).
    Currently (this is the key word here) those are NOT RMS enlighted yet, so f.e. no word document that is RMS protected can be opened with your Office suite for iOs. I also know that Microsoft is preparing an update for iOS devices in the nereast
    future to make Office suites (including OWA app) RMS-aware.
    PS. For the current time being there are some third parties that extend RMS capabilities to your mobile device platforms. You can also wait few months (unfortunately cannot promise that) for RMS enlighted Microsoft apps for iOS devices.
    PS2. If you haven't heard you can also set RMS Sharing App to work withi your ADRMS which is onprem (not only with RMS in the cloud). For those you need some cool toys: Windows 2012 R2, ADFS 3.0 and RMS Mobile Device Extension.
    Hope this answers your question.
    Did my post help you or make you laugh? Don't forget to click the Helpful vote :) If I answered your question please mark my post as an Answer.

  • Problem with Instant Messaging

    Suddenly today while I was chatting (IM) on Skype with friends I wasn't able to send them anymore IMs. I don't have a problem to send IMs to the rest of the friends in my contact list, which were not active at the moment when my troubles started. I sign out and in few times, restarted my laptop, uninstalled and installed again Skype. Nothing worked! Please, somebody  tell me is it a Skype software problem, or what? Thank you in advance!
    milla68

    Yes, all of that I have done....And still not giving me any alerts notifying me of a new IM....Is it because my wife's cell phone and MY cell phone are on the same account?  We have different cell phone numbers so that shouldnt matter, I would think....

  • Problems with Instant Messaging v6.1 configure

    Hi,
    When I exec IM's configure program on our Solaris 8 system
    ldapmodify fails:
    Adding IM and Presence services LDAP schema
    Failed to add IM and presence schema - error 137
    ld.so.1:/usr/bin/ldapmodify: fatal: libsasl.so failed: No such file or directory.
    libsasl.so is present in /usr/lib/mps
    TIA
    Shaun McCullagh
    marviQ
    Amsterdam

    I'm not sure what the answer is. I'd be curious what the
    following shows:
    % grep ldapmodify /var/sadm/install/contents
    ..and..
    % ldd /usr/bin/ldapmodify
    Also, for good measure:
    % pkgparam -v SUNWlldap

  • Problems whit i message

    My i message dont work

    The minimal version of DB 11G that is certified for Solaris 11.x is the 11.2.0.3.0 version. Then the only required packages for Solaris 11.x are these ones :
    pkg://solaris/developer/build/make
    pkg://solaris/developer/assembler
    The package that you want to install are not required.

  • I have the problem whit to update i photo and i movie in app store error 20

    Error 20 when i go to having the update

    In the lower right corner of the App Store window is a round button with the image of a flag. Clicking that button takes you to a page where you can choose your country by flag. You may have to scroll to the bottom of the window to see the button. The country must match your billing address on record.

  • Can't send instant messages from skype

    Hi, I am getting problem in instant message chat. I cant see textbox of message. I am getting problem with my big phone it is sony z ultra. It has 6.4 inch screen, Thanks,Paras

    philbau wrote:
    i suffer same issue using skype for modern windows. but on andriod tablet and iphone, skype perfectly functions.
    to guide you accordingly, here are the answers to your questions:
    1. already tried restart and returning from sleep mode, I cant send IM
    2. this version of windows 8 is not touchscreen so there is no onscreen keyboard
    3. other apps perfectly functions, using Messenger ok
    4. version of skype is 3.1.0.1005
    on other hand, I cant even shift to desktop version of skype. everytime I attempt download the skype, on the first small installer, it redirects me to download the larger file.
    running the bigger file, it says "This app can't run on your PC. To find a version for your PC, check with the software publisher"
    I ope you can give solutions. thanks
    Try to install the currently latest Skype 6.22.81.104 desktop version using this msi-installer:
    http://download.skype.com/msi/SkypeSetup_6.22.81.104.msi

  • Cant find instant message on my mac book pro

    im running snowleopard on my mac book pro and i cant acess or find my instant messaging, no icon, and cant find it in finder or anywhere??? i bought it in 2011, its actually my sisters, my 2009 MBP works fine, any answers out there?

    In answer to your second question, it wouldn't matter much on your sister's MBP, as Snow Leopard doesn't support iCloud for messaging (or for much of anything, though you can force a few things). Her iChat is limited to AIM instant messaging and such.
    On your MBP, which according to your profile is running Lion (10.7.5), you also won't have access to iCloud messaging (iMessage) unless you installed the beta-test iMessages application and somehow kept it running. (I have heard it can no longer be installed and may no longer work at all. That's third-hand; I haven't tried it.) Your iChat will also be limited to AIM and such.
    For those with iMessage-capable phones and computers, there is a choice to be made. Apple's apparent concept for iCloud would suggest that you would use a single iCloud account for all of the devices you individually own or use. (I do that; my wife does also, with her own ID.) That model works well when, for example, you want to receive all the same iMessages on all of your devices. Even if you don't, there are ways to keep them separate (e.g., use the phone number to send/receive iMessages on your iPhone while using an email address on the MBP).

  • Launching instant messaging component from web dynpro

    Hi
    We have a requirement to launch instant messaging component from a web dynpro java link. Could you tell me what APIs can be used here? Is it possible to launch the component in a new browser window through some API calls?
    From collaboration launch pad if we take the link of instant message from properties and try to open it a new browser instance, we find a message staing "Session not started" and there is some java script error in the page. Also the Send button is invisible and the other buttons Leave Session, Close Session are inactive. Is it possible to launch the messaging window from a url?
    The url we used to launch it is as below.
    http://host:port/irj/servlet/prt/portal/prtroot/com.sap.netweaver.coll.appl.ui.rtc.RTCComponent?jspName=Chat.jsp&paramIndex=2&initiator=X
    Looking forward for your comments.
    Thanks
    Sudeep

    It's possible. On your alv you have to add botton with action to call bsp.
    You can use the following coding to determine the object type...
    CALL METHOD lr_mapping_srv->determine_ui_object_of_bor
        EXPORTING
          iv_bor_object_key  = lv_bor_object_key
          iv_bor_object_type = ls_orderadm_h-object_type
          iv_logical_system  = ls_orderadm_h-logical_system
        RECEIVING
          rv_result          = lv_ui_object_type.
    Then you have to build bsp...
    lv_orderadm_h_guid_c = ls_orderadm_h-guid.
      CONCATENATE
        lc_par0 sy-mandt
        lc_par1 lv_ui_object_type
        lc_par2 lc_display
        lc_par3 lv_orderadm_h_guid_c
        lc_par4 'nocookie'
      INTO lv_query.
      CALL METHOD cl_bsp_runtime=>if_bsp_runtime~construct_bsp_url
        EXPORTING
          in_application = lc_bsp_application
          in_page        = lc_bsp_page
        IMPORTING
          out_abs_url    = lv_open_url.
      CONCATENATE lv_open_url lv_query INTO lv_open_url.
    and finally you have to call browser...
    lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      CALL METHOD lo_window_manager->create_external_window( EXPORTING url = lv_open_url
                                                             RECEIVING window = lo_window ).
      lo_window->open( ).

  • Sun ONE Instant Messaging relation to Sun ONE Portal Server

    Sun ONE Instant Messaging is tightly integrated with the Sun ONE Portal Server. Sun ONE Instant Messaging provides a portlet or channel that displays a list of a given user's online buddies and also provides the capability to archive chat and other forms of IM Communications within the portal server search database. Hence, chat, alerts, news channels and more can be archived and searched using the Search capabilities of the portal server. Indeed, Sun ONE Instant Messaging is a value-added offereng to the core Sun ONE Portal Server.
    It should also be mentioned that Sun ONE Instant Messaging integrates with the Sun ONE Portal Server in other ways. Since the portal server provides a web container, the IM deployment can naturally use the web server provided by the portal server. The portal server also uses a directory server which can also be used by Sun ONE Instant Messaging for User and LDAP group search. Finally, Sun ONE Instant Messaging may also use the portal server's Identity Service to provide single sign-on with the portal server.

    Yes, one can install Sun ONE Instant Messaging on a system that does not contain the Sun ONE Portal Server.

  • I need someone Jabber/Instant Messaging

    The company that I consult for needs someone to help it with the deployment of Jabber based Instant Messaging. It will pay competitive rate. The company is based in NYC.
    Please let me know if you can do it, or refer a friend or a co-worker that can. Thanks for your help.

    What one has to do is basically install the Instant Messaging Jabber server and configure it, and be on call for support.
    What will also be necessary is the interface our db with the IM, so only the users from the db can be allowed to use the instant messanger.
    If that sounds like something you can do please let me know. Thanks

  • HELP: can connect to FB, TWITTER, MySPACE, BBM and other instant messaging but not to youtube and other sites

    I'm just a newbie. I got my Curve 9220 a month ago. The phone is really good but i have some problems regarding my about phone. You see i can access my social sites and application and can be done in my web browser but strangely i can't connect to other sites except those mentioned sites. I can use my bbm and some instant messaging applications (YM, Gtalk etc) but unfortunately not my bb app world. 
     By the way my carrier is globe, I have called them about this matter, they told me they have fix it but until now nothing happens. It's frustrating you know?
     Is there a way that I could do it manually by my self? Or should I call them again until they have got my problem fixed?
     Additionally, its odd because I can't even go to thier mobile website. How this could happen when I'm not restricted to access my social site?

    In addition to this, I can send and receive emails.. hope you can help me.

Maybe you are looking for

  • Safari cannot open after reinstalling lion, pls help !

    Dear Friends, I've updated to latest version of Safari the day of mountain Lion release ( but i'm using Lion), and yesterday I've done clean install of Lion and restore all files using time machine, all went well except that now Safari doesn't open a

  • I want to buy the program that will enable me to save a PDF file in word or excel

    I want to buy a program that enables me to save a PDF file in word or excel

  • After Schedule , Blank Report

    Hello Everybody , I add a variable to report , After scheduling the report , content,datas of the report are empty.But If I remove variable , after schedule , the report datas and contents are normal appearing.In both cases the report save to my comp

  • HP Photosmart C4599 - Only part of document scanned

    When I scan a document, sometimes only part of the page has been scanned when the HP Digital Scanning software displays the result of the scan. Other times the document scans ok and we can't work out why sometimes it works and other times it doesn't.

  • Navigation Buttons et al

    I have two questions. First, I am editing a Flash template site. I do not know how to link the Flash buttons to the other pages in my site. I went into to Flash and used Actions, but it does not work at all. Second, I included a gif file on the third