Unable to check-in using N8"s Maps v3.08

H there.  Need some help in restoring the functionality of Maps Check-in.  Tried to reflash my N8 with v25.007 with Maps 3.08.  After installing Symbian Anna updates, tried to access the Nokia Map's check in settings but resulted to "system error!"  Since then the said error is always displayed.  Is there a way to resolve this?  Tried to reflash, software and hardware rest but to no avail......HELP!  Versions I'm using are indicated below:
Software version 025.007
Maps version v3.08 11wk41b02 map version 0.2.45.109.
2110i->3210->6210->7610->6680->N82->N8->N9
Solved!
Go to Solution.

Hi Ajay, thanks for the quick response.  I recalled that reflashing my N8 the v25.07 retained my Maps 3.08.  Like Windows, installation and migrating might not be complete so what I tried is to reinstall Maps 3.08 after reflashing.  Tried to access the check-in setting first and was able to register my Facebook account.  From this, I was able to access my check-in app.  Thanks again for the support.  Consider this as solved.  Even after hardware and software reset, it is best to reinstall all your apps.  Maps 3.08 was retained but some functions might not be working.
2110i->3210->6210->7610->6680->N82->N8->N9

Similar Messages

  • Unable to check multiple use check box for BADI

    Hi,
    In ECC 6.0, when I am trying to activate the multiple use check box ( For multiple implementation of BADI ) , it is not allowed me the same.
    Throwing the error as - interface IF_EX_TAX1_XTXIT_SET can not be used.
    BADI name - BADI_TAX1_XTXIT_SET
    Can anyone pls help me how to do this.
    Thanks,
    Shakti

    Hello Sakti,
    I am also in ECC6.0 & if i see the definition of the BAdI BADI_TAX1_XTXIT_SET, "Multiple Use" checkbox is checked! What are you trying to do - trying to create an implementation?
    @Prabhu: Although the BAdI is "multiple-use", but there is not filter applied to it. Next time do your checks properly before replying
    BR,
    Suhas

  • My location services is already on as well as with my facebook apps, but still i am unable to check in. what's wrong? even with my maps, it always say location unavailable. help please.

    my location services is already on as well as with my facebook apps, but still i am unable to check in. what's wrong? even with my maps, it always say location unavailable. help please.

    - The iPod uses the location of a nerby or connected router to determine it location based on a database of routers and their location. It appears that the routers near y are not in Appl'es database.  As of yet, nobody here seems to know how to get routers added to the database.
    - If you go to Strtbucks. McDonalds or another networks does the location show in the Maps app?

  • Restful service unable to insert data using PL/SQL.

    Hi all,
    Am running: AL 2.01 standalone mode on OEL 4.8 in VM box A.
    Oracle database 10.2.0.4 with Apex 4.2.0.00.27 on OEL4.8 in VM box B.
    Able to performed oracle.example.hr Restful services with no problem.
    Unable to insert data using AL 2.0.1 but works on AL 1.1.4.
    which uses the following table (under schema: scott):
    create table json_demo ( title varchar2(20), description varchar2(1000) );
    grant all on json_demo to apex_public_user; and below procedure ( scott's schema ):
    CREATE OR REPLACE
    PROCEDURE post(
        p_url     IN VARCHAR2,
        p_message IN VARCHAR2,
        p_response OUT VARCHAR2)
    IS
      l_end_loop BOOLEAN := false;
      l_http_req utl_http.req;
      l_http_resp utl_http.resp;
      l_buffer CLOB;
      l_data       VARCHAR2(20000); 
      C_USER_AGENT CONSTANT VARCHAR2(4000) := 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)';
    BEGIN
      -- source: http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
      -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
      -- rather than just returning the text of the error page.
      utl_http.set_response_error_check(false);
      -- Begin the post request
      l_http_req := utl_http.begin_request (p_url, 'POST', utl_http.HTTP_VERSION_1_1);
      -- Set the HTTP request headers
      utl_http.set_header(l_http_req, 'User-Agent', C_USER_AGENT);
      utl_http.set_header(l_http_req, 'content-type', 'application/json;charset=UTF-8');
      utl_http.set_header(l_http_req, 'content-length', LENGTH(p_message));
      -- Write the data to the body of the HTTP request
      utl_http.write_text(l_http_req, p_message);
      -- Process the request and get the response.
      l_http_resp := utl_http.get_response (l_http_req);
      dbms_output.put_line ('status code: ' || l_http_resp.status_code);
      dbms_output.put_line ('reason phrase: ' || l_http_resp.reason_phrase);
      LOOP
        EXIT
      WHEN l_end_loop;
        BEGIN
          utl_http.read_line(l_http_resp, l_buffer, true);
          IF(l_buffer IS NOT NULL AND (LENGTH(l_buffer)>0)) THEN
            l_data    := l_data||l_buffer;
          END IF;
        EXCEPTION
        WHEN utl_http.end_of_body THEN
          l_end_loop := true;
        END;
      END LOOP;
      dbms_output.put_line(l_data);
      p_response:= l_data;
      -- Look for client-side error and report it.
      IF (l_http_resp.status_code >= 400) AND (l_http_resp.status_code <= 499) THEN
        dbms_output.put_line('Check the URL.');
        utl_http.end_response(l_http_resp);
        -- Look for server-side error and report it.
      elsif (l_http_resp.status_code >= 500) AND (l_http_resp.status_code <= 599) THEN
        dbms_output.put_line('Check if the Web site is up.');
        utl_http.end_response(l_http_resp);
        RETURN;
      END IF;
      utl_http.end_response (l_http_resp);
    EXCEPTION
    WHEN OTHERS THEN
      dbms_output.put_line (sqlerrm);
      raise;
    END; and executing in sqldeveloper 3.2.20.09 when connecting directly to box B as scott:
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585/apex/demo';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;which resulted in :
    anonymous block completed
    status code: 200
    reason phrase: OK
    with data inserted. Setup using 2.0.1
       Workspace : wsdemo
    RESTful Service Module:  demo/
              URI Template:      test
                    Method:  POST
               Source Type:  PL/SQLand executing in sqldeveloper 3.2.20.09 when connecting directly to box B as scott:
    SET serveroutput ON
    DECLARE
      l_url      VARCHAR2(200)   :='http://MY_IP:8585//apex/wsdemo/demo/test';
      l_json     VARCHAR2(20000) := '{"title":"thetitle","description":"thedescription"}';
      l_response VARCHAR2(30000);
    BEGIN
      post( p_url => l_url, p_message =>l_json, p_response => l_response);
    END;which resulted in :
    status code: 500
    reason phrase: Internal Server Error
    Listener's log:
    Request Path passes syntax validation
    Mapping request to database pool: PoolMap [_poolName=apex, _regex=null, _workspaceIdentifier=WSDEMO, _failed=false, _lastUpdate=1364313600000, _template=/wsdemo/, _type=BASE_PATH]
    Applied database connection info
    Attempting to process with PL/SQL Gateway
    Not processed as PL/SQL Gateway request
    Attempting to process as a RESTful Service
    demo/test matches: demo/test score: 0
    Choosing: oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as current candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true]
    Determining if request can be dispatched as a Tenanted RESTful Service
    Request path has one path segment, continuing processing
    Tenant Principal already established, cannot dispatch
    Chose oracle.dbtools.rt.resource.templates.jdbc.JDBCResourceTemplateDispatcher as the final candidate with score: Score [handle=JDBCURITemplate [scopeId=null, templateId=2648625079503782|2797815111031405, uriTemplate=demo/test], score=0, scope=SecurityConfig [constraint=none, realm=NONE, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true] for: POST demo/test
    demo/test is a public resource
    Using generator: oracle.dbtools.rt.plsql.AnonymousBlockGenerator
    Performing JDBC request as: SCOTT
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: Error occurred during execution of: [CALL, begin
    insert into scott.json_demo values(/*in:title*/?,/*in:description*/?);
    end;, [title, in, class oracle.dbtools.common.stmt.UnknownParameterType], [description, in, class oracle.dbtools.common.stmt.UnknownParameterType]]with values: [thetitle, thedescription]
    Mar 28, 2013 1:29:28 PM oracle.dbtools.common.jdbc.JDBCCallImpl execute
    INFO: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
    java.sql.SQLException: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-id
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:505)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:223)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
            at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:205)
            at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1043)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1336)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3612)
            at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3713)
            at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4755)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1378)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:242)
            at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
            at oracle.ucp.jdbc.proxy.CallableStatementProxyFactory.invoke(CallableStatementProxyFactory.java:101)
            at $Proxy46.execute(Unknown Source)
            at oracle.dbtools.common.jdbc.JDBCCallImpl.execute(JDBCCallImpl.java:44)
            at oracle.dbtools.rt.plsql.AnonymousBlockGenerator.generate(AnonymousBlockGenerator.java:176)
            at oracle.dbtools.rt.resource.templates.v2.ResourceTemplatesDispatcher$HttpResourceGenerator.response(ResourceTemplatesDispatcher.java:309)
            at oracle.dbtools.rt.web.RequestDispatchers.dispatch(RequestDispatchers.java:88)
            at oracle.dbtools.rt.web.HttpEndpointBase.restfulServices(HttpEndpointBase.java:412)
            at oracle.dbtools.rt.web.HttpEndpointBase.service(HttpEndpointBase.java:162)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.doFilter(ServletAdapter.java:1059)
            at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.invokeFilterChain(ServletAdapter.java:999)
            at com.sun.grizzly.http.servlet.ServletAdapter.doService(ServletAdapter.java:434)
            at oracle.dbtools.standalone.SecureServletAdapter.doService(SecureServletAdapter.java:65)
            at com.sun.grizzly.http.servlet.ServletAdapter.service(ServletAdapter.java:379)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapterChain.service(GrizzlyAdapterChain.java:196)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
            at java.lang.Thread.run(Thread.java:662)
    Error during evaluation of resource template: ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with <an identifier>
       <a double-quoted delimited-identifier> <a bind variable> <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
       <an identifier> <a double-quoted delimited-idPlease advise.
    Regards
    Zack

    Zack.L wrote:
    Hi Andy,
    Sorry, forgot to post the Source that's use by both AL1.1.4 and AL2.0.1.
    Source
    begin
    insert into scott.json_demo values(:title,:description);
    end;
    it's failing during the insert?
    Yes, it failed during insert using AL2.0.1.
    So the above statement produces the following error message:
    The symbol "" was ignored.
    ORA-06550: line 2, column 74:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    <an identifier> <a double-quoted delimited-idThis suggests to me that an unprintable character (notice how there is nothing between the double quotes - "") has worked its way into your PL/SQL Handler. Note how the error is reported to be a column 74 on line 2, yet line 2 of the above block should only have 58 characters, so at a pure guess somehow there's extra whitespace on line 2, that is confusing the PL/SQL compiler, I suggest re-typing the PL/SQL handler manually and seeing if that cures the problem.

  • "Unable to Check Out File Error" Message

    I'm new to using Adobe products, so forgive me if this is a dumb question! My graphic designer sent me a INDD file to edit the text in and when I try to open it in both InDesign and InCopy, I receive an "Unable to Check Out this File" error message. I just downloaded InDesign CC and InCopy CC (the free trial versions). She said that all settings on her end should allow me to view it. Any help is much appreciated!
    Thank you!

    I've just experienced the same error message in CS4. I got rid of it by going to the Links panel, selecting all the links to Incopy, and Unlinking.

  • PC Users are unable to check Outlook while my (mac) Mail is open

    Ever since I upgraded to 10.4, whenever I have my Mail application open, the PC users are unable to check their IMAP mail through Outlook. The PC Users and myself are all using different accounts, but are checking the same server.
    At first, this seemed like it was a coincidence... but then I shut my powerbook and they could check their again. I have to use a web mail client to check my email when I am on the network at work.
    Any ideas to resolve this issue? Mail is set to check every 5 minutes.

    AA8 and AA9 allow Reader Rights so the user can save the form. This is restricted by the license to 500 uses. In the long run, the only advantage of the Reader Rights is for your users, not for you. You can always import the data into the form and have the same result as they had in the form. It is not necessary to transmit the full form to you, only the data. If you were developing a web form that would likely exceed the 500 uses, you would have to negotiate a price with Adobe for Reader Rights (thousands of $$ should be expected).
    If saving is important in a company environment, not online, then you may want to read the EULA carefully as to the exceptions. You will still have to have at least AA8.
    I guess the printing problem was answered.

  • Unable to edit document using "Edit with Word" option

    Hi All,
    i am having an issue with Office web apps. i am using SharePoint 2013 and Office web apps 2013. all the configurations have been done successfully. but i have a different kind of issue.
    i am able to open documents in browser
    i am able to edit document using " edit with word/excel web" option
    but i am unable to edit document using "edit with word/excel" option
    i have Office 2010 installed on my local machine.
    do we need to have MS office of 2013 version? or is there anything missing from configuration part.
    Please help me.
    Thank You,
    Bhaskar.

    Hi,
    According to your post, my understanding is that you could not use the "edit with word/excel" option.
    I had tested the issue with the Office 2010, the option worked well.
    You don’t need to install the Office 2013 to use this option.
    What did you mean “but i am unable to edit document using "edit with word/excel" option
    Did you mean the option gray out? Did the issue occur in other browsers?
    You can use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    You can also add the site into Trusted sites.
    Open the IE->Internet Options->Security->Sites->add the site into the Websites, then check whether it works.
    What's more, you can also use other browsers to check whether it works, such as Firefox, Chrome.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Unable to check mark whole playlists to play since last update.  ONly allows me to check one at a time.  How do I fix?

    While in MY MUSIC on itunes, all my music is unchecked.  I can not check whole playlists by using the top checkmark to select all.  I went to all my playlists, same thing.  I can only press them ONE at a time, which will take about a day to check all of them. 
    any ideas?  anyone have same problem?  This just happened since last update.

    I exactly have the same problem as this "Unable to check mark whole playlists to play since last update.  ONly allows me to check one at a time.  How do I fix?" I have a windows7. Please help.

  • "Unable to check revocation" error while checking CDP from non-domain user account

    Hi!
    I use 3-tier PKI infrastructure:
    Stand-alone offline Root CA: RootCA;
    Stand-alone offline Intermediate subordinate CA: SubCA;
    Enterprise CA: EntSubCA.
    In certificate we have three CDP point for CRL check:
    ldap:///, http:// and file://
    I have Windows 2008 R2 server joined to domain.
    I use command certutil –verify –urlfetch <filename.cer> >check.txt for revocation checking of certificate.
    When I use domain user account for revocation checking, all OK.
    I have access to any CDP and all fine.
    But when i use local server user account, I haven't access to ldap:/// and process failed although all other links is OK.
    My question is "why check fail with non-domain user accout while other CDP point succesfully verifed"?
    Here is the logfile from local user:
    Issuer:
    CN=EntSubCA
    DC=DED
    DC=ROOT
    Subject:
    CN=servername.domain_name
    Cert Serial Number: 5a896145000300006ee2
    dwFlags = CA_VERIFY_FLAGS_ALLOW_UNTRUSTED_ROOT (0x1)
    dwFlags = CA_VERIFY_FLAGS_IGNORE_OFFLINE (0x2)
    dwFlags = CA_VERIFY_FLAGS_FULL_CHAIN_REVOCATION (0x8)
    dwFlags = CA_VERIFY_FLAGS_CONSOLE_TRACE (0x20000000)
    dwFlags = CA_VERIFY_FLAGS_DUMP_CHAIN (0x40000000)
    ChainFlags = CERT_CHAIN_REVOCATION_CHECK_CHAIN (0x20000000)
    HCCE_LOCAL_MACHINE
    CERT_CHAIN_POLICY_BASE
    -------- CERT_CHAIN_CONTEXT --------
    ChainContext.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    ChainContext.dwErrorStatus = CERT_TRUST_REVOCATION_STATUS_UNKNOWN (0x40)
    ChainContext.dwErrorStatus = CERT_TRUST_IS_OFFLINE_REVOCATION (0x1000000)
    ChainContext.dwRevocationFreshnessTime: 5 Days, 23 Hours, 15 Minutes, 48 Seconds
    SimpleChain.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    SimpleChain.dwErrorStatus = CERT_TRUST_REVOCATION_STATUS_UNKNOWN (0x40)
    SimpleChain.dwErrorStatus = CERT_TRUST_IS_OFFLINE_REVOCATION (0x1000000)
    SimpleChain.dwRevocationFreshnessTime: 5 Days, 23 Hours, 15 Minutes, 48 Seconds
    CertContext[0][0]: dwInfoStatus=102 dwErrorStatus=1000040
    Issuer: CN=EntSubCA, DC=DED, DC=ROOT
    NotBefore: 05.02.2015 20:03
    NotAfter: 05.02.2016 20:03
    Subject: CN=servername.domain_name
    Serial: 5a896145000300006ee2
    SubjectAltName: DNS Name=servername.domain_name
    Template: Machine
    70 e4 6b 16 05 a1 62 e3 6d 24 96 ff 44 74 ee a2 3e ce df 18
    Element.dwInfoStatus = CERT_TRUST_HAS_KEY_MATCH_ISSUER (0x2)
    Element.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    Element.dwErrorStatus = CERT_TRUST_REVOCATION_STATUS_UNKNOWN (0x40)
    Element.dwErrorStatus = CERT_TRUST_IS_OFFLINE_REVOCATION (0x1000000)
    ---------------- Certificate AIA ----------------
    Failed "AIA" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    ldap:///CN=EntSubCA,CN=AIA,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?cACertificate?base?objectClass=certificationAuthority
    Verified "Certificate (0)" Time: 0
    [1.0] file://\\ca\crl\EntSubCA.crt
    Verified "Certificate (0)" Time: 4
    [2.0] http://webserver/crl/EntSubCA.crt
    ---------------- Certificate CDP ----------------
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?certificateRevocationList?base?objectClass=cRLDistributionPoint
    Verified "Base CRL (018d)" Time: 0
    [1.0] file://\\ca\crl\EntSubCA.crl
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    [1.0.0] ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?deltaRevocationList?base?objectClass=cRLDistributionPoint
    Old Base CRL "Delta CRL (018d)" Time: 0
    [1.0.1] file://\\ca\crl\EntSubCA.crl
    Old Base CRL "Delta CRL (018d)" Time: 4
    [1.0.2] http://webserver/crl/EntSubCA.crl
    Verified "Base CRL (018d)" Time: 4
    [2.0] http://webserver/crl/EntSubCA.crl
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    [2.0.0] ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?deltaRevocationList?base?objectClass=cRLDistributionPoint
    Old Base CRL "Delta CRL (018d)" Time: 0
    [2.0.1] file://\\ca\crl\EntSubCA.crl
    Old Base CRL "Delta CRL (018d)" Time: 4
    [2.0.2] http://webserver/crl/EntSubCA.crl
    ---------------- Base CRL CDP ----------------
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?deltaRevocationList?base?objectClass=cRLDistributionPoint
    OK "Base CRL (018d)" Time: 0
    [1.0] file://\\ca\crl\EntSubCA.crl
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    [1.0.0] ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?deltaRevocationList?base?objectClass=cRLDistributionPoint
    Old Base CRL "Delta CRL (018d)" Time: 0
    [1.0.1] file://\\ca\crl\EntSubCA.crl
    Old Base CRL "Delta CRL (018d)" Time: 4
    [1.0.2] http://webserver/crl/EntSubCA.crl
    OK "Base CRL (018d)" Time: 4
    [2.0] http://webserver/crl/EntSubCA.crl
    Failed "CDP" Time: 0
    Error retrieving URL: Logon failure: unknown user name or bad password. 0x8007052e (WIN32: 1326)
    [2.0.0] ldap:///CN=EntSubCA,CN=ca,CN=CDP,CN=Public%20Key%20Services,CN=Services,CN=Configuration,DC=DED,DC=ROOT?deltaRevocationList?base?objectClass=cRLDistributionPoint
    Old Base CRL "Delta CRL (018d)" Time: 0
    [2.0.1] file://\\ca\crl\EntSubCA.crl
    Old Base CRL "Delta CRL (018d)" Time: 4
    [2.0.2] http://webserver/crl/EntSubCA.crl
    ---------------- Certificate OCSP ----------------
    No URLs "None" Time: 0
    CRL 018d:
    Issuer: CN=EntSubCA, DC=DED, DC=ROOT
    33 af 4d be 0e 35 45 94 bc 8b 3f d9 c1 60 e7 0c c4 83 17 b6
    Application[0] = 1.3.6.1.5.5.7.3.2 Client Authentication
    Application[1] = 1.3.6.1.5.5.7.3.1 Server Authentication
    CertContext[0][1]: dwInfoStatus=102 dwErrorStatus=0
    Issuer: CN=SubCA
    NotBefore: 13.11.2014 19:12
    NotAfter: 13.11.2017 19:22
    Subject: CN=EntSubCA, DC=DED, DC=ROOT
    Serial: 6109015b000100000008
    Template: SubCA
    9b 04 17 9f c5 fe 52 ca a5 58 49 6c c6 18 fa db 13 b3 92 9e
    Element.dwInfoStatus = CERT_TRUST_HAS_KEY_MATCH_ISSUER (0x2)
    Element.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    ---------------- Certificate AIA ----------------
    Failed "AIA" Time: 0
    Error retrieving URL: The network path was not found. 0x80070035 (WIN32: 53)
    file://\\sub_ca\CertEnroll\sub_ca_SubCA(1).crt
    Verified "Certificate (0)" Time: 0
    [1.0] file://\\ca\crl\SubCA.crt
    Verified "Certificate (0)" Time: 4
    [2.0] http://webserver/crl/SubCA.crt
    ---------------- Certificate CDP ----------------
    Verified "Base CRL (32)" Time: 0
    [0.0] file://\\ca\crl\SubCA.crl
    Verified "Base CRL (32)" Time: 4
    [1.0] http://webserver/crl/SubCA.crl
    ---------------- Base CRL CDP ----------------
    No URLs "None" Time: 0
    ---------------- Certificate OCSP ----------------
    No URLs "None" Time: 0
    CRL 32:
    Issuer: CN=SubCA
    8d a9 9d 51 65 a3 8e 77 02 22 40 57 62 70 e8 f6 c5 2e 60 1e
    CertContext[0][2]: dwInfoStatus=102 dwErrorStatus=0
    Issuer: CN=RootCA
    NotBefore: 28.05.2008 12:09
    NotAfter: 28.05.2058 12:19
    Subject: CN=SubCA
    Serial: 616bd19f000100000004
    Template: SubCA
    06 d2 47 e7 dc 8f a7 97 a2 b8 c3 92 03 19 24 0c 47 45 22 14
    Element.dwInfoStatus = CERT_TRUST_HAS_KEY_MATCH_ISSUER (0x2)
    Element.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    ---------------- Certificate AIA ----------------
    Verified "Certificate (0)" Time: 0
    [0.0] file://\\ca\crl\RootCA.crt
    Verified "Certificate (0)" Time: 4
    [1.0] http://webserver/crl/RootCA.crt
    ---------------- Certificate CDP ----------------
    Verified "Base CRL (1c)" Time: 4
    [0.0] http://webserver/crl/RootCA.crl
    Verified "Base CRL (1c)" Time: 0
    [1.0] file://\\ca\crl\RootCA.crl
    ---------------- Base CRL CDP ----------------
    No URLs "None" Time: 0
    ---------------- Certificate OCSP ----------------
    No URLs "None" Time: 0
    CRL 1c:
    Issuer: CN=RootCA
    dc 98 2f 8d 16 9c 64 6e b2 74 89 95 9a 6c 1b 77 fd 58 63 fb
    CertContext[0][3]: dwInfoStatus=10c dwErrorStatus=0
    Issuer: CN=RootCA
    NotBefore: 27.05.2008 16:10
    NotAfter: 27.05.2110 16:20
    Subject: CN=RootCA
    Serial: 258de6fbd3bbab92460530e9e9f10536
    5d e4 56 38 13 0a 52 aa 66 51 25 61 19 33 c9 d7 a2 c7 dd 38
    Element.dwInfoStatus = CERT_TRUST_HAS_NAME_MATCH_ISSUER (0x4)
    Element.dwInfoStatus = CERT_TRUST_IS_SELF_SIGNED (0x8)
    Element.dwInfoStatus = CERT_TRUST_HAS_PREFERRED_ISSUER (0x100)
    ---------------- Certificate AIA ----------------
    Verified "Certificate (0)" Time: 0
    [0.0] file://\\ca\crl\RootCA.crt
    Verified "Certificate (0)" Time: 4
    [1.0] http://webserver/crl/RootCA.crt
    ---------------- Certificate CDP ----------------
    Verified "Base CRL (1c)" Time: 0
    [0.0] file://\\ca\crl\RootCA.crl
    Verified "Base CRL (1c)" Time: 4
    [1.0] http://webserver/crl/RootCA.crl
    ---------------- Base CRL CDP ----------------
    No URLs "None" Time: 0
    ---------------- Certificate OCSP ----------------
    No URLs "None" Time: 0
    CRL 1c:
    Issuer: CN=RootCA
    dc 98 2f 8d 16 9c 64 6e b2 74 89 95 9a 6c 1b 77 fd 58 63 fb
    Issuance[0] = 1.2.700.113556.1.4.7000.233.28688.7.167403.1102261.1593578.2302197.1
    Exclude leaf cert:
    5b 8d 96 39 f8 a3 6f af f3 89 bc 8d 78 e2 da 53 21 b8 ff aa
    Full chain:
    ca 99 30 47 9b ad ab ce 97 cc 70 80 a5 4e 11 b3 1a 83 98 78
    Verified Issuance Policies: None
    Verified Application Policies:
    1.3.6.1.5.5.7.3.2 Client Authentication
    1.3.6.1.5.5.7.3.1 Server Authentication
    ERROR: Verifying leaf certificate revocation status returned The revocation function was unable to check revocation because the revocation server was offline. 0x80092013 (-2146885613)
    CertUtil: The revocation function was unable to check revocation because the revocation server was offline.
    CertUtil: -verify command completed successfully.

    What you have discovered is the reason to *not* use LDAP URLs for CDP and AIA extensions in your PKI. To access those URLs, the account must access to the URLs. In your output, it is quite clear that the local account does not have necessary permissions
    (you also use FILE URLs for publication, which again is not recommended).
    The best practice is to use a single URL for the CDP extension. It should be an HTTP URL that is hosted on a highly available (internally and externally accessible) Web cluster.
    For the AIA extension, it should contain two URLs: one for the CA certificate - again to an internally and externally accessible, highly available Web cluster and one for the OCSP service - also
    an internally and externally accessible, highly available Web cluster.
    the other issue is that the root CA is *not* trusted when run by a non-domain account. How are you adding the trusted root CA. It is recommended to do this by running
    certutil -dspublish -f RootCA.crt.
    This will ensure that the computer account trusts the root CA. In your output, the root CA certificate is not trusted.
    Brian

  • Certificate issues Active Directory Certificate Services could not process request 3699 due to an error: The revocation function was unable to check revocation because the revocation server was offline. 0x80092013

    Hi,
    We have some problems with our Root CA. I can se a lot of failed requests. with the event id 22: in the logs. The description is: Active Directory Certificate Services could not process request 3686 due to an error: The revocation function was unable to
    check revocation because the revocation server was offline. 0x80092013 (-2146885613).  The request was for CN=xxxxx.ourdomain.com.  Additional information: Error Verifying Request Signature or Signing Certificate
    A couple of months ago we decomissioned one of our old 2003 DCs and it looks like this server might have had something to do with the CA structure but I am not sure whether this was in use or not since I could find the role but I wasn't able to see any existing
    configuration.
    Let's say that this server was previously responsible for the certificates and was the server that should have revoked the old certs, what can I do know to try and correct the problem?
    Thank you for your help
    //Cris

    hello,
    let me recap first:
    you see these errors on a ROOT CA. so it seems like the ROOT CA is also operating as an ISSUING CA. Some clients try to issue a new certificate from the ROOT CA and this fails with your error mentioned.
    do you say that you had a PREVIOUS CA which you decomissioned, and you now have a brand NEW CA, that was built as a clean install? When you decommissioned the PREVIOUS CA, that was your design decision to don't bother with the current certificates that it
    issued and which are still valid, right?
    The error says, that the REQUEST signature cannot be validated. REQUESTs are signed either by itself (self-signed) or if they are renewal requests, they would be signed with the previous certificate which the client tries to renew. The self-signed REQUESTs
    do not contain CRL paths at all.
    So this implies to me as these requests that are failing are renewal requests. Renewal requests would contain CRL paths of the previous certificates that are nearing their expiration.
    As there are many such REQUEST and failures, it probably means that the clients use AUTOENROLLMENT, which tries to renew their current, but shortly expiring, certificates during (by default) their last 6 weeks of lifetime.
    As you decommissioned your PREVIOUS CA, it does not issue CRL anymore and the current certificates cannot be checked for validity.
    Thus, if the renewal tries to renew them by using the NEW CA, your NEW CA cannot validate CRL of the PREVIOUS CA and will not issue new certificates.
    But it would not issue new certificates anyway even if it was able to verify the PREVIOUS CA's CRL, as it seems your NEW CA is completely brand new, without being restored from the PREVIOUS CA's database. Right?
    So simply don't bother :-) As long as it was your design to decommission the PREVIOUS CA without bothering with its already issued certificates.
    The current certificates which autoenrollment tries to renew cannot be checked for validity. They will also slowly expire over the next 6 weeks or so. After that, autoenrollment will ask your NEW CA to issue a brand new certificate without trying to renew.
    Just a clean self-signed REQUEST.
    That will succeed.
    You can also verify this by trying to issue a certificate on an affected machine manually from Certificates MMC.
    ondrej.

  • Unable to convert PO using ME59N

    Hi,
    I unable to create PO using ME59N,it show"No suitable purchase requisition found"
    Below is the information:
    PR type :NB,acc.assignment K,item category D
    Source of supply is contract
    PR and Contract already released
    Vendor master - purchasing data - "Automatic PO" is ticked
    It working fine for PR with acc assignment K and is there any special setting need to be done with item category D?
    Thank you

    Is the #Automatic order allowed# indicator set with the purchase requisition for services in Customizing on client level and on the #Purchasing organization# level?
    if you have problems with automatic PO creation, then see OSS Note 786303 - Analysis report RM06ME59 PReq check
    It has a report ZRM06ME59  attached that helps you to find the problem

  • I need help! "Unable to check for purchases" for over a month!!!

    I have been getting the same error message for over a month! Every time I try to check for purchases from the iTunes Store, I get a message saying: "Unable to check for purchases. The network connection timed out." I have 269 items waiting to be downloaded. I am SUPER frustrated, I contacted iTunes customer service twice now, the first time with no response and the second time the response I received didn't help any, I followed up to their answer, again with no response!! I really would like to download these items (most of which I paid for; some were free downloads...). I think this may have happened to me before when my computer crashed and I need to redownload everything from iTunes. I think there is just too many items to download all at once, but they won't even come up in my iTunes, so that I can download them a smaller number at a time! I also had a hard drive failure on my laptop about a week and a half ago (after this problem had already been occuring), and I'm pretty sure any of the items pending downloading that had already begun downloading and was stopped suddenly (a few; maybe a third of what is awaiting downloading...), those items' temporary files were deleted. Could this be causing a problem as well? I've read maybe trying to check for purchases at a less busy time of the day, really early in the morning, or really late at night...Will this work?? I've tried nearly 100 times repeatedly from 8-close to midnight since this has been occuring. I just want the items I paid for. I have been waiting for far too long. I've tried everything suggested and I don't know what else to do!!

    First off, make sure Norton isn't blocking iTS access
    Here are Norton directions
    http://service1.symantec.com/SUPPORT/nip.nsf/0/7fb6e478e2a1abf78825708b00558625? OpenDocument&seg=hm&lg=en&ct=us
    Secondly, you're the third or 4th person to post here that having hundreds of downloads cuases problems.
    Contact iTS again, using the email they already sent. Don't start a new ticket.
    Give them the URL of this topic, and ask them to reduce the number of items in your download queue. The magic number mentioned in the other thread was 69 downloads didn't cause a problem. (Apparently, 70 does)
    Message was edited by: Katrina S.

  • "Unable to check out" error message in CS4

    I have InDesign CS4, but do not have InCopy. When I exported an InDesign CS4 file to CS3 interchange format, and then tried to edit the orginal file, I got an error message saying: "Unable to check out this file. It may be in use by someone else." From reading the documentation, it appears that I inadvertently engaged a feature of InCopy, but when  I go to the Edit->InCopy menu, the option to check the file back in is greyed out. How do I check the file back in so that I can edit it?

    I've just experienced the same error message in CS4. I got rid of it by going to the Links panel, selecting all the links to Incopy, and Unlinking.

  • Not able to complete project in BCC - Unable to check in workspace

    Hi,
    I am using ATG 10.0.3p1. When I am doing 'Accept Production deployment' getting below exception.
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager Error executing action checkInProject[] on process instance 7200002; reverting the process instance to its original state CONTAINER:atg.process.ProcessException; SOURCE:atg.versionmanager.exceptions.VersionException: Unable to check in workspace epub-prj82001.
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.epub.workflow.process.action.CheckinProject.executeAction(CheckinProject.java:81)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.action.ActionImpl.execute(ActionImpl.java:397)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.executeAction(ProcessManagerService.java:13965)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.takeIndividualTransition(ProcessManagerService.java:13372)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.takeIndividualTransition(ProcessManagerService.java:13417)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.receiveIndividualEventMessage(ProcessManagerService.java:11842)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.receiveIndividualEventMessage(ProcessManagerService.java:11537)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.receiveMessage(ProcessManagerService.java:11347)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.process.ProcessManagerService.receiveMessage(ProcessManagerService.java:11305)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.ElementManager.deliverMessage(ElementManager.java:294)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.InputPort.onMessage(InputPort.java:168)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.InputDestination.onMessage(InputDestination.java:375)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.local.MessageConsumerImpl.deliverMessage(MessageConsumerImpl.java:274)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.local.TopicImpl.deliverToRecipients(TopicImpl.java:91)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.local.DestinationImpl.deliverMessage(DestinationImpl.java:238)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.local.TopicPublisherImpl.publish(TopicPublisherImpl.java:141)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.OutputDestination.sendMessage(OutputDestination.java:181)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.OutputPort.sendMessage(OutputPort.java:140)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.dms.patchbay.ElementManager.sendMessage(ElementManager.java:363)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.nucleus.dms.DASMessageSource.fireObjectMessage(DASMessageSource.java:209)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.nucleus.dms.DASMessageSource.fireObjectMessage(DASMessageSource.java:172)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.workflow.WorkflowMessageSource.fireWorkflowMessage(WorkflowMessageSource.java:228)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.workflow.WorkflowMessageSource.fireTaskOutcomeMessage(WorkflowMessageSource.java:134)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.workflow.WorkflowViewImpl.fireTaskOutcome(WorkflowViewImpl.java:1065)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.epub.servlet.FireWorkflowOutcomeFormHandler.handleFireWorkflowOutcome(FireWorkflowOutcomeFormHandler.java:220)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at vodafone.commerce.catalog.VFWorkflowManagerImpl.handleFireWorkflowOutcome(VFWorkflowManagerImpl.java:315)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at java.lang.reflect.Method.invoke(Method.java:597)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.droplet.EventSender.sendEvent(EventSender.java:582)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.droplet.FormTag.doSendEvents(FormTag.java:800)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.droplet.FormTag.sendEvents(FormTag.java:649)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.droplet.DropletEventServlet.sendEvents(DropletEventServlet.java:566)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:594)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.epub.servlet.LocaleServlet.service(LocaleServlet.java:63)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.epub.servlet.ProjectServlet.service(ProjectServlet.java:87)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.epub.servlet.PublishingSecurityServlet.service(PublishingSecurityServlet.java:58)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.commerce.order.CommerceCommandServlet.service(CommerceCommandServlet.java:128)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.commerce.promotion.PromotionServlet.service(PromotionServlet.java:191)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.userprofiling.AccessControlServlet.service(AccessControlServlet.java:655)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.sessionsaver.SessionSaverServlet.service(SessionSaverServlet.java:2425)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.userprofiling.PageEventTriggerPipelineServlet.service(PageEventTriggerPipelineServlet.java:169)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.multisite.SiteSessionEventTriggerPipelineServlet.service(SiteSessionEventTriggerPipelineServlet.java:139)
    **** Warning Fri Oct 26 20:08:53 IST 2012 1351262333792 /atg/epub/workflow/process/WorkflowProcessManager at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:135)

    It looks like your workflow is corrupted for some reason or may be you have didn't customize it properly.
    Go to ACC and check the workflow if there are any errors in it.
    Otherwise delete the workflow tables and restart the server.'
    Peace
    Shaik

  • N8, Unable to check in or access check in settings...

    Hi, Have been unable to check in via ovi maps. I can not even access the check in settings as it just flashes a box with "system error!" and OK. Have tried factory reset, installed social again and nothing seems to help. Maps does not show in the installed apps so can't delete and reinstall? And if I try just by the icon in the menu it states uninstallation failed
    Device version 011.012
    ovi maps Version v3.06 10wk46b01 map version 0.2.41.123.
    Solved!
    Go to Solution.

    when ya do finally check in,lots of the time,the link it produces just looks like a big mess and doent actually say where youve checked in.when i get home and look on facebook,i delete my check in with embarrassment.

Maybe you are looking for

  • What does this TJ data mean?

    Hello, I am implementing a PDF parser in Objective-C  (using CoreGraphics API's) that will aid in PDF search. I know that the Tj and TJ operators are used for displaying text, and that to retrieve the text information from a page I should be looking

  • Updating in JDBC receiver adapter

    Hi Friends,      I came across in the some sdn blogs, Like JDBC to JDBC scenarios i found that in the receiver JDBC adapter there is no place to write update statement or insert statement.Then how the records get updated in the DB. My actual need is

  • Invoice for perpetual licence product

    I bought a perpetual licence for Lightroom 5 and now i need to receive/download the invoice for fiscal use (with VAT and so on), how can I get it?

  • Validating UNB and UNH segment in EDIFACT using Seeburger BIC

    Hi Experts, Just a small thing if someone can help with. What's happening is if an interchange comes with wrong interchange number in UNB vs UNZ segment BIC is actually rectifying that automatically and it makes the UNZ same as UNB. However I don't w

  • Channel.Call.Failed

    Hi All,      We are using Flex 3 and BlazeDS in my project. I am getting following error when user performs some backend calls. After some time we are not getting any error for the same backend call. It is happening very randomly fault = (mx.rpc::Fau