AMFConnection never give exception,why?

This is my simple code
import flex.messaging.io.amf.client.AMFConnection;
import flex.messaging.io.amf.client.exceptions.ClientStatusException;
public class AMFClient {   
    public AMFClient() {        
    public static void main(String[] args) {        
        AMFConnection amfConnection = new AMFConnection();
        String url = "http://192.168.0.199:9081/testApp/messagebroker/amf";       
        System.out.println("AMF Client Test");
        try
            amfConnection.connect(url);
        catch (ClientStatusException cse)
            System.out.println(cse);
            return;
The program never give exception if I give a non-existed url,why?Please help
Thanks
Mark

If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.0.1. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
iOS 5: Updating your device to iOS 5 or Later
http://support.apple.com/kb/HT4972
How to install iOS 6
http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
iOS: How to update your iPhone, iPad, or iPod touch
http://support.apple.com/kb/HT4623
If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
 Cheers, Tom

Similar Messages

  • SOAP Response From ASP Page gives Exceptions-Why ?

    Hi Friends,
    I am trying to call an ASP Page by sending it a SOAP Request.
    The SOAP Request reaches the ASP Page but still i am getting lot of
    exceptions.This is my code from Request.java
    import javax.xml.soap.*;
    import java.util.*;
    import java.net.URL;
    public class Request {
    public static void main(String[] args) {
    try {
    SOAPConnectionFactory scFactory =
    SOAPConnectionFactory.newInstance();
    SOAPConnection con = scFactory.createConnection();
    MessageFactory factory =
    MessageFactory.newInstance();
    SOAPMessage message = factory.createMessage();
    SOAPPart soapPart = message.getSOAPPart();
    SOAPEnvelope envelope = soapPart.getEnvelope();
    SOAPHeader header = envelope.getHeader();
    SOAPBody body = envelope.getBody();
    header.detachNode();
    Name bodyName = envelope.createName(
    "TestDtls", "m",
    "urn:myserver/soap:TestThis");
    SOAPBodyElement gltp =
    body.addBodyElement(bodyName);
    Name name = envelope.createName("PhoneOrigin");
    SOAPElement symbol = gltp.addChildElement(name);
    symbol.addTextNode("0672324228");
    URL endpoint = new URL
    ("http://john/myservices/testsoap.asp");
         message.writeTo(System.out);
    SOAPMessage response = con.call(message, endpoint);
         response.writeTo(System.out);
    SOAPPart sp = response.getSOAPPart();
    SOAPEnvelope se = sp.getEnvelope();
    SOAPBody sb = se.getBody();
    Iterator it = sb.getChildElements(bodyName);
    SOAPBodyElement bodyElement =
    (SOAPBodyElement)it.next();
    String myvalue = bodyElement.getValue();
    System.out.print("The Value Retrived is ");
    System.out.println(myvalue);
         con.close();
    } catch (Exception ex) {
         System.out.println(ex);
    This is what i have in my ASP Page: testsoap.asp
    <%
    Set objReq = Server.CreateObject("Microsoft.XMLDOM")
    objReq.load(Request)
    strmycode = "SOAP-ENV:Envelope/SOAP-ENV:Body/m:TestDtls/PhoneOrigin"
    varPhoneOrigin=objReq.SelectSingleNode(strmycode).text
    status="ok"
    strReturn = "<SOAP-ENV:Envelope xmlns:SOAP=""urn:schemas-xmlsoap-org:soap.v1"">" & _
    "<SOAP-ENV:Header></SOAP-ENV:Header>" & _
         "<SOAP-ENV:Body>" & _
              "<m:TestDtlsResponse xmlns:m=""urn:myserver/soap:TestThis"">" & _
         "<PhoneStatus>" & Status & "</PhoneStatus>" & _
         "</m:TestDtlsResponse>" & _
         "</SOAP-ENV:Body>" & _
                        "</SOAP-ENV:Envelope>"
    Response.Write strReturn
    %>
    The Exceptions i get are as follows:
    =====================================
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><S
    OAP-ENV:Body><m:TestDtls xmlns:m="urn:myserver/soap:TestThis"><PhoneOrigin>"0672
    324228"</PhoneOrigin></m:TestDtls></SOAP-ENV:Body></SOAP-ENV:Envelope>Jul 11, 20
    03 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl identifyContentType
    SEVERE: SAAJ0537: Invalid Content-Type. Could be an error message instead of a S
    OAP message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Jul 11, 2003 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl <init>
    SEVERE: SAAJ0535: Unable to internalize message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize message
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptio
    nImpl: Unable to internalize message
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize m
    essage
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    ... 3 more
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    Actually,i need to see the response in XML format as per my program.
    But,What does all this stuff mean ? I have using latest jwsdp 1.2.
    Can Anyone Help me on this ?

    i have the same problem. when i make a test with a VB client, the SOAP message is builded this way "<SOAP.... instead of <SOAP-ENV.... tag generated by java. When a make a test in vb client using this syntax (SOAP-ENV), the asp page returns a error:
    <font face="Arial" size=2>
    <p>Microsoft VBScript runtime </font> <font face="Arial" size=2>error '800a01a8'</font>
    <p>
    <font face="Arial" size=2>Object required: 'objXMLDOM.selectSingleNode(...)'</font>
    <p>
    <font face="Arial" size=2>/rcruz/soap/vbSoap/simplesoap.asp</font><font face="Arial" size=2>, line 6</font>
    Anyone have a idea???
    Thanks

  • I keep being asked to update my Safari but when I do a Software update it scans but never gives me a list and just says no new updates. Help please!

    I keep being asked to update my Safari but when I do a Software update it scans but never gives me a list and just says no new updates. Help please!

    There are no updates to either OS 10.5.8 or Safari 5.0.6.
    If you need a later version of Safari you must first upgrade your operating system to a later version of OS X.

  • Trying to update my addons but addon page will not list my adons. It act like it is searching but never gives me a list.

    I have recently been getting messages saying Firefox has blocked certain out of date addons. When I go to the check status of addons page, the little wheel just spins and never gives me a list of my addons. How do I deal with these blocking messages.
    Plugin Status
    Step 1: Click Update to update a plugin.
    Step 2: Complete all recommended updates before restarting your browser.
    Checking with Mozilla on the status of your plugins Loading Data (nothing ever happens at this point)

    Hi Heartland,
    I understand that you have tried to update plugins but there is a never ending loading.
    What part of the plugin page is this happening in? And which plugin page?
    In the meantime it is possible to open this page in your browser:
    about:plugins
    Look up each one listed on that page to make sure they are up to date. [https://www.mozilla.org/en-US/plugincheck/]

  • Why does the top button always brake why as my screen decided to pop off why is the back of my case bending when I have never dropped it why dose this shity phone keep sending text messages as picture messages this is the worst phone av ever had!!

    Why does the top button always brake why as my screen decided to pop off why is the back of my case bending when I have never dropped it why dose this shity phone keep sending text messages as picture messages this is the worst phone av ever had!!

    I know a lot of people with iphone 5 and have never heard them complain about top button always brake and screen that decides to pop off or the back of their case is bending.
    That sounds like a phone that has been dropped a numerous times.

  • HT1926 I received an ITunes and Quicktime update notice on my Windows 7 PC, from Apple this morning. During the update installation, RealPlayer installed. What gives? Why is Realplayer installing with the Apple software.

    I received an ITunes and Quicktime update notice on my Windows 7 PC, from Apple this morning. During the update installation, RealPlayer installed. What gives? Why is Realplayer installing with the Apple software.

    Thanks for the reply. I went back to check if there was a history in windows (Event Viewer) but could not locate it in Win7. The only updates that were in the Apple Updater window were the Quicktime and ITunes. Had I let the Realplayer continue on its own, it would have installed the Google Chrome and other apps. I let it finish installing and then removed the entire program. I do not remember checking or seeing anything saying that realplayer was being downloaded until after a reboot was requested from the ITunes Update Installer.
    I just thought it was strange since I do not use Realplayer and have not downloaded any software for it.
    I am on a corporate PC with a pretty thick firewall, but something may have slipped through.
    Thanks again for the assistance.

  • HT1310 I press option when starting up my computer and it just hangs or at least never gives me the list of startup disks before it's booted up.

    I press option when starting up my computer and it just hangs or at least never gives me the list of startup disks before it's booted up. I can choose which startup up disk when I'm already booted up from settings --> Startup Disk but how do I know if my Macintosh HD internal drive disk fails I'll be able to boot from my supposedly bootable backup drive?
    What am I missing? I have the latest Mountain Lion, could this be bug in that new Op System?
    Does the startup drive list (before bootup) only show up if the Macintosh HD is not bootable (crashed or broken)?
        Dave

    Replugging my keyboard into my front USB2 slot was half the solution. I had my keyboard plugged into a KVM switch which goes into the back. The other half was that I needed to unplug my backup firewire hard drive from the front port to a chained drive with the source hooked into the back of the Mac Pro. Not sure if it was the cable or the firewire slot that gummed up the hardware startup hard drive selection diaglog.
    I also tried resetting the NVRAM and only got one Mac startup sound. That didn't seem to do it but then again it could of been a necessary condition as well.
    Thanks everyone for your help.
       Dave

  • TS4006 I have iPhone 4 with updated latest iOS And i am using FIND IPHONE application. But everytime when ever i login in it and serch for the device its shows but never give me the location"NO LOCATION AVAILABLE".It is already connected with WIFI but no

    I have iPhone 4 with updated latest iOS And i am using FIND IPHONE application. But everytime when ever i login in it and serch for the device its shows the device  but never give me the location"NO LOCATION AVAILABLE".It is already connected with WIFI and i tried all the stuffs that has been written in the manual. Plese give me the Proper suggetion about this issue..!!

    If your router is not identified in a national database (don't recall who maintains it or where it is) then there is no location associated with it.  Hence your device cannot be located.  I suggest you try your test at some public wifi spot, like a bookstore or coffee shop.  These places usually have a location associated with their wifi router.

  • PreparedStatement in batched mode gives Exception

    Hi
    I have a problem.
    I am running PreparedStatement in batched mode, actually I am using Springs BatchSQLUpdate component.
    Now i am creating a batch of about 10000 inserts / updates. However if any single of these inserts / updates fails, it gives exception with DataIntegrityViolation, BadSQLGrammer etc.
    I am also maintaining a parallel cache of the values that I am using to bind the preparedstatements.
    So for statement 1 in the batch, i know what values are being used.
    My question is when the batch update fails, how can we identify which SQL statement, i mean which index in the batch caused the issue?
    Please help me as I am stuck and need to build some robust exception handling for PreparedStatement batch loads.
    Niki

    Niki-Nono wrote:
    The insertPreparedStatements.get() in my code returns a BatchSqlUpdate object which has already been assigned a statement and also have passed the array of object values to it.
    I have done this using batchSqlUpdate.update(objects); where objects is an array of values.
    THe code block that I executes the flush(). This throws an exception. In some cases it is a BadSQLGrammerException for cases where we try to insert alphabets in integer columns or in some cases DataIntegrityViolation where the batch has 2 sets of values with same primary key.
    The results array is null when i check the value in the catch block.
    And the flush() does not proceed with execution of the complete batch in fact it aborts when even 1 statement fails.
    I hope it is clearer now.
    However, if all the statements go through, I have seen that the results array has correct values as to how many rows were updated / inserted.
    Please let me know.OK, I really wasn't sure about what it did on flush, as there's no explicitly stated exception and nothing in the method description. The array will be null since it hasn't been set with the return value from flush since an exception was thrown.
    From what I can tell this Spring class uses, under the hood, the batch functionality from JDBC. So the particular exceptions you;re getting will have started life as SQLExceptions...which themselves will be of the BatchSQLException I mention in my first post. I'm wondering if the Spring exceptions contain the SQLException. I would hope so, and I have a vague recollection that the original is wrapped so you should be able to do something along the lines of:
    catch (DataAccessException ex)
        SQLException ex = ex.getCause();
        if (ex instanceof java.sql.BatchUpdateException)
            // Get the info from here.
    }Now, this is only a concept, and I haven't tested it or anything, but I would hope something along these lines should get you to the data you're after.

  • HT4061 I brought a Iphone 4s from someone and they never give me their apple id and password. Now I the phone but its lock , how do I unlock it ?

    I brought a Iphone 4s from someone and they never give me their apple id and password. Now I the phone but its lock , how do I unlock it ?

    You don't. Take it back to them and ask them to unlock it. If they refuse, or if they have now vanished off the face of the earth, you own a brick. There is no way past the activation lock without the proper credentials.

  • Never give up

    On 15th April 2015 I put in an online request to O2 for an unlatching code for my Sony Xperia S. Almost immediately I received an auto response telling that O2 could not provide code as they did not supply the phone. Quite true, the phone was a Sony Repair replacement so I tell O2 this about nine times over Chat and 202 conversations, each time I got the same answer “ I will advise the unlatching team of this when I request your code”. In between times I was asked for and provided documentary proof that the phone was legitimate, thanks Sony. Towards the end of May I found the O2 Community and made contact with . After plenty of intervention and advice still no code, but not for the want of trying by . Eventually I was advised to contact [email protected] attaching as much evidence as possible, you must have a cast iron case and documents to prove it. Within 2 weeks I had my code, it arrived Saturday 25 July. The morel “never give up if you know you are right”.
    A sting in the tail my Xperia S died 12 July 2015 RIP.

    bidefordjohnboy wrote:
    On 15th April 2015 I put in an online request to O2 for an unlatching code for my Sony Xperia S. Almost immediately I received an auto response telling that O2 could not provide code as they did not supply the phone. Quite true, the phone was a Sony Repair replacement so I tell O2 this about nine times over Chat and 202 conversations, each time I got the same answer “ I will advise the unlatching team of this when I request your code”. In between times I was asked for and provided documentary proof that the phone was legitimate, thanks Sony. Towards the end of May I found the O2 Community and made contact with @rosadosc. After plenty of intervention and advice still no code, but not for the want of trying by @rosadosc. Eventually I was advised to contact [email protected] attaching as much evidence as possible, you must have a cast iron case and documents to prove it. Within 2 weeks I had my code, it arrived Saturday 25 July. The morel “never give up if you know you are right”.
    A sting in the tail my Xperia S died 12 July 2015 RIP.Shall I make the tail more interesting ....? Sorry for not telling you this before but now that it's over I'll let you in on a little secret.....The Manager that dealt with the last request you made from customer services, is my Manager! The person that you spoke to on the phone is on my team and when he took the situation to our Manager she recognized it, because just a couple of hours before I had asked her for advice about it .

  • The following block is giving an exception.why?

    DECLARE
    TYPE typ_tab_oid IS TABLE OF ncs_domain.sco_item_results.OID%TYPE;
    v_tab typ_tab_oid;
    CURSOR cur_oid
    IS
    SELECT OID
    FROM ncs_domain.sco_item_results sir
    WHERE sir.is_total = 'Y';
    v_error_code number(10);
    v_error_mesg varchar2(4000);
    BEGIN
    OPEN cur_oid;
    LOOP
    FETCH cur_oid
    BULK COLLECT INTO v_tab LIMIT 1000;
    FORALL i IN 1 .. v_tab.COUNT
    DELETE FROM ncs_domain.sco_item_results_bkp sir
    WHERE sir.OID = v_tab (i);
    EXIT WHEN cur_oid%NOTFOUND;
    END LOOP;
    CLOSE cur_oid;
    EXCEPTION
    WHEN OTHERS
    THEN
    v_error_code:=sqlcode;
    v_error_messg:=sqlerrm;
    insert into my_error_log values()
    raise_application_error (-20001, v_error_code||''||v_error_messg);
    END;
    exception that i am getting is ora-30036: unable to extend segment by 8 in undo tablespace........
    why??
    also prior to script i had no index on the column is_total of table ncs_domain.sco_item_results
    when i ran the scipt it gave the output in approx 3 hrs.
    once i created bitmap index on the column is_total and it is taking 5 hrs.
    SAD Part is that even after 5hrs i get an exception that no space in undo tablespace(mentioned above).
    How do i handle this exception.??I am a user.Dont have any sys previliges also.
    Can saomebody help in improving the perfomace of the script..
    The script is basically deleting approx 10,000,000 records.

    Hi.
    Following is the sript of the table.
    It already includes nologging clause.
    CREATE TABLE SCO_ITEM_RESULTS_BKP
    OID VARCHAR2(32 CHAR) NOT NULL,
    TEST_ID NUMBER(22,10),
    STUDENT_OID VARCHAR2(32 CHAR),
    TEST_TYPE VARCHAR2(32 CHAR),
    CUSTOMER_ID NUMBER(9) NOT NULL,
    SCORED_DATE DATE,
    STATUS VARCHAR2(50 CHAR),
    SCORE_VALUE VARCHAR2(10 CHAR),
    SCORE_MIN VARCHAR2(10 CHAR),
    SCORE_MAX VARCHAR2(10 CHAR),
    NUM_ATTEMPTS NUMBER(22,4),
    ITEM_ID NUMBER(22,10),
    ASSIGNMENT_OID VARCHAR2(32 CHAR),
    AUTH_LEVEL_ENTITY_ID NUMBER(10),
    SESSION_ID NUMBER(22,10),
    CREATEDBY_OID VARCHAR2(32 CHAR),
    UPDATEDBY_OID VARCHAR2(32 CHAR),
    CREATEDATE DATE,
    UPDATEDATE DATE,
    ORIGINTYPECD_OID VARCHAR2(32 CHAR),
    OWNER_ORGUNIT_OID VARCHAR2(32 CHAR),
    APPLICATION_VERSION VARCHAR2(32 CHAR) NOT NULL,
    INACTIVESTATUS CHAR(1 CHAR) NOT NULL,
    ISDELETED CHAR(1 CHAR) NOT NULL,
    JOB_ID VARCHAR2(32 CHAR),
    TESTRESULTS_OID VARCHAR2(32 CHAR),
    FORM_ID NUMBER(10),
    IS_TOTAL CHAR(1 CHAR),
    STUDENT_PERSON_OID VARCHAR2(32 CHAR)
    TABLESPACE BASE_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOLOGGING
    NOCACHE
    NOPARALLEL
    MONITORING;
    Edited by: user8731258 on Nov 25, 2009 8:16 PM

  • Fail to generate PDF and give exception Unable to LOCK

    Hi members.. today we generate Adobe PDF in R/3 and hit such error.
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_FP_API_INTERNAL', was not caught
      in
    procedure "GENERATE_PDF" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    Unable to lock form ZTFPT50
    Anyone face this error before, tried google around but not much info about it.
    Thanks, many thanks,
    kahwai

    Hi Otto,
    I am having a similar issue:
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_FP_API_INTERNAL", which was raised in the program
    "SAPLFPGEN",
    specifically in line 38 of the (include) program "LFPGENF01".
    The cause of the exception was:
    Unable to lock form ********
    I was creating a Web Request in our CRM 7.0 System and I needed to update the Request Data Structure with a few new fields. After adding these fields and saving, I regenerated my Adobe Interactive Form to create the new fields, activated my form, checked my interface, and then tried to run my web request again. Now I am receiving the above error telling me that the form cannot be locked. Any ideas/suggestions of what might be the issue?
    Thanks,
    Chris
    UPDATE:
    I have figured out the problem. It wasn't the lock that was the problem, the first run of the program is accessing the table D010INC table doing a DELETE and is causing an extremely long runtime causing the program to timeout. I was just running the web request while that was still processing and that is why it was telling the form cannout be locked. The note Note 1232776 - Long runtimes for accesses to D010INC or D010TAB address the long runtime accesses for the D010INC table and is a BASIS issue.

  • Button actionListener gives exception

    Dear All,
    I have created a sample page in jsf2.0 in netbeans6.9 which gives me following error when i click the submit button.. I am quite confused because my code seems correct.
    registration.jsp
    <h:form>
    Name:
    <h:inputText value="#{loginBean.userName}" label="Name"></h:inputText>
    <h:message for="Name" ></h:message>
    Password:
    <h:inputSecret value="#{loginBean.password}" label="Password"></h:inputSecret>
    <h:message for="Password" ></h:message>
    <h:commandButton value="Login" actionListener="#{loginBean.processAction}">
    </h:commandButton>
    </h:form>
    faces-config.xml
    <faces-config>
    <managed-bean>
    <managed-bean-name>loginBean</managed-bean-name>
    <managed-bean-class>com.beans.LoginBean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    </faces-config>
    backing bean class
    package com.beans;
    import javax.faces.application.FacesMessage;
    import javax.faces.context.FacesContext;
    import javax.faces.event.AbortProcessingException;
    import javax.faces.event.ActionEvent;
    import javax.faces.event.ActionListener;
    public class LoginBean{
    private String userName;
    private String password;
    /** Creates a new instance of LoginBean */
    public LoginBean() {
    public String getPassword() {
    return password;
    public void setPassword(String password) {
    this.password = password;
    public String getUserName() {
    return userName;
    public void setUserName(String userName) {
    this.userName = userName;
    public void processAction(ActionEvent event) {
    if(userName.equals("sa") && password.equals("sa")){
    FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Login sucessfull."));
    Exception
    org.apache.jasper.JasperException: /registration.jsp(31,12) A literal value was specified for attribute actionListener that is defined as a deferred method with a return type of void. JSP.2.3.4 does not permit literal values in this case
    at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
    Please can any one put some light in this problem..
    Regards,
    Santosh
    NetBeans IDE 6.9.1
    Server : Apache Tomcat 6.0.29

    I don't see anything wrong. The problem may be somewhere else, such as in the deployment or in the web.xml.

  • In shuffle mode, some songs never get played, why?

    I have most of my music in 1 playlist (about 2500 songs) which I listen to all the time, always in shuffle mode. I became aware that my ipod was never playing some songs, yet others were recurring quite frequently. When I checked the playcount, it showed the highest count at 46, yet it also showed that many tracks that had been in the playlist just as long, have never been played. Why is this? Is my ipod secretly asserting it's own taste in music? Does shuffle mode favour songs with a higher playcount? Is there a way to stop this happening? Has anybody else experienced this? Suggestions gratefully received.

    I've heard this excuse before, that what we think is random really isn't, but when certain trends occur enough times, its pretty clear that there is some kind of algorithm or something in the coding that affects the shuffle.
    I know random means random, but there are too many "random" coincidences and apparent patterns that occur to raise doubt that it truly is as random as Apple claims.
    One such example, is that when using the Shuffle Songs feature (that shuffles all tracks on the iPod) I had 2-3 tracks from the same album (an album I had never even listened to yet) showing up within the first 40 tracks five times in a row. Numerous other songs showed up in at least 3 of the 5 "trials." Out of 8,000 songs.
    On a playlist (of 300 or less songs is all I have tried), if you have multiple songs off the same album, you are far more likely to hear at least one other song off a given album within about 10 songs then you are to not hear a song off the same album. A specific example of this is on a playlist of 105 songs I have, there are 3 songs off one album, however nearly every time 2 of the songs will play within a 10 track range, and nearly as often all 3 songs will play within the same 20 track range.
    I know random isn't perfectly spaced songs, but when certain things happen often enough, the odds of it become so low that even the "true random" explanation doesn't cover it.

Maybe you are looking for

  • Exchange rate SAOP-AXIS adapter - SAP PO 7.4

    Hi Expert, My requirement is to fetch exchange xml file from web link : http://www.nationalbanken.dk/DNUK/rates.nsf/rates.xml . I have gone through Michael blog: http://scn.sap.com/community/pi-and-soa-middleware/blog/2012/01/05/michals-pi-tips-excha

  • Adobe CS4 OpenGL issues with 10.6.2 and Intel GMA950 video card

    I just upgraded to Adobe CS4 and in PS I cannot enable OpenGL. I'm running 10.6.2 on a Macbook with the Intel GMA950 video card. I was wondering if 10.6.2 does not have the relevant drivers for CS4 to recognize this chipset or that since the video ca

  • Configuring more than one LDAP as data source

    Hi Portal Gurus, We have requiremnt to configure  MS ADS LDAP-> DEEP HIERARCHY  & Sun one LDAP->FLAT HIERRARCHY as PORTAL Datra Source.we have already configured MS ADS LDAP. for  merging these 2 LDAPS as a data source can anybody having experiece ..

  • Trying to migrate OE local folders to TB

    Details on how to accomplish-not only the folders but the contents

  • Drag & drop to ext drive for backup; "insufficient privileges" error

    I tried this in the Time Machine forum but I think this is a better forum. I backup monthly to an external drive by dragging my Home folder to the ext drive & overwriting the prior month's data. About every other time, after it reads the # of files t