Sending a message to MQSeries using with international characters

Hello
I managed to setup oracle messaging gateway to IBM MQSeries. While sending and receiving English message is Fine, sending international characters (8bit Arabic) is received as ??????. I know how to fix this issues when using normal oracle tools. But for the MGW, i cannot find in the documentation where to find the National Language support setting NLS_LANG
regards

RESOLVED
It had nothing to do gateway setting. Actually, it was my mistake. The client environment setting was not correct.
Once corrected, all went fine
Ammar

Similar Messages

  • I can't send an SMS on my iPhone 6 , I get the message "iMessage must be enabled to send this message" I dont use iMessage, I just want to send an as SMS

    I can't send an SMS on my iPhone 6 , I get the message "iMessage must be enabled to send this message" I dont use iMessage, I just want to send an as SMS

    SMS is a cellular carrier function.  Contact your cellular carrier and make sure you are correctly set up with an SMS plan.

  • HT202724 When I send a message in a group with non-iPhone users it appears as a mms, how do I change the settings so it's a sms?

    When I send a message in a group with non-iPhone users it appears as "New Multimedia Message." One of my friends in the group also has an iPhone and his doesn't appear this way, how do I change my settings so it appears as a normal text message and not an mms?

    iOS: Troubleshooting Messages - Apple Support
    Send a group message with your iPhone, iPad, or iPod touch - Apple Support
    Send messages with your iPhone, iPad, or iPod touch - Apple Support

  • [svn] 1774: Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials .

    Revision: 1774
    Author: [email protected]
    Date: 2008-05-16 13:29:10 -0700 (Fri, 16 May 2008)
    Log Message:
    Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This was caused by the fact that streaming channels do not report connected until the initial ping completes and a URLStream is established with the server. Added some extra code in ChannelSet to make sure authentication errors are reported with correct faultCode even if the channel is not reporting connected.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-176
    Modified Paths:
    flex/sdk/branches/3.0.1.x/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    Revision: 1774
    Author: [email protected]
    Date: 2008-05-16 13:29:10 -0700 (Fri, 16 May 2008)
    Log Message:
    Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This was caused by the fact that streaming channels do not report connected until the initial ping completes and a URLStream is established with the server. Added some extra code in ChannelSet to make sure authentication errors are reported with correct faultCode even if the channel is not reporting connected.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-176
    Modified Paths:
    flex/sdk/branches/3.0.1.x/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

  • Could you some one help me how to send a message on twitter using Oracle SOA?

    Hi Team,
              I am trying to send a message from Oracle SOA to Twitter, But i am not able to do the scenario.Could you some one help me how to send a message on twitter using Oracle SOA?
    Regards,
    Kiran

    Very challenging and doubtful at the same time !
    I don't think, its going to be a straight-forward one... Read about OAuth twitter authentication, before you try to post tweets.

  • Importing music with international characters

    I want to import some old music with international characters in the filenames (and probably id3 tag) into itunes.
    I want to use the music in my car's mp3 reader which uses ms-dos and can't handle international characters. How can I get itunes to sort this for me when I import? can I get tunes to convert the French characters into ms-dos suitable ones?

    Perhaps something at Doug's Scripts this would help, e.g. http://dougscripts.com/itunes/scripts/ss.php?sp=tracknameeditwithsed although doing it one character at a time might get a little dull. I've not spotted a "replace all non-ascii charcters" script but it shouldn't be too hard to create one.
    tt2

  • Sending a message to fax using JavaMail

    Hello all,
    we are trying to create a system to send messages. The input will come from an Oracle 9i (9.0.2) database, our goal is to create email messages which can either be delivered to an email address or to a fax number.
    The systems works if all addresses are regular email adresses, but we get the following message when using a fax number :javax.mail.internet.AddressException: Illegal route-addr in string ``fax:[email protected]''
    I have already change the parse-method to parseHeader with the parseOption false, so that the addresses are not controlled against the standard. I expect the ':' (colon) in fax:012345678 is the cause of our problem, replacing it with a random character returns a 'normal' error message for a non-existing address.
    I have included the log message with the exception, the sourcecode of our SendMailTest and the source of SendMail.
    Is there any work around to this colon, so we can send faxes as well as emails.
    Kind regards,
    Nemata
    log message----------------------------------------------------
    C:\ProgramFiles\jdevstudio1013\jdk\bin\javaw.exe -ojvm -classpath C:\ProgramFiles\jdevstudio1013\jdev\mywork\ocbs\Client\classes;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib\mail.jar;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib\activation.jar com.vdscomputing.carpinvest.ocbs.db.io.SendMailTest
    Constructor entered
    return from constructor
    com.vdscomputing.carpinvest.ocbs.db.io.SendMail@a Hello
    javax.mail.internet.AddressException: Illegal route-addr in string ``fax:[email protected]''
    message sent
    Process exited with exit code 0.
    source SendMailTest-------------------------------------
    package com.vdscomputing.carpinvest.ocbs.db.io;
    //class designed to test SendMail
    public class SendMailTest {
    public static void main( String args[]) {
    String SMTPserver = "192.168.1.23";
    String SMTPport = "25";
    String Sender = "[email protected]";
    String Recipient ="fax:[email protected]";
    String CcRecipient = "[email protected]";
    String BccRecipient = "";
    String Subject = "faxinationTest";
    String Body = "test mail 12 from test class";
    String[] ErrorMessage = new String[1];
    String Attachments ="";
    // create mesage and monitor constructor
    SendMail testMessage = new SendMail();
    System.out.println("return from constructor");
    System.out.println(testMessage + " Hello");
    testMessage.Send(SMTPserver, SMTPport, Sender, Recipient, CcRecipient,
    BccRecipient, Subject, Body, ErrorMessage, Attachments);
    System.out.println("message sent");
    Source SendMail---------------------------------------
    package com.vdscomputing.carpinvest.ocbs.db.io;
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class SendMail {
    //default constructor with monitor message
    public SendMail(){
    System.out.println("Constructor entered");
    // preparing the message and sending it
    public static int Send(String SMTPServer,
    String SMTPPort,
    String Sender,
    String Recipient,
    String CcRecipient,
    String BccRecipient,
    String Subject,
    String Body,
    String ErrorMessage[],
    String Attachments) {
    // Error status;
    int ErrorStatus = 0;
         // create some properties and get the default Session;
         Properties props = System.getProperties();
         props.put("mail.smtp.host", SMTPServer);
         props.put("mail.smtp.port", SMTPPort);
    Session session = Session.getDefaultInstance(props, null);
    try {
         boolean ParseOption = false; //do not enforce RFC822
    // create a message;
    MimeMessage msg = new MimeMessage(session);
    // extracts the senders and adds them to the message;
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(Sender, ParseOption);
    msg.addFrom(TheAddresses);
         // extract the recipients and assign them to the message;
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(Recipient, ParseOption);
    msg.addRecipients(Message.RecipientType.TO,
    TheAddresses);
         // extract the Cc-recipients and assign them to the message;
    if (null != CcRecipient) {
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(CcRecipient, ParseOption);
    msg.addRecipients(Message.RecipientType.CC,
    TheAddresses);
         // extract the Bcc-recipients and assign them to the message;
    if (null != BccRecipient) {
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(BccRecipient, ParseOption);
    msg.addRecipients(Message.RecipientType.BCC,
    TheAddresses);
    // subject field;
    msg.setSubject(Subject);
    // create the Multipart to be added the parts to;
    Multipart mp = new MimeMultipart();
    // create and fill the first message part;
    MimeBodyPart mbp = new MimeBodyPart();
    mbp.setText(Body);
    // attach the part to the multipart;
    mp.addBodyPart(mbp);
    // attach the files to the message;
    if (null != Attachments) {
    int StartIndex = 0, PosIndex = 0;
    while (-1 != (PosIndex = Attachments.indexOf("///",
    StartIndex))) {
    // create and fill other message parts;
    MimeBodyPart mbp = new MimeBodyPart();
    FileDataSource fds =
    new FileDataSource(Attachments.substring(StartIndex,
    PosIndex));
    mbp.setDataHandler(new DataHandler(fds));
    mbp.setFileName(fds.getName());
    mp.addBodyPart(mbp);
    PosIndex += 3;
    StartIndex = PosIndex;
    // last, or only, attachment file;
    if (StartIndex < Attachments.length()) {
    MimeBodyPart mbp = new MimeBodyPart();
    FileDataSource fds =
    new FileDataSource(Attachments.substring(StartIndex));
    mbp.setDataHandler(new DataHandler(fds));
    mbp.setFileName(fds.getName());
    mp.addBodyPart(mbp);
    // add the Multipart to the message;
    msg.setContent(mp);
    // set the Date: header;
    msg.setSentDate(new Date());
    // send the message with monitor message
    Transport.send(msg);
    System.out.println("message on transport");
    } catch (MessagingException MsgException) {
    ErrorMessage[0] = MsgException.toString();
    System.out.println(ErrorMessage[0]); // catch to console
    Exception TheException = null;
    if ((TheException = MsgException.getNextException()) !=
    null)
    ErrorMessage[0] = ErrorMessage[0] + "\n" +
    TheException.toString();
    ErrorStatus = 1;
    return ErrorStatus;
    }

    Hi,
    I want to fax using java. presently I m using mail api to email & its working. Now I have to fax the attached pdf file with out using any third party or commercial software.
    Any idea or suggestion would be very help full
    regards
    Prakash Sen

  • Sending Instant Message on Android using Keyboard ...

    Hi Guys,
    I have discovered a potential bug in Skype for Android when sending instant messages. When you click into the box to type a message everything appears as expected. There is a box to type in and to the top right, a smiley (emotion) selector, directly underneath it is a "send" arrow icon.
    When you click into the box and start typing an IM, everything is fine and the send icon remains there. However, when you hit the Enter key, it places a line return in the IM text box and the Send arrow icon disappears. I would expect that the Enter key can be used to send an IM or CTRL+Enter, like in the old MSN days. But more importantly, I would expect at the very least that the Send icon remain.
    Can someone tell me if this is a bug. I replicated this many times, but using the on-screen keyboard and an external keyboard. The device is a 10.1 Galaxy Note.
    I found a similar post here, but that's a different issue.

    Still not fixed! (ASUS tf700t CROMi Xenogenesis 5.1.2)
    The right arrow then touch inside the message box works well for me but ofcourse "enter" or "shift-enter" would be better   I like to be able to use "enter" for a new paragraph so "shift/enter" would be best.

  • Iphone 4s, sending a message crashes quite often with picts

    I have a message thread open and go to reply...
    I snap a picture, hit the audio button to for speech to text...
    hit send and...booom...message app just closes.
    anyone else?
    even happens with different people.
    open message
    insert existing picture
    record some text
    hit send
    BOOM; message app dies
    If I TYPE the message it works fine.
    anybody else see this behavior?

    Same here. Made an appointment at Genius Bar yesterday and confirmed it's a repeatable bug and occurs on every iPhone 4S they tested regardless of carrier (ie. Sprint, Verizon, or AT&T).
    The Genius I spoke with reported it to engineering, so with luck it will be fixed in the next iOS update.
    In the meantime, my workaround is to send the photo first, then dictate the text into a separate message.
    I hope that helps.

  • Why my Ipod send a message like "a problem with server bloq connection of ID Apple"

    Hi i just buy an Ipod Touch 8GB is my second one the last one have lost in the street, i Know my Apple ID and my password but when Itry to setup the new one send that message i am from mexico and my message is in spanish more less like this Impossible start session A problem with server is bloking the connection with the ID Apple . Try to connect again.

    What is the error message you are receiving and it is from iTunes or your iPod Touch?
    B-rock

  • Sending instant messages through yahoo email with new version of firefox

    i cannot send instant messages through yahoo email in new version of firefox,how do i correct this problem

    Hi hwkangel,
    This sounds like a known issue reported here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=713014
    There was a workaround posted, but I've not tested it myself. Here are the steps.
    # Go into Yahoo Messenger Options - Change the Window in the dropdown to Tab and press OK.
    # Then go back and switch it to small window and press OK.
    The bug has already been fixed. So you can download the FF 10 beta if it is a really important feature for you.
    Hopefully this helps!

  • Problem with international characters showing up as junk

    Hi All,
    Little question.
    I've made a xml data template which executes a query to fetch person names from the e-business suite tables.
    However there are international characters in the names which are showing up incorrectly. When executing the query in the database everything shows up correctly. But when the query is executed via XML publisher the produced XML contains junk characters.
    This is happening with for example o umlaut characters.
    The database characterset is: WE8ISO8859P1
    Version of XML publisher: 5.6.3
    Patrick

    This turned out to be an extra property which was set in the data template:
    property scalable_mode with value "on"
    This caused the special characters to be mangled.
    Patrick

  • Can't send any messages in iChat, used to work perfect though

    I've been having issues with iChat for a while now, I'm using it with AIM, if that helps.
    It shows my buddy list and everything, and shows that I'm connected. I can talk to people over the camera and microphone, but every time I type in something and try to send it, the box with the messages gets deselected, and the messages isn't sent. I've tried restarting my laptop, re-installed iChat, deleted some files out of my library so I can set my AIM account up again, but none of it worked. I hope someone on here can help me...
    Thanks, Peter

    Hi,
    So iChat in Logging in and you are seeing your Buddies in the list ?
    However in any Text Chat text is not being sent ?
    First in iChat > Preferences > Messages check the name of the Font you are using.
    Open Font Book and check it is active.
    I think it will be deeper than this so go to your Home Folder/Library/Preferences and delete com.apple.ichatAgent.plist and restart the computer (iChatAgent is a background app that does not quit when you quit iChat).
    10:49 PM Friday; April 2, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • The character count when sending a message doesn't work with the new iOS 5.

    Hi,
    After I upgraded to the new iOS 5, the message counter no longer appears.  I've gone into the settings to verify that it is turned on. I've turned it off and then back on. I've rebooted the phone, but to no avail.  Has anyone else encountered this new "feature"?
    Thanks,
    Allan

    The only way I can get character count back is to disable both iMessage and MMS.  I agree it is annoying.  iMessage only works between iOS 5 devices, and since the whole world does not use Apple products, it's not like I still won't be sending plain old SMS text messages to people.  If you type more then the SMS character limit, AT&T still happily sends it, their servers just truncate it, so the character count feature is hardly an outdated or pointless feature.
    I have been sending fewer and fewer texts though anyway, and using email instead. but this just pushes me further away from texting.  Most of my work texts are to blackberry users, so no iMessaging with them, but having to go back and forth into settings to enable/disable iMessage means I will likely just leave iMessage off all the time anyway.

  • Is there a way to make 3g and not wi-fi the priority for sending text messages to someone using an iOS5 device?

    Here's the problem:  I am often in a building which has free wifi but the wifi requires that you accept the terms of use during every browsing session.  If I receive a text message from someone who is also using iOS5, the phone seems to default to wi-fi to send my response.  If I have not yet accepted the terms of use for the building's wi-fi, my phone wont send the text message response.  I don't know if that is because the phone is connected to a wifi signal albeit one that can't yet access the internet.  For whatever reason, the phone is just trapped in a "sending messge" loop and wont break out of it until I open my browser and accept the terms of use.  This is the situation notwithstanding the fact that I have 3g service and the signal is available to send sms/mms.
    Can anyone offer a suggestion other than disabling wi-fi?
    Thanks.

    Thank you for your reply.  I looked at my settings and the phone has been set on "send as SMS"--but for some reason, the phone is continuing to try to send it over wifi despite the lack of an internet connection on wifi.  It would seem that after a minute or more of trying, the phone would recognize that wifi wasnt available and would send it on SMS but it apparently doesnt.  I can, of course, turn off iMessage but I dont like the idea of having to do that everytime---particularly since an increasing number of my contacts are using iOS5 devices.
    Thanks again for your response but it does seem that there is an issue that needs to be addressed.

Maybe you are looking for