Send language information to ocx client

We are running a java application server. One of the client is a c++ client (ocx). We need to send send language information to the client so it startes up with the right language defined from the server.
Should the language information be stored in xml format and send through http (HTTP-response) or web-service? What do you use?
Thx in advance

Try MD5 as the authentication method.

Similar Messages

  • Sending invoices and  reminders to clients thru e-mail messages

    Hi
    I would like to know if there is a standard functinality in Receivables module to send invoices and reminders to client via e-mail?
    I there is please inform where i can get some information, if not please advise in a few words how we can customise this .
    Thx and regards
    Ozlem

    Hi shaun,
    Payment advice is transfer to the external sytem. It means we need conectivity between 2 systems. I need to configure EDI settings. You need to contact the ABAPer and Basis consultant for your configuration.
    Regards
    Odaiah Pelley

  • Mavericks Mail won't send login information to IMAP server

    I am having a problem with Mavericks Mail not connecting to the Dovecot IMAP server.  There appears to be many posts about similar problems, but none have the exact symptom I’m seeing.
    Mail appears to not provide login information to any of my IMAP accounts.  The iPad, iPhone, and Thunderbird on the same Mac all work with the same credentials.  Just Apple Mail on the Mac fails.  It fails for all user accounts on the same Mac.  This has been a problem for a long time.
    Connection doctor seems to indicate Mail is not sending login information.  In fact, connection doctor shows the only thing working is the smtp server that doesn’t require a login.  Everything else fails.
    I’ve rebooted the Mac and the mail server.
    I’ve repaired disk permissions.
    I’ve recreated the account.
    I’ve create a brand new account.
    I’ve removed cache files.
    I’ve re-indexed mail files.
    Nothing works. 
    Here is the relevant connection doctor log:
    INITIATING CONNECTION Jul 24 19:59:13.847 host:**********.*****.*** -- port:993 -- socket:0x0 -- thread:0x608000868640
    CONNECTED Jul 24 19:59:13.939 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:**********.*****.*** -- port:993 -- socket:0x6000002d97c0 -- thread:0x608000868640
    READ Jul 24 19:59:13.939 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:**********.*****.*** -- port:993 -- socket:0x6000002d97c0 -- thread:0x608000868640
    * OK Dovecot ready.
    WROTE Jul 24 19:59:13.939 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:**********.*****.*** -- port:993 -- socket:0x6000002d97c0 -- thread:0x6080002687c0
    1.20 CAPABILITY
    READ Jul 24 19:59:13.940 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:**********.*****.*** -- port:993 -- socket:0x6000002d97c0 -- thread:0x6080002687c0
    * CAPABILITY IMAP4rev1 SASL-IR SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS UIDPLUS LIST-EXTENDED I18NLEVEL=1 AUTH=PLAIN
    1.20 OK Capability completed.
    WROTE Jul 24 19:59:13.944 [kCFStreamSocketSecurityLevelTLSv1_0] -- host:**********.*****.*** -- port:993 -- socket:0x6000002d97c0 -- thread:0x60800046e080
    2.20 AUTHENTICATE PLAIN
    And the relevant Dovecot log entries:
    dovecot: Jul 24 19:59:13 Info: auth(default): client in: AUTH 1 PLAIN service=imap secured lip=***.***.***.*** rip=***.***.***.*** lport=993 rport=60869
    dovecot: Jul 24 19:59:13 Info: auth(default): client out: CONT 1
    dovecot: Jul 24 19:59:13 Info: imap-login: Disconnected (auth failed, 1 attempts): method=PLAIN, rip=***.***.***.***, lip=***.***.***.***, TLS
    I believe the “WROTE” log line in Mail cooresponds to the “client in” line in Dovecot.  The next line is a continuation going back to Mail.  But, Mail never seems to read or process it.  When Dovecot gets a successful login from Thunderbird, the login credentials were displayed in the log with another “client in” line.
    Here is what I am using:
    OS X 10.9.4
    Mail version Version 7.3 (1878.6)
    Dovecot version 1.1.7
    Where do I go from here?  Has anyone seen this symptom before?  How do I get Mail to send credentials to an IMAP server?
    Thanks from a first time poster !

    Try MD5 as the authentication method.

  • UTL_MAIL.SEND log information

    Hi,
    I am using utl_mail package to send email in html format.
    I am able to send the emails successfully, but there is a delay in completion of my procedure holding utl_mail and delivery of the mail.
    I guess the utl_mail.send will not wait for the mail to be completely delivered to the recipients mail box/ nor does this package return any output parameter.
    How would i determine if the mail has been successfully sent to the concerned recipient?
    Is there a log or an oracle table where in i can monitor/track mails sent through utl_mail.send.
    Please also let me know if there are any specific defined exceptions for utl_mail package(ex: utl_file.invalid_mode)
    I have been searchin for such information in books and documentations but with minimal use.
    Please throw some light on this or direct me to any documents having these information.
    Regards,
    Hemant

    user13321434 wrote:
    From that can I confirm that posting an email alone would be the functioning of utl_mail.send?Yes. This procedure connects to a SMTP server, says helo to it, provides the sender and recipient e-mail addresses, and then sends it the actual e-mail message itself.
    If that is so what use can a when_others exception be for the block holding the call for utl_mail.sendWhen the conversation with the e-mail server fails. For example, the server may not accept connections from the Oracle database server. You may have formatted the recipient or sender e-mail addresses incorrectly. The mail server may expect authentication (username and password). The mail server may deem that you are attempting to relay e-mail (illegal as per Internet standards these days, in order to reduce spam holes). Etc.
    Any such error, will result in the mail server returning an error code in response to a SMTP command. The UTL_MAIL package will detect that the SMTP command it send failed and will then raise an exception as a result.
    Will any kind of errors produced by SMTP sent to the senders inbox?, like let say an incorrect email address had been passed to utl_mail package?The SMTP server only sends errors to the sender's inbox when it has problems delivering the mail. This means that is accepted the mail from the client - in this case, from the PL/SQL code using UTL_MAIL. It had no problems with the SMTP conversation itself. However, it ran into some form of delivery/transmission problem attempting to process that mail - and that will (should) result in firing off an e-mail to the sender to inform the sender of the problem.
    Not all e-mail received from the mail server like that are failures - it could be a simple warning. For example, if the mail server needs to connect to domain foo.com for delivering your mail, and the mail server at foo.com does not respond, the mail server will queue that mail and retry the transmission later. It may (usually do) send the sender an e-mail to inform the sender that there is a problem with transmission, that it is not an error, and that it will retry the transmission later. This is called a soft bounce (not yet an error).
    A hard bounce will be for example receiving a mail from the mail server informing you that the recipient's mail box is full and that it cannot accept any mail. In this case, it is an error - your mail to that recipient failed. Or you may receive an e-mail saying that the recipient does not exist at that domain (no mail box found to accept the mail). Or you may hit a spam filter and the mail server telling you that it does not accept e-mail from your mail server. All such errors are hard bounces that result in the original e-mail being rejected for delivery somewhere along the line.
    Also keep in mind that you do not know whether your e-mail arrived at its destination mailbox. There are no mechanisms in SMTP that allows that. You can mark an e-mail header with a tag that instructs the mail reader used by the recipient, to fire off a response e-mail to you when the recipient receives or open the e-mail. But this relies on that mail reader to honour the request. I always turn that option off in my mail readers.
    The only way to determine e-mail delivery is to send a URL in the mail and asking the recipient to click it when receiving the mail - e.g. approach used for registering an e-mail address as an account with a web site. Send the same e-mail again in 24 hours when not receiving the URL click in response. After another 24 hours deem the recipient as not interested or not reachable.

  • I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent wit

    I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent with slightly different versions of the same address (see my previous post). Heating someone else's suggestion I created a workflow file to send an email and calling that file from an alert on my calendar. This is working and sends only one email to the client.
    My calendar is on I cloud and I access it from three different computers so I can keep my appointment calendar current. The files that send the email only exist on one computer. My other computers show error messages when those emails get sent. It seems that each computer wants to send the email. It's a small problem but is there a way that I could not get those alerts.
    But appreciate any thoughts about this. It seems like both problems might be related to the iCloud system.
    Thank you in advance,
    Michael

    Good work, catch so far Michael, does seem to be a "feature" of iCloud syncing, not sure what you could do to disable it.

  • Page is missing meta language information

    I was looking in my Bing Webmaster Info, in the SEO Analysis, and got this-
    The page is missing meta language information.
    The Meta Language information is used as a hint to help us understand the intended language and country/region the page content applies to. This can help if your site is not hosted in the country/region. Use the “content-language” meta tag to embed the culture code in the <head> section of your page. For example, <meta http-equiv="content-language" content="en-gb"> indicates that the page is in English and intended for the the United Kingdom. Alternatively, you can use <html lang="en-gb"> or <title lang="en-gb">.
    Recommended Action-
    Use <meta http-equiv="content-language" content="ll-cc"> tag in the  <head> section of your page, where "ll-cc" stands for the culture code of the language and country/region the content applies to. Alternatively use the lang="ll-cc" attribute on either the <html> or the <title> tag .
    Looks like I have 148 pages missing this language, My question is, can I add or correct this this using CS3?

    Hi,
    You may add the meta language information from Adobe Contirbute CS3 by launching an external editor application like Notepad or Adobe Dreamweaver (in case you have it installed) from within Contribute.
    To do so, you may follow the below steps:
    1. Browse to the specific page in Adobe Contribute and then click File > Actions > Edit Page Source In External Application.
        Contribute displays the External Application Editing page and starts an external editing application like notepad.
    2. At this moment, you would see the page source code open for editing in Notepad.
    3. You may now make changes as necessary, and then save your changes using File > Save and close the file or application.
    4. Now, Click "Publish" button in Adobe Contribute to publish your changes.
    You may also refer the below blog post for a detailed description on this feature.
                       http://blogs.adobe.com/contribute/2010/05/edit_web_page_source_in_an_ext.html
    Please be careful when you edit web page source—you can easily alter style and formatting and get unexpected results. If you are unsure about editing the source directly, talk to your Contribute administrator.
    Hope this would helps in asnwering your questions.
    Regards,
    Sharad

  • HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL

    HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL USING 10g Database and 10g Application Server
    we have developed an application using oracle forms 10g with
    oracle database 10g and Application server 10g
    Application uses a single Oracle User name to connect to database
    where as at Application level there are different users (these are not database users)
    Now how can we get the information about the user/his machine etc. at database level. earlier in 6i/8i we use to get by using
    USERENV('TERMINAL')
    we had written a triggers on tables on Insert/Update where we used to update a database field Last user terminal with USERENV('TERMINAL')
    but not this information is comming to be the machine name of application server where as we wish this to be the machine name of Client. Any Way outs
    thanks
    Chaand Kackria

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

  • Can't send im to lync mobile client after a period of chating

    Thanks for your help first.
    I'm setting Lync 2013 server, all internal lan function are working fine, except mobile client.
    I've setup edge, reverse proxy (using IIS), FE, BE server.
    For IM between between desktop lync client, it is working fine.
    For IM between mobile lync client and mobile client with desktop lync cleint, I found the following issue:
    - between mobile lync client and lync desktop client: The IM function is working sent between both party, no matter it is initial send from mobile or desktop client, but after a random period of time, may be 5 mins or 7 mins or 10 mins, the desktop client
    will not able to send IM to the mobile client but the mobile client still able to send IM to desktop client.
    - for between lync mobile client
    the issue as above.
    - between desktop lync client
    no such issue found
    I've trouble shoot this issue a lot but still can't the root cause?
    Do you have any idea?
    Many thanks for your help?
    I know that when I testing using my mobile phone, my 3G network provider will continuous change my mobile ip address after a period time, does this behaviour will affect Lync server to find the mobile device?
    are there any method will Lync server know what the mobile client status and ip address  that let Lync server can find the mobile device effectively?
    Patrick

    I know that when I testing using my mobile phone, my 3G network provider will continuous change my mobile ip address after a period time, does this behaviour will affect Lync server to find the mobile device?
    Hi,
    Would you please tell us which edition of mobile did you use (Android, IOS or Windows Phone)?
    As IPhone and Windows Phone need push notification function but Android Phone doesn’t need.
    If possible, you can test with two Android Phone to check if the issue happen with push notification function.
    From your description above, it seems that you use 3G network on mobile to connect Lync mobile client. Please check if the issue cause by IP address of mobile, you can change network to a WIFI to have a test.
    Also, please double check if the needed ports open as Edwin provided above.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to set missing language information in iTunes books?

    Some of the ebooks I imported into iTunes are missing language information in their metadata. I can't find a means of setting the proper language in the information dialog, something which can easily done i.e. using Calibre or Sigil. Is iTunes really missing this feature?

    it would seem so

  • MDM ABAP API - Language information not valid for repository

    Dear all,
    We're programming an interface in SAP R/3 to MDM catalog through 'MDM ABAP API's'. Automatically, it creates an RFC connection to MMD, but we're getting the following connection errorwhen executing the API:
    E MDM_ABAP_API         078 Language information ENG US USA not valid for MDM repository XXXYYYZZZ*.
    *where XXXYYYZZZ is the repository name. 
    W'e've established the connection in R/3 through transaction MDMAPIC and we've created the same user in R/3 and MDM Console.
    This is the code written on the program where we are defining the language (ENG), country (US) and region (USA).
    *maintain logon language information
    ls_repository_language-language = 'ENG'.
    ls_repository_language-country = 'US'.
    **no region information needed here
    ls_repository_language-region = 'USA'.
    How can I see the repository language definition?
    Which are the correct codes to be used for language 'English', Country 'United States' and Region 'USA'?  And for other countries, like spanish language, country Spain and Region ¿spain?
    In fact, we copied this code from website:
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/44/93ad8931381053e10000000a422035/frameset.htm
    Maybe the problem is that any RFC configuration is missing, and it has to be done in transaction SM59?
    Thanks for your feecback,
    Carlos Santamaría.

    The problem is now solved.
    The correct languague information codes for Language Spanish, Country Spain and Region, are as follows:
    Language: 'spa'
    Country: 'ES'
    Region: '___'
    It is important to respect the CAPS, otherwise it doesn't work.
    Regards,
    Carlos Santamaría.

  • How to retrieve CRL information from a client computer

    Is possible to retrieve CRL information from a client computer and how?
    Thanks.

    CRL's do not normally live on workstations... normally these are hosted on servers. If you want to see what server are in the local revocation list then look at the certificates mmc snap-in and look at the revoked certificate list. If you want to test
    a CRL for a certificate then export the certificate and run "Certutil -url"
    Alan Burchill (MVP)
    http://www.grouppolicy.biz
    @alanburchill

  • Send IDoc to the same client

    Hi:
    How to send IDoc to the same client of the same system, e.g. for testing purpose? It seems I can't use the same logical system as both source and target in Distribution Model (SALE).
    Please advise. Thanks

    You wont be able to send it to same client. You can create/copy one more client assign logical system and try to perform your activity.

  • Sending Exception Information

    I have recently ran through the ExceptionHandling sample project, and I am attempting to extend it slightly.
    I have created a Business Exception object called Test_Exception. Within this exception object, I have created three attributes: id, activity, message. The idea behind these properties is that I can set their values when an exception is thrown. I also created a notifyException method that I use to send this information to someone who is charged with investigating/handling these exceptions.
    I have a Process Exception flow that looks like this: Process Exceptions >> Notify Exception Handler >> Exception Review. The transition to, "Notify Exception Handler," references my Test_Exception object. The variable that will hold the exception is the default, "exceptionHolder."
    So I have some code in an Automatic activity that looks like this:
    try{
         Test.doSomething();
    }catch (Exception ex){
         Test_Exception te = new Test_Exception();
         te.instanceId = this.id.id;
         logMessage("TE Instance = " + te.instanceId + ".");
         te.activity = this.activity.name;
         logMessage("TE Activity = " + te.activity + ".");
         te.message = "Message = " + ex.message + "\rStackTrace = " + ex.stackTrace;
         logMessage("TE Message = " + te.message + ".");
         throw te;
    I can look at the logs and see that te's attributes are being populated.
    In, "Notify Exception Handler," there is code to send mail using the attributes of the Test_Exception object.
    Mail email = new Mail();
    email.recipient = "[email protected]";
    email.from = "[email protected]";
    email.subject = "An Exception Has Occured";
    email.message = "Instance, " + Test_Exception.instanceId + ", in Activity, " + Test_Exception.activity + ", has encountered a problem."
         "\r\rError Details: " + Test_Exception.message + "\r\rThank you.";
    email.send();
    Here, the attributes of the Business Exception are blank. Does anyone have any thoughts or opinions about this approach?

    You notification code should look more like the code below. Because exceptionHolder is of type any you must first cast it to a Test_Exception.
    Test_Exception te = ((Test_Exception)exceptionHolder);
    Mail email = new Mail();
    email.recipient = "[email protected]";
    email.from = "[email protected]";
    email.subject = "An Exception Has Occured";
    email.message = "Instance, " + te.instanceId + ", in Activity, " + te.activity + ", has encountered a problem."
    "\r\rError Details: " + te.message + "\r\rThank you.";
    email.send();

  • Send audit information to  mail acount using fined-grained auditing

    hi.
    i like to send audit information to particular mail account. but i have failed.
    is any one can help me. i have writtten step by step what i have done for my work. my mail server work properly.
    SQL> CONNECT SYS/PAS AS SYSDBA
    after that i have created a procedure called "FGA_NOTIFY" to send mail WHEN user used SELECT command on sal column in emp table other than SCOTT. Then i have added a policy that is given belllow.
    But The problem is now when sys user or any other user give command like
    sql> select sal from scott.emp;
    oracle server didnot send audit information mail to mail server. but
    if i execute procedure "FGA_NOTIFY" independently , procedure send mail.
    please help me. i have given procedure and
    policy code down.
    This is my policy
    BEGIN
    DBMS_FGA.add_policy(
    object_schema => 'SCOTT',
    object_name =>'EMP',
    policy_name => 'Example',
    audit_condition => 'ENAME != USER',
    audit_column => 'SAL',
    handler_schema => 'SYS',
    handler_module => 'FGA_NOTIFY');
    END;
    THIS IS MY PROCEDURE
    CREATE OR REPLACE PROCEDURE fga_notify (
         object_schema VARCHAR2,
         object_name VARCHAR2,
         policy_name VARCHAR2)
    AS
         l_messege VARCHAR2 (32767);
         l_mailhost VARCHAR2 (30) :='rmail';
         l_mail_conn UTL_SMTP.connection;
         l_from VARCHAR2 (30):= 'admin@rmail';
         l_to VARCHAR2 (30):= 'admin@rmail';
    BEGIN
    l_messege :=
         'User'||USER
         ||'successfully accessed'||Object_schema||'.'
         ||object_name||'at'
         ||TO_CHAR (SYSDATE, 'Month DD HH24 :MI:SS')
         ||'with this statement :"'
         ||SYS_CONTEXT ('userenv','currrent_sql')
         ||'"';
    l_mail_conn :=UTL_SMTP.open_connection (l_mailhost,
    25);
    UTL_SMTP.helo (l_mail_conn, l_mailhost);
    UTL_SMTP.mail (l_mail_conn, l_from);
    UTL_SMTP.rcpt (l_mail_conn,l_to);
    UTL_SMTP.DATA (l_mail_conn,
              UTL_TCP.crlf||'subject: FGA Alert'
              ||UTL_TCP.crlf
              ||'To:'
              ||l_to
              ||UTL_TCP.crlf
              ||l_messege);
    UTL_SMTP.quit (l_mail_conn);
    EXCEPTION
    WHEN OTHERS THEN
         UTL_SMTP.quit (l_mail_conn);
         raise_application_error     (-2000,'Failed due to the
    following                          error'||SQLERRM) ;
    END;
    Message was edited by:
    Md Ruhul Amin

    Alok brother, thank you for advice. About FGA concept i got from book. this PL/SQL code i got from that book. The book name is "Effective Oracle Database 10g Security by Design" and the writter name is "David Knox". if you send your e-mail address , i could send scan copy of this topic from this book.
    my e-mail address is <[email protected]>. i am waing for you reply

  • Can I get information regarding the client browser using JSP

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

Maybe you are looking for

  • How to use dimension property in REC statement?

    Hi, In dimension ACCOUNT I have created additional property ZACC where I store "alternative" account numbers. After I load actuals from BW to "regular" accounts I want to copy values to "alternative" accounts. Regular accounts are hierarchy nodes and

  • How to change a labels text which created at runtime?

    hi, i am creating label controls in runtime dynamically and adding them to a group component. this group component is in another custom component and i have lots of custom comp. in my app. my question is how can access (via id) and change a labels te

  • Inputstream.....help me...

    Hi guys, i've a question for you. My Jsf Application allow user to upload a txt file thanks to a Myfaces component. I want manipulate later this file and i know that exist getInputStream function that allow it. My question is that i have to add to my

  • Map in webi

    Hi Is it possible and how to create/integrate map (to SIG) in report webi Thanks

  • Find my Iphone Works!

    I want to share with everyone that if you don't have the "find my Iphone" App on your Iphone, you need to download it.  Yesterday I had my Iphone stolen. I went online, tracked where the phone was, called the police and they found my phone, along wit