How to force J2ME to send out HTTP 1.0 request

How does one force a J2ME client to send out an HTTP 1.0 request instead of an HTTP 1.1 request ?
I'd like to do this because handling 100-Continue return codes is becoming quite a chore. If the request is from a 1.0 client, the server won't send the 100-continue.
Thanks
BigAl

Hi,
From tool kit WTK2.0 you can do this by setting the preferences.
Click Edit>preferece
In Network Configuration tab you can select Http/1.0
But on real device it is implementation dependent.You can'nt choose the HTTP1.0 or HTTP1.1.
If the underlaying is a WAP stack which provides HTTP1.1 functionality then there is no way you can switch to HTTP1.0
Doesn't have idea about other bearers imode/sms etc etc
HTH
phani

Similar Messages

  • Gmail mail account compromised..how do I change my sending out photos in my iPhoto account

    I had my gmail account compromised and managed to get a new e-mail address for gmail.  Now I was trying to send off some photos in my iPhoto program and what comes up is my original gmail address.......how do I change my e-mail (gmail) address and be able to send out some photos?  Help

    Go into iPhoto's Accounts preference pane and delete the email account that's there.  Add it back with the new Gmail info.
    OT

  • Rm ${datafile}; how to force 10g to find out about it?

    Hey;
    I have a small oracle 10g test instance with which I'm hoping to become familiar with backup and recovery - my first topic of study.
    I have a list of backups both copy and backupset. After getting those, I identified the files in the database:
    2 from dba_data_files
    3* order by tablespace_name
    SQL> /
    FILE_NAME FILE_ID STATUS TABLESPACE
    /oracle/oradata/oci1/example01.dbf 5 AVAILABLE EXAMPLE
    /oracle/oradata/oci1/sysaux01.dbf 3 AVAILABLE SYSAUX
    /oracle/oradata/oci1/system01.dbf 1 AVAILABLE SYSTEM
    /oracle/oradata/oci1/undotbs01.dbf 2 AVAILABLE UNDOTBS1
    /oracle/oradata/oci1/users01.dbf 4 AVAILABLE USERS
    then blasted example.dbf;
    $ ls -ld /oracle/oradata/oci1/example01.dbf
    ls: /oracle/oradata/oci1/example01.dbf: No such file or directory
    I was thinking that would start screaming immediately in the alert log... so far, nothing. I then tried a query of the hr schema and that worked. That obviously means the hr schema is in the sga which is curious by itself because I've never queried that table before.
    Finally a report from the v$datafile_header is also showing everything is still there:
    SQL> select file#, status, error, recover, tablespace_name, name
    2 from v$datafile_header;
    FILE# STATUS ERROR REC TABLESPACE NAME
    1 ONLINE NO SYSTEM /oracle/oradata/oci1/system01.dbf
    2 ONLINE NO UNDOTBS1 /oracle/oradata/oci1/undotbs01.dbf
    3 ONLINE NO SYSAUX /oracle/oradata/oci1/sysaux01.dbf
    4 ONLINE NO USERS /oracle/oradata/oci1/users01.dbf
    5 ONLINE NO EXAMPLE /oracle/oradata/oci1/example01.dbf
    I also forced a check point with alter system checkpoint and still nothing in the alert log or v$datafile_header query.
    How long will it be before oracle does the 'holy crap!' thing and/or how can I force it to find out about the missing datafile?
    Thanks for any info..
    Doug O'Leary

    Actually, if, after removing the file from the O/S, you login to the database w/ a new session, this will give you a new server process (assuming you're not running shared server), and that server process would not be able to open that file. If you now do a select and force a full table scan on a table that has extents in the file that you deleted, your process should catch an error.
    -Mark
    Edited by: mbobak on Jul 22, 2009 11:30 AM

  • Connected everything on my new (previous gen...not the new tower, mind you) TC, but can't get beyond flashing yellow.  Had to reconnect my old router to send out the "HELP!" request.  Can anyone advise, please?

    Please advise.  I just tried connecting my newly purchased (previous generation...not the newest "Tower" model) Time Capsule, but cannot get beyond the "blinking yelow light".  I had to connect up my old router (the one I'm trying to replace with this new TC) just to send this help request.  Can anyone please advise an old dude?

    If you pulled out an existing router.. then you have a modem.. what modem is that? Explicit details help loads.. and loads.. and even more loads.. we cannot guess solutions without knowing the setup.
    But you can simply configure the TC in bridge mode.. do it directly connected to the TC with ethernet wire.. LAN TC to computer and configure it in bridge.
    Then setup wireless any way you want..
    You can turn it off and still use the wireless on the old router.
    You can setup a new wireless network.. and connect to that.
    Or you can setup roaming network, ie use the same wireless name and same security settings and password as the existing router.. assuming it also has wireless.
    Do nothing at all and it will still work..

  • How to read XML data Generated out of Personnel Change Request?

    Hi,
    Is it possible to read the following attributes of an XML file which is generated from a PCR form created on Enterprise Portal:
    1. Time Stamps
    2. Data
    3. Location
    Any pointer will be of a great help.
    Thanks
    Deepak

    hi,
    pls chk this link.
    /people/tobias.trapp/blog/2006/08/22/xml-processing-in-abap-part-8--using-xslt-for-validation
    Regards
    Raja

  • How do I get labview for linux to send out ascii code to a motion controller?

    I have posted part of this problem but I will now try to clearify things. I have an x-y stage that needs motion control. I have to run the motion controller from within a linux system (RedHat 7.1) due to others in the research area. I have found a motion controller card (PCI) that will run under linux. This card is not National Instruments. I understand that they do not have drivers for their controller cards. This other card comes with the companies own software that uses ASCII codes to move the motors on the stage. I was hoping to create a program that could call those ASCII codes to move the stage. An example would be if a user wanted to have the stage move to the right he would press a b
    utton on the screen instead of typing in whatever ASCII could that move to the right happens to be. How would I go about programming something like this? I have heard of others doing things like this but I am unsure of how to program labview to send out ASCII codes to a PCI card to move motors.

    > would I go about programming something like this? I have heard of
    > others doing things like this but I am unsure of how to program
    > labview to send out ASCII codes to a PCI card to move motors.
    Look in the manual to see get familiar with the sequences of codes you
    need to write, and more importantly, where you write them to. I suspect
    a memory location, but it could be a socket or port.
    Each of these locations will have a slightly different way of accessing
    it. Once you know, search devzone for how to do it on linux, or post
    back here.
    After you can send the codes to the right location, you probably want to
    build a state machine that simplifies the interface and prevents certain
    actions from taking place. Now determine which buttons or
    keys perform
    which actions and use either the event structure or the older polling
    for control changes to affect state changes in the state machine.
    I'm summarizing here assuming that you know what a state machine is and
    why you'd want to use it. If I'm assuming too much, do some research
    and post again with more specific questions. Also be sure to look at
    example VIs as they show how to respond to UI actions.
    Greg McKaskle

  • Force Reporting Services 2012 use https

    I have recently set up a new instance of SQL Server Reporting Services. I have it running and am in the testing phase of the deploy. I have set it up to use SSL and basic Authentication. This all works. The report writer has been able to deploy
    reports and start testing. In this testing we discovered that the menu on the left of the report manager in the data sources or reports management window will not use https. So let me explain it more.
    If you browse to a report or data source in Report Manager then highlight and click on the down arrow and choose "Manage" you will get a page with the report's or data sources' properties. It will also have a menu on the left with items
    like "Subscriptions", "Dependent items", and "Security". If I click on one of these items I get a 404 page error. I can then go to the url and simply put a 's' in the http so it read https and it will work.
    Due to security requirements I have had to block all port 80 traffic, if I open port 80 it will work. It only works as http with port 80 open. The menu url never defaults to htts.
    I have set the root url to have an https at the front. This made no change.
    I tried setting the ReportServerUrl in the c:\Program
    Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.configfile. I set it to include the https at the front as such https://DNSentry.com/reports.
    Yes I changed the url so the Reports is the Report Manager. This broke the entire Report Manager. It would give me an error of:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    I have also tried to force report portal to use https by setting the secureconnectionlevel in \c:\Program
    Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config to 2, then to 1 and it gave me an error both times.
    The underlying connection was closed: An unexpected error occurred on a send.
    If anyone knows how to force Reporting services to use https for all urls or if I am doing something wrong please let me know.

    @Diskokid I have exactly the same problem, did you find a solution yet?
    -edit- _remove the HTTP from the Web Service URL_
    That did it for me. I got an error at first but it turned out that the certificate was wrong. The
    machine was named ABACUS but could be reached using reports.company.com. I renamed the machine
    REPORTS, requested a certificate  and used that certificate to set up SSL and used the following url  as a guide to check all.
    http://nlsimmons.com/SQLScraps/?p=259

  • How many emails can i send in one day with icloud

    how many emails can i send out in a day using icloud.com?  I want to send about 800 emails to all the parents at my children's school.  I am using pho and swiftmailer to send the emails.
    thanks.

    Up to 200 messages and 1000 recipients (see http://support.apple.com/kb/ht4863).  This is because it's designed for personal rather than business use.

  • Weblogic 10.0 sends chunked encoding with a HTTP 1.0 request

    This took ages to find, it was only the mod_weblogic's Debug ALL parameter that pointed me in the right direction because it printed all the headers in each stage.
    Server:
    Apache 2.0 with mod_weblogic and SSL (Dev: Windows XP SP2)
    Apache 2.2 with mod_weblogic and SSL (Prod: Unix/Solaris/Linux)
    Weblogic 10.0 running on SPARC Solaris 9
    Proxy:
    Squid/2.6.STABLE22 (Prod: Unix/Solaris, Dev:Windows XP SP2)
    Client:
    IE 6.0.2900.2180
    Windows XP SP2
    Under IE if a user doesn't have both of the "Use HTTP 1.1" and "Use HTTP 1.0 through proxy connections" selected they will get an error message when trying to download a file sent with "Content-disposition attached" header through a proxy server and over SSL.
    This is because IE is sending a HTTP 1.0 request to weblogic and weblogic is responding with HTTP 1.1 "Transfer-encoding: chunked" response which is causing IE 6 to fail to display the error. It manifests itself as an 'apache bridge error'.
    If either of the other two requirements of a proxy server or SSL aren't there then IE handles it properly.
    Workaround is to disable chunked transfer for that particular server. In WLST set /Servers/<server>/WebServer/<server>/ChunkedTransferDisabled = 'true'
    Any further information of a patch or additional settings would be appreciated.
    This seems less than ideal as some of the reports are quite large and would benefit from chunked transfer particularly those that use the correct IE settings and those using Firefox.

    Does your MDB require transactions ? If so you need to XA enable the connection factory. Looks like you are using a transactional MDB with non XA connection factory.

  • I have and iPad and I have and iPhone 5 my husband has another one and I singed all of them with the same Apple ID and  accound now my husband can see all the text I send and I get everything he gets how could I get his phone out of my accound

    I have and iPad and I have and iPhone 5 my husband has another one and I singed all of them with the same Apple ID and  accound now my husband can see all the text I send and I get everything he gets how could I get his phone out of my accound

    Mishijos3 wrote:
    I have and iPad and I have and iPhone 5 my husband has another one and I singed all of them with the same Apple ID ...
    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • How can I send out mail to multiple addressees?

    I want to send out a a mass mailing where I can begin my mail by personalisng it to  'Dear John, Jane...... or whoever.  How can I do this with using Mail?

    I Googled - I don't use Apple's Mail - and it seems that you need third-party software: this was one of the top hits - http://www.macmassmailer.com/mac-mail-group-email-list.
    Good luck,
    Clinton

  • I uploaded to Maverick and now my mail always cc's me on every email I send out. I have checked Preferences and the Composing Automatically CC button is unclicked. How can I stop this?

    I uploaded to Maverick and now my mail always cc's me on every email I send out. I have checked Preferences and the Composing Automatically CC button is unclicked. How can I stop this?

    Sounds like your phone has the jitters.
    This is sometimes caused when a DLL fle is missing when you restore, so the ipsw pacakge wasn't installed corectly.
    You could back up and restore, but if it doesn't help go to http://www.felixbruns.de/iPod/firmware/ and then download the same firmware your on.
    Open up iTunes and hold Shift+Restore and select that firmware, you can't use anoy ther firmwares though.
    Hope this helped

  • How do I get rid of a "bot" on my Mac that is sending out erroneous emails to everyone in our address book?

    How do I get rid of a "bot" on my Mac that is sending out erroneous emails to everyone in our address book? 

    You will have to look around your machine & figure out the name of the program.
    try /application/utilities/activity monitor
    I recommend that you get a littlesnitch. littlesnitch will track your Web traffic and tell you which applications are sending data from your computer. Be sure to run it awhile because it will trigger a number of alerts. In trail mode, it will run for three hours per boot for a about a month.
    http://www.obdev.at/products/littlesnitch/index.html
    This list maybe different in your release of X.
    Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • R3 - XI - Auto-ID:How to check result of Idocs sending out from R3 in aii ?

    Hi,
    I am implementing the SAP RFID-Enabled Outbound Delivery Process, the installation and configuration guide have been provided from SAP; able to d/l from SAP web site. Right now, I have 3 servers already installed components for this scenario:
    1.SAP R/3
    2.SAP XI 3.0;
    3.SAP Auto-ID(Auto-ID) v2.1
    Currently, I can send Material Master Idocs out from R/3, using t-code: AIDMM. And then I check the inbound Material Master Idoc in SAP XI, the status of Inbound Idocs is "Processed Successfully" and Ack. Status is "Still waiting acknowledgment". I have the following questions:
    1. Why does Ack. Status is "Still waiting acknowledgment"? Which server should send the acknowledgment back to it?
    2. How do I check the result in Auto-ID server? It suppose to have the submitted Material in Auto-ID server, doesn't it? I tried to check data in Auto-ID Cockpit->Master Data->Product and then click 'Go' but no result display.
    Please advise as the questions above. If you want more information please let me know
    Thanks,

    Hello,
    <u>Point 1 :</u>
    You have "Still awaiting ack" until the receiver send you an acknowledgement.
    If you don't want ack you can customize the table IDXNOALE in XI (SE12).
    I don't know Auto-ID but if it is a SAP system like R/3, you can use the SAP documentation named : HowTo_IDOC_Ack.pdf to send acknowledgment.
    https://websmp201.sap-ag.de/~sapdownload/011000358700004003762004E/HowTo_IDOC_Ack_20040817RR.pdf
    <u>Point 2 :</u>
    If transaction "we02" exist you can see your IDOC.
    Regards,
    Chris
    Message was edited by: Christophe DUMONT

  • How do I attatch several emails to one I'm sending out?

    How do I attach several email to one I'm sending out?

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

Maybe you are looking for

  • Can I run Windows 8.1 using VirtualBox on my Macbook?

    The system requirements for Windows 8.1 says that it needs "Microsoft DirectX 9 graphics device with WDDM driver".  Can I run Windows 8.1 using VirtualBox on my Macbook? It's a late 2009 model with an NVIDIA GeForce 9400M 256 MB graphics card & 2 GB

  • How can I make the data persistent when using plist ?

    I have a UITableView table1. And when I touch any cell in the table a new UIViewController appears and it have two UITextField's name and description. After entering the data in both the text fields I used the save button to save them. In save method

  • Assign document type to plant?

    Hi! Document types are assign to sales areas but i need to assign one specific document type to only a few plants of this sales area. ¿How could i do this? Regards. Eduardo

  • Non-updated Idocs found in Source System

    Hi Experts, I am getting an error Non-updated Idocs found in Source System Plz help me to resolve this issue.

  • JDBC driver does not support XA - Exception

    JDBC driver does not support XA cannot participate in a two-phase commit To Force participation set EnableTwoPhaseCommit property on the corresponding JDBCTxDataSource property to true 1) What is a JDBCTxDataSource - what does the TX mean? 2) I have