Only upper case in geocoding servie response?

when calling the geocoding service, I always get the the result in upper case
(i.e.
http://elocation.oracle.com/geocoder/gcdemo.jsp?country=DE&match_mode=DEFAULT&address=ctive+media+NEUHAUS%0D%0Asteinstr.+75%0D%0A81667+m%FCnchen
Is it possible to get the result in the correct case?
Edited by: beHam on Sep 21, 2011 5:45 AM

Okay, top tip.
I added the document listener which processed the text on each insert.
At this stage, I've only implemented keyword checking on single character inserts (to capture changes as they are typed) - multi character inserts need to be handled differently.
If I have a character I know can signal the end of a SQL keyword (space, carriage return, brace, parenthesis, comment etc) then I jump back to the last space in the document. This gives me the last "word" in the document.
Remove the last character (as this is the character that has triggered the event) and then see whether it is upper case or not? If not, should it be (is it a keyword)? If so, insert the upper case String in its place.
It was a bit fiddly to put the pieces together (a document listener which then has to use SwingUtilities to make the change using a third Runnable class) but it does exactly what I ask of it.
I have to implement a similar algorithm now to cope with deletions (what if a delete the "a" at the end of "selecta") and multi-character inserts.
Thanks for the advice. I've not used DocumentListeners before so this was doubly helpful.

Similar Messages

  • RFC function callls a SAP Business Connector Flow - only upper case

    Hi everybody,
    I wrote a function in SE37 which is calling a Flow in SAP Business Connector.
    R/3 and SAP BC, both are Non Unicode systems.
    The export parameter is TYPE makt-maktx.
    The call to SAP BC works fine. Only all the text I can see in the pipeline of SAP BC is upper case.
    I checked wether the domain of the makt-maktx allows case sensitive texts.
    This is OK.
    I have no idea how I can tell SAP BC to receive case sensitive texts.
    I checked the forums. Seems nobody had such a problem.
    Can somebyody help?
    Best regards
    Jochen
    Hi to all,
    it was not the JAVA Version, or a bug or whatelse.
    I just ingnored while testing in SE37 that there is
    a Flag [X] case sensitive - That's all!
    Shame on me!
    Greetings Joe
    Message was edited by:
            Jochen Seeliger

    Hi Priya
    Seeing the messages, it appears that server is down.
    "java.net.ConnectException" occurs whenever you try to connect to a system which is not up and running.
    cheers
    Sameer
    PS: Please award points if you find the answer useful

  • How do I male keywords (only) upper case in a JTextPane

    I'm using a DefaultStyledDocument subclass to handle SQL syntax highlighting but what I want to do is ensure that keywords are converted to upper case so as to maintain a "good" style without the hassle of shift or caps lock.
    Now, the StyledDocument seems the wrong place to implement this functionality as it should be just for display purposes while changing text to upper case is an actual change to the character values selected by the user.
    The JTextPane class itself has a replaceSelection(String content) method but this relies on the text being selected.
    I guess I could do this if I had a hook back to the JTextPane from my StyledDocument. When I find a keyword, select the text and replaceSelection.
    Is there a cleaner way to do this?

    Okay, top tip.
    I added the document listener which processed the text on each insert.
    At this stage, I've only implemented keyword checking on single character inserts (to capture changes as they are typed) - multi character inserts need to be handled differently.
    If I have a character I know can signal the end of a SQL keyword (space, carriage return, brace, parenthesis, comment etc) then I jump back to the last space in the document. This gives me the last "word" in the document.
    Remove the last character (as this is the character that has triggered the event) and then see whether it is upper case or not? If not, should it be (is it a keyword)? If so, insert the upper case String in its place.
    It was a bit fiddly to put the pieces together (a document listener which then has to use SwingUtilities to make the change using a third Runnable class) but it does exactly what I ask of it.
    I have to implement a similar algorithm now to cope with deletions (what if a delete the "a" at the end of "selecta") and multi-character inserts.
    Thanks for the advice. I've not used DocumentListeners before so this was doubly helpful.

  • Create user for CPS in _ UPPER CASE LETTERS _ if using JSM on SolMan

    only create users for CPS in UPPER CASE LETTERS if using JSM on SolMan
    Dear CPS Admins,
    If you plan to use Job Scheduling Management (JSM) on SAP Solution Manager together with CPS by Redwood please always create any users in CPS only with upper case letters to avoid issues in the communication between SolMan and CPS.
    The user creation for CPS is done in the UME (Java user administration, alias /useradmin).
    Actually the CPS user itself is only created in CPS during the first logon.
    Both CPS and the Java UME are case sensitive. So you can create users in uppercase, lowercase or mixed letters. But of course the system does still not allow duplicate names. So you can either create MUELLERP, MuellerP or muellerp - but not multiple of them.
    Now, if the SolMan communicates with CPS for Job Scheduling, the actual user name is taken in some kind of a "trusted RFC like" way and checked on the CPS system connected to the SolMan. If the current SAP user does not exist on CPS no activities are possible, neither in read mode (read existing CPS jobs) nor in write mode (change existing jobs or create new ones).
    Unfortunately the Solution Manager transmits the current user name to CPS only in upper case letter. So if the CPS user was not created in UPPERCASE letters in CPS the communication will fail. Therefore, think about creating CPS users in UME only in UPPERCASE letters. Changing this later is difficult to impossible.
    Best regards,
    Peter

    hi,
    I tried to reproduce your issue but I was not able to create a UME user with lower case letters.
    UME automatically converted the user name into upper case after saving. So even if I enter "cps" as user name UME stored the user name as "CPS".
    (maybe that happend because of the existing SU01-UME integration in our SolMan system)
    If UME would be case sensitive I would expect that it is possible to create the user "CPS", "cPs" and "cps".
    Regarding the SolMan-CPS connectivity:
    Transaction SU01 allows only upper case letters (in user name and alias). Since you're starting from an ABAP system only user names with upper case letters are supported. It's a technical constraint of the ABAP user management that user names consist of upper case letters only.
    Kind regards,
    Martin

  • How can I read an input which only contain the 26 upper case letter

    Are there any method that can read an input which only contain 1 character and it is in upper case too.
    should I use readChar( ), or readString( )??
    How should I implement them if I do use one of them?
    thx

    Try this :
    import java.io.*;
    public class Read
    public static void main(String[] x)
    System.out.println("Upper case char typed : "+readUpperCaseChar());
    public static char readUpperCaseChar()
    // method that read char and return the last upper case char
    char x='\0',tmp='\0';
    try
    while(tmp!='\n')
    tmp=(char) System.in.read();
    if(tmp >= 'A' && tmp <= 'Z')
    x=tmp;
    catch(IOException ioex)
    ioex.printStackTrace();
    return x;

  • Adding a Server Response Test Case

    I have a script with 20 pages in it. I want to add a server response test that will test that each of the 20 pages will load within 0 to 3 seconds. So I insert the test, filling out the properties on the first page; name, start test on this page checked, end test on this page unchecked, min 0 secs, max 3 seconds. The note at the bottom of the properties popup says "you may use this test to time multiple pages of your Visual Script by inserting separate Start and End test nodes in the respective pages" and that "each of the Start and End nodes must have the same name". How/Where do I add these nodes? I am not understanding what needs to be done.

    With e-Tester you have the ability to add a server response test that will start and stop on the same page or you can start the server response test on page 1 and end it on another page.
    If you want to make sure each page has a response time between 0 and 3 seconds, add a server response test to each page and check both check boxes to start and end the test on the same page. Make sure you give unique names to each server response test.
    If you wanted to, you could add a server response test on page 1 and give it a name like "Pages 1 - 5 Server Response Test" and then check only the check box to start it on page 1. Then on page 5, you would add a server response test named the same name "Pages 1 -5 Server Response Test" and just check the one check box to end th test on this page. That would sum the times from page 1 to page 5.
    I hope that helps clear things up.
    -GateCity_QA

  • Field validation only for UPPER CASE

    Hi Experts,
    my requirement is one field needed to be validate , it is coming from portal,
    and that string must be only UPPERCASE, if it is lower case error message is needed .
    like'only enter capital letters  ' .
    plz give me logic for upper case.
    Thanks.

    hi 
    you can go with following code...
    ITS A WORKING CODE WITH MY OWN DATA.
    you are getting w_source from portal
    data: w_char type string.
    start-of-selection.
    w_char = w_source.
    translate w_char to upper case.
    if w_char <> w_source.
      message 'only enter capital letters' type 'S'  display like 'E'.
    endif.
    regards

  • JDBC send data to oracle, oracle only accept column name in Upper case

    Hi experts,
    I am doing a scenario File --> XI --> JDBC,  JDBC send data to a Oracle 10g database, I have configured JDBC receiver to use XML-SQL format. in oracle database ,  table "EMPLOYEE" has a column "NAME", but when I send data to oracle using JDBC receiver, the column is "name", then XI complains
    " 'EMPLOYEE' (structure 'insert'): java.sql.SQLException: FATAL ERROR: Column 'name' does not exist in table 'EMPLOYEE'.
    can anyone help me to let oracle accpet column "name". I can't change colum in JDBC receiver from "name" to "NAME".
    Thanks a lot.

    <i>can anyone help me to let oracle accpet column "name"</i>
    Making Oracle case insensitive is not possible (in my opinion). By default all object names are stored in UPPER case in the rdbms dictionary.
    When XI searches for column name in Oracle, this search is case sensitive. So u have to configure accordingly.
    Regards,
    Prateek

  • Store entries in a table in UPPER CASE only

    Is there any ay where we can ensure that entries in a character type field in a table is always stored in the upper case?

    Leave lowercase checkbox in domain blank.
    However this will not make your entire table filled in upper case, point fields to the data element and the data element to the domain, in all the domains uncheck the lowercase box.

  • To convert the values in the column from upper case to Camel Case.

    Hi All,
    I have requirement to convert the column values(Data in the Columns) from upper case to camel case in pivot table view.
    For Eg:
    I have
    Table Name:Billing_Transaction
    under Billing_Transaction table i Have column Comment_Text
    Data in Comment_Text Column is
    INSERT,
    EXPORT,
    AMEND
    How i will change these values in to Insert,Export,Amend.(Camel Case condition)
    I want only the first letter of a word to be in caps and others to be in smaller case.
    Thanks,
    Chitra Subramani.

    Hi Aravind,
    Thanks for immediate response.your query is helpful.But i need to satisfy another condition in my requirement by using same formula.
    "REPLACE(UPPER(SUBSTRING(BILLING_TRANSACTION.BILLING_TRANSACTION_DESC FROM 1 FOR 1)) || lower(substring(BILLING_TRANSACTION.BILLING_TRANSACTION_DESC FROM 2)), '_', ' ')"
    above query satisfying Camil case and replacing '_' with ' '(space)......but inthis query i want add another condition to satisfy camil case for word which comes after '_'
    for example:
    DECLINE_IMPORT
    above query satisfying 2 conditions to convert above data into
    "Decline import"
    But in my requirement for word 'import' also it should come in camil case condition like
    "Decline Import"
    Thanks & Regards,
    Chitra
    Edited by: user6371773 on Apr 25, 2011 6:29 AM

  • Wsdeploy generates upper case method calls

    Hi all,
    I'm using
    wsdeploy -tmpdir build\server -keep -o dist\adresse.war build\adresse_prepare.war -verbose
    to generate the server part of my webservice.
    This one put the method call of my only interface call
    getAdresse(String bla)
    to upper cases in all generated classes. So far this doesn't seem to be a problem cause the service is active and seems to work but if I try to generate the client side with
    wscompile -gen:client -d build/client -keep -verbose config.xml
    and direct access to the wsdl-file via the service all client classes are generated with lower case method call.
    Now trying to call the service with the client stubs I get a class not found exception on the server side cause the server seems to be instructed to search for lower case method call classes.
    The generated wsdl file exists of lower case method calls.
    I'm getting mad...
    Please help
    Oliver

    Same problem with the simple hello application....if someone of the creators of this wonderful tool is listening please give me a hint where to look at...I'm really drivin' crazy...
    java.lang.NoClassDefFoundError: hello/HelloIF_SayHello_RequestStruct (wrong name: hello/HelloIF_sayHello_RequestStruct)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:248)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:286)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1340)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1274)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:313)

  • Safari bug--bad server response

    I tried posting this a few weeks ago and got zero replies. I searched the boards for previous threads. there are some. And sadly, no one seems to have a solution. but i am trying again just in case someone has discovered something.
    On many webpages i get '“safari can't open the page...bad server response” (NSURLErrorDomain:-1011" For example, wikipedia and photobucket, lord of the cows forums, purevolume, versiontracker, etc
    I don't get this with Firefox or Netscape.
    I don't get this error on my iBook that has the same basic set up as my powerbook. Same internet connection (AEBS through a wired linksys, cable modem). It only affects the powerbook. i don't use the ibook nearly as much (hardly ever) so maybe it would develop the problem if i used it a lot.
    I do get the problem both in my regular user account and my test user account on the powerbook.
    I called Apple and they trouble shot it with me. Nothing worked so then she said to reinstall my system from the DVD, so i did.
    After the reinstall, the problem was gone.
    Several days later the problem came back.
    what might be causing it?? what might solve it? There must be some conflict with something on my powerbook, yes? since it doesn't do it on the iBook? It never did it on the powerbook until several months ago. It's a new error. It must be related to some software update i did along the way. I've noticed people who have Tiger get this problem too so i don't imagine that would solve it.
    A couple of people said that using Safari Debugger and changing the User Agent fixed the problem for them. I tried that and still get the same 'bad server response.' The only thing that has helped was to reinstall the system. but the fix only lasted a few days.
    someone suggested removing a cookies file. Isn't that a user specific file? I have the same problem in my test user too. I did try removing the cookies files but it didn't work. i get this problem with sites i've never been to before.
    I had Safari 1.2 when the problem first started. Now i have 1.3.1.

    From Dr Smokes X Lab on freeing some space.
    Simple ways to free space
    You can employ any of the following tips to increase the free space available on your Mac OS X startup disk without altering your hardware.
    Empty the Trash
    As obvious as it may sound, some folks regularly Trash files but neglect to periodically empty the Trash. In Finder, select Finder > Empty Trash or, under Mac OS X 10.3 or later, you can also select Finder > Secure Empty Trash.
    Do not use the Trash as a "temporary" storage area. Only put an object in the Trash if you are sure it is no longer needed.
    Archive old files
    Archive — move, copy and delete, or backup and remove — files you do not use regularly to CD or another backup medium.
    Archiving files and folders creates a copy of the items in a compressed file. Archived files take up less disk space than uncompressed files, so archiving is useful for making backup copies of your data and sending information over the Internet.
    From Apple http://docs.info.apple.com/article.html?artnum=152335
    Archiving files and folders
    Select an item or items.
    Choose File > Create Archive.
    GL, Eme
     Power PC G4 (3.3) iMac♥ Flat Panel 10.3.9 { 15 Alum.PB,10.4.6   Mac OS X (10.4.6)   AEBS iMac Intel Core Duo os 10.4.6 2gb

  • Table name - Lower, upper case

    Hi,
    Thank you for reading my post.
    1) I created a table:
    CREATE TABLE radios(name varchar2(20), frequency varchar2(20));
    Notice that the table name is lower case ("radios").
    2) I added a constraint on the "name" column:
    ALTER TABLE radios ADD CONSTRAINT name_pk PRIMARY KEY(name);
    3) Now I want to list the existing constraints for the table "radios".
    3.a) If I use the lower case table name, the result is empty:
    SQL> SELECT constraint_name, constraint_type
    FROM user_constraints
    WHERE table_name = 'radios';
    no rows selected
    3.b) Now, if I use the upper case table name, I get what I am looking for:
    SQL> SELECT constraint_name, constraint_type
    FROM user_constraints
    WHERE table_name = 'RADIOS';
    CONSTRAINT_NAME C
    NAME_PK P
    Can you explain me that phenomenon?
    I mean: I created a table name lower case so why does it work
    only with the upper case formulation?
    Do we have to create upper case table names consistently?
    How do you create table names: do you create them upper case?
    Thank you for your help.
    Sincerely,
    Lmhelp

    All the object names are stored in UPPER case, unles you use double quotes to create them:
    SQL> create table TesT_1 ( a number);
    Table created.
    SQL> create table "TesT_2" ( a number);
    Table created.
    SQL> select table_name from user_tables where table_name like '%1' or table_name like '%2';
    TABLE_NAME
    TEST_1
    TesT_2
    More details:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/sql_elements008.htm
    Edited by: SKU on 09-Dec-2009 02:42

  • Error interpreting the mail server response in Messenger Express

    Background:
    Migrated from Sparc running iMS 6.0 to Linux running iMS 6.3 (from CommSuite 5)
    Problem:
    Some users, some times experience problems using Messenger Express. They receive the following error in their web browsers: Error interpreting the mail server response.
    Attempted solutions:
    1) 120230-20 -- no change in behavior
    2) reconstruct -r -- didn't fix the issue
    3) Support case with Sun -- tech seems to be guessing as a solution and not trying to troubleshoot the issue (growing frustration -- those I am here)
    Data gathered:
    I turned on the telemetry logging for this user and in the end of the imap session, I see:
    0.002>)F OK Completed
    <30.747<C UNSELECT
    0.003>C OK CompletedNETWORK ERROR: Connection reset by peer
    LOGOUT <username> 2007/7/17 8:46:07 - 2007/7/17 8:48:15
    This seems to come and go (working sometimes and not working others) for a few (5 or so) users, though, I haven't found any correlation between the users or how they differ from anyone else. Checking email via POP or IMAP works fine (just not via Messenger express).
    What else can I look at?

    Hi,
    Shane...thank you so much. <refrains from bashing Sun
    Support at this point>I should point out that myself and Jay are also Sun Support (we answer forum questions in our spare time).
    We have a valid support contract and the tech has
    never indicated that he has done any research into
    this issue -- he only keeps throwing out ideas based
    off of nothing. I asked him what he knows about the
    mentioned bug. awaiting response.I couldn't comment on this without looking at the case notes.
    <pushing my luck> Is there anything I can provide you
    which would help diagnose this? Based off of the
    logs (snips i provided u before), it does indeed
    seem to be related to the email
    headers...specifcially headers SpamAssassin added.What's the Sun support case #? Have you provided the full logs (rather then just snips) to the support engineer?
    Thanks again -- you're doing a great job.All part of the service.
    Regards,
    Shane.

  • Submit report - problem in upper case

    Hi Experts,
    I need to submit RCSBI040 in my report and pass the file value from my report to RCSBI040. The thing is the file value goes with upper case.But i need to send what the value am giving that value only go to RCSBI040 field filename.
    Please can you help me out.
    Thanks in advance...
    Regards,
    R P R Kumaar.

    Hello,
    Does it really matter...   Even if u enter in lower case it will be converted to upper case
    check this by executing program  RCSBI040 and enter some path and press enter.. You will see that it gets converted to upper case.
    Enjoy SAP,
    Pankaj

Maybe you are looking for

  • Muse templates for Business Catalyst

    Before the recent update for mobile devices I was able to atuomatically upload templates for webapps in Business Catalyst. Now it removed all my templates and does not to upload. Does anyone have this problem?

  • Sites created in iWeb '08 will not open in iWeb '09

    I upgraded to '09 but the sites that I created when I had '08 will not open. They are listed on the side menu but when you click on them the main window is blank/white. Is anyone having or had this problem and found the solution? Please help. I have

  • Dualscreen/dock options Oct. 2013 model.

    Hello guys. First and foremost, is this connection possible? 2x Thunderbolt/mini-displayport (left side of MBP) -> DisplayPort monitors Or do I have to rely on Matrix Dualhead2go, USB/DVI adapters, or anything else? Maybe I have to use one mini-displ

  • Best practice DNS in VPN environment for Lync2013 clients

    So I do have those site2site VPNs to connect the small branch offices to the main office. Internal DNS makes sure, that the branch offices can acess all the servers/services in the main office with their domain.local namespace. In such a scenario wil

  • Hi All,problem in synchronizing toughbook

    Hi All,          Pls provide the solution for the problem  when synchronizing toughbook  .Its Urgent .