With sqlserver - The cursor identifier value provided (abcdef0) is not valid.

With the Microsoft SQL Server 2000 JDBC Driver I keep getting the following
exception from kodo:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]sp_
cursorclose: The cursor identifier value provided (abcdef0) is not valid.
at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown
Source)
in kodo.properties i have
javax.jdo.option.ConnectionURL
set to
jdbc:microsoft:sqlserver://BALT-DB1:1433;DatabaseName=db_mamick;SelectMethod
=cursor
I am using kodo 2.4.1
Has anyone seen this?
Thanks
-Marc

Tele-
This is just a warning that is issued when we clean up the ResultSet.
The MS driver seems to be prematurly closing them for some reason.
Is this causeing an error for you? Otherwise, you can just ignore the
warning. You can set the logging level for JDBC to be "ERROR" in order
to stop the error message from being logged.
In article <[email protected]>, Tele wrote:
I'm using the MS JDBC driver i downloaded 3 days ago from MSDN. And i got
the exactly same message like Marc
my program:
import java.io.*;
import java.util.*;
import javax.jdo.*;
public class KodoConn {
public KodoConn() {
try {
Properties props = new Properties();
props.load(getClass().getResourceAsStream("/kodo.properties"));
PersistenceManagerFactory pmf =
JDOHelper.getPersistenceManagerFactory(props);
PersistenceManager pm = pmf.getPersistenceManager();
Extent e = pm.getExtent(Animal.class, true);
for (Iterator i = e.iterator(); i.hasNext(); ) {
Animal temp = (Animal) i;
System.out.println(temp.getPrice() + " " + temp.getType());
catch (IOException ex) {
public static void main(String[] args) {
KodoConn kodo = new KodoConn();
com.solarmetric.kodo.ConnectionProperties=
com.solarmetric.kodo.DataCacheClass=
com.solarmetric.kodo.LicenseKey=505152535454555647
com.solarmetric.kodo.PersistenceManagerClass=com.solarmetric.kodo.runtime.Pe
rsistenceManagerImpl
com.solarmetric.kodo.impl.jdbc.DictionaryClass=com.solarmetric.kodo.impl.jdb
c.schema.dict.SQLServerDictionary
com.solarmetric.kodo.impl.jdbc.SQLExecutionListenerClass=
com.solarmetric.kodo.impl.jdbc.SequenceFactoryClass=com.solarmetric.kodo.imp
l.jdbc.schema.ClassDBSequenceFactory
com.solarmetric.kodo.impl.jdbc.TransactionIsolation=READ_UNCOMMITTED
com.solarmetric.kodo.impl.jdbc.WarnOnPersistentTypeFailure=true
javax.jdo.PersistenceManagerFactoryClass=com.solarmetric.kodo.impl.jdbc.JDBC
PersistenceManagerFactory
javax.jdo.option.ConnectionDriverName=com.microsoft.jdbc.sqlserver.SQLServer
Driver
javax.jdo.option.ConnectionPassword=xxx
javax.jdo.option.ConnectionURL=jdbc\:microsoft\:sqlserver\://xxx\:1433;Datab
aseName\=xxx;SelectMethod\=cursor
javax.jdo.option.ConnectionUserName=xxx
javax.jdo.option.MaxPool=80
javax.jdo.option.MinPool=1
javax.jdo.option.MsWait=5000
javax.jdo.option.Multithreaded=true
0 [main] INFO kodo.Runtime - Starting Kodo JDO version 2.4.1
(kodojdo-2.4.1-20030126-1556) with capabilities: [Enterprise Edition
Features, Standard Edition Features, Lite Edition Features, Query
Extensions, Datacache Plug-in, Statement Batching, Global Transactions,
Developer Tools, Custom Database Dictionaries, Enterprise Databases, Custom
ClassMappings, Custom ResultObjectProviders]
81 [main] INFO kodo.MetaData -
com.solarmetric.kodo.meta.JDOMetaDataParser@39ab89: parsing source:
file:/C:/kodo-jdo-2.4.1/samples/swing/petshop/classes/Animal.jdo
912 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] open:
jdbc:microsoft:sqlserver://xxx:1433;DatabaseName=xxx;SelectMethod=cursor
(xxx)
1102 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] get
[com.solarmetric.datasource.PoolConnection@f0c85e[[requests=0;size=0;max=0;h
its=0;created=0;redundant=0;overflow=0;new=0;leaked=0;unavailable=0]]] from
[com.solarmetric.datasource.DataSourceImpl$SortablePool[min=1; max=80;
size=1; taken=0]]
1222 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] begin
rollback
1222 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] end
rollback 0ms
1222 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] return
[com.solarmetric.datasource.PoolConnection@f0c85e[[requests=0;size=0;max=0;h
its=0;created=0;redundant=0;overflow=0;new=0;leaked=0;unavailable=0]]] to
[com.solarmetric.datasource.DataSourceImpl$SortablePool[min=1; max=80;
size=1; taken=1]]
1392 [main] INFO jdbc.JDBC - Using dictionary class
"com.solarmetric.kodo.impl.jdbc.schema.dict.SQLServerDictionary" to connect
to "Microsoft SQL Server" (version "Microsoft SQL Server 2000 - 8.00.194
(Intel X86)
Aug 6 2000 00:57:48
Copyright (c) 1988-2000 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 3)
") with JDBC driver "SQLServer" (version "2.2.0029")
1453 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] get
[com.solarmetric.datasource.PoolConnection@f0c85e[[requests=0;size=0;max=0;h
its=0;created=0;redundant=0;overflow=0;new=0;leaked=0;unavailable=0]]] from
[com.solarmetric.datasource.DataSourceImpl$SortablePool[min=1; max=80;
size=1; taken=0]]
1453 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
[Microsoft][SQLServer 2000 Driver for JDBC]Database changed to xxx
1453 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]______"________________________________
'xxx'____
1473 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
[Microsoft][SQLServer 2000 Driver for JDBC]Language changed to ________________
1473 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]______"________________________ ________
1613 [main] INFO jdbc.SQL - [ C:15779934; T:9489155; D:15493888 ] preparing
statement <8752113>: SELECT DISTINCT ANIMALX.JDOCLASSX FROM ANIMALX
1623 [main] INFO jdbc.SQL - [ C:15779934; T:9489155; D:15493888 ] executing
statement <8752113>: [reused=1;params={}]
1773 [main] WARN jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] Error
when closing Statement/ResultSet
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]sp_cursorclose: ____________________________________________abcdef0________________
at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown
Source)
at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown
Source)
at com.microsoft.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown
Source)
at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
at com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.closeCursor(Unknown
Source)
at
com.microsoft.jdbc.sqlserver.tds.TDSCursorRequest.completeRowProcessing(Unkn
own Source)
at com.microsoft.jdbc.sqlserver.SQLServerImplResultSet.close(Unknown
Source)
at com.microsoft.jdbc.base.BaseResultSet.close(Unknown Source)
at com.microsoft.jdbc.base.BaseStatement.commonTransitionToState(Unknown
Source)
at com.microsoft.jdbc.base.BaseStatement.close(Unknown Source)
at com.microsoft.jdbc.base.BasePreparedStatement.close(Unknown Source)
at
com.solarmetric.datasource.StatementWrapper.close(StatementWrapper.java:201)
at
com.solarmetric.datasource.PreparedStatementCache$CachePreparedStatement.des
troy(PreparedStatementCache.java:278)
at
com.solarmetric.datasource.PreparedStatementCache$CachePreparedStatement.clo
se(PreparedStatementCache.java:350)
at
com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.close(SQLExecutionMan
agerImpl.java:986)
at
com.solarmetric.kodo.impl.jdbc.ormapping.SubclassProviderImpl.getSubclasses(
SubclassProviderImpl.java:278)
at
com.solarmetric.kodo.impl.jdbc.ormapping.ClassMapping.getPrimaryMappingField
s(ClassMapping.java:1093)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.executeQuery(JDBCSto
reManager.java:704)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCExtent.getResultList(JDBCExtent.j
ava:64)
at
com.solarmetric.kodo.impl.jdbc.runtime.JDBCExtent.getIterator(JDBCExtent.jav
a:46)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.newIterator
(ExtentImpl.java:242)
at serp.util.MultiIterator.setIterator(MultiIterator.java:70)
at serp.util.MultiIterator.hasNext(MultiIterator.java:25)
at
com.solarmetric.kodo.runtime.ExtentImpl$TransactionAwareIterator.hasNext(Ext
entImpl.java:218)
at KodoConn.<init>(KodoConn.java:23)
at KodoConn.main(KodoConn.java:33)
1773 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] begin
rollback
1783 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] end
rollback 10ms
1783 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] return
[com.solarmetric.datasource.PoolConnection@f0c85e[[requests=1;size=0;max=0;h
its=0;created=1;redundant=0;overflow=1;new=1;leaked=0;unavailable=0]]] to
[com.solarmetric.datasource.DataSourceImpl$SortablePool[min=1; max=80;
size=1; taken=1]]
1783 [main] INFO jdbc.JDBC - [ C:15779934; T:9489155; D:15493888 ] get
[com.solarmetric.datasource.PoolConnection@f0c85e[[requests=1;size=0;max=0;h
its=0;created=1;redundant=0;overflow=1;new=1;leaked=0;unavailable=0]]] from
[com.solarmetric.datasource.DataSourceImpl$SortablePool[min=1; max=80;
size=1; taken=0]]
1813 [main] INFO jdbc.SQL - [ C:15779934; T:9489155; D:15493888 ] preparing
statement <2715510>: SELECT t0.JDOIDX, t0.JDOCLASSX, t0.JDOLOCKX, t0.PRICEX,
t0.TYPEX FROM ANIMALX t0
1813 [main] INFO jdbc.SQL - [ C:15779934; T:9489155; D:15493888 ] executing
statement <2715510>: [reused=1;params={}]
"Marc Prud'hommeaux" <[email protected]> wrote in message
news:[email protected]...
Marc-
Are you using the lastest version of MS's JDBC driver? I seem to recall
this problem with the beta version of the driver.
If that doesn't help, can you send us the complete stack trace?
In article <[email protected]>, Marc Amick wrote:
With the Microsoft SQL Server 2000 JDBC Driver I keep getting the
following
exception from kodo:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]sp_
cursorclose: The cursor identifier value provided (abcdef0) is notvalid.
atcom.microsoft.jdbc.base.BaseExceptions.createException(Unknown
Source)
in kodo.properties i have
javax.jdo.option.ConnectionURL
set to
jdbc:microsoft:sqlserver://BALT-DB1:1433;DatabaseName=db_mamick;SelectMethod
=cursor
I am using kodo 2.4.1
Has anyone seen this?
Thanks
-Marc
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • How to find the user entered value is Integer or not?

    hi,
    i want to find, whether the user entered value is Integer or not. If it is Integer, i wanna continue the program. otherwise send an error message. i tried to find for function in API. But i couldn't. can somebody help me with sample code. very urgent.

    Do a Integer.parseInt(<string value>) in a try catch block If a NumberFormatException is thrown, the entered number is not an integer.

  • After creating a DVD with music, the pictures all come out fuzzy and not sharp.  Why

    After creating a DVD with music, the pictures all come out fuzzy and not sharp.  I have tried all the options, and nothing works, they all come out fuzzy.   I have wasted about a dozen DVD's

      Have you tried enhancing and sharpening in Premiere Elements before burning to disk?
    What steps are you doing exactly?

  • Hello is there a solution to play some avi formats with quicktime because with all the codec i can play video but not the sound thank you by advance (im on windows 7 so perian cant help me)

    hello is there a solution to play some avi formats with quicktime because with all the codec i can play video but not the sound thank you by advance (im on windows 7 so perian cant help me)

    I did some googling and found alot of topics from you on this issue, to me it simply seems like on of the connectors is broken or loose.

  • XML for Analysis parser: The 'Domain\User' value of the 'EffectiveUserName' XML for Analysis property is not valid.

    hi 
    i have sharepoint 2013 enterprise over sql server 2012 standard, and i want to create some reports trhought excel services and performance point using EffectiveUserName feature, but right actually my environment is not working, when a configure an excel
    to read a SSAS cube from my local machine the rol is ok, but when i published the excel and try to update from Internet Explorer this error is presenting
    XML for Analysis parser: The Domain\User' value of the 'EffectiveUserName' XML for Analysis property is not valid.
    Anybody can helpme is urgent find out for some solution
    thanks a lot

    Turns out that you need the SP Farm service account to be an admin on the SSAS server as well.  That fixed the problem for us.
    MS: Please update your documentation :)

  • CompanyStatus value in CINF is not valid.

    I hope some can help me..
    I was in the process of updating a test system with SAP 2007 A SP00 PL 49, while the database was updating it failed with a error.
    The log reads.
    Logger Started----
    at : 22/10/2009  10:35:38:262375
    22/10/2009  10:35:38:168625        General            NoteLogAlways     ***** Help LOIO: Loading from Resource *****     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=552     TID=3572     d:\depot\BUSMB_B1\SBO\2006A_REL\Application\__Engines\HELP\__HELP.c     127
    22/10/2009  10:35:59:434250        General            Error          CompanyStatus value in CINF is not valid. login faild (the company is not in a consistent state)     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=552     TID=3572     d:\depot\BUSMB_B1\SBO\2006A_REL\Application\ObjMgr\Core\_Application.cpp     2868
    22/10/2009  10:35:59:434250        SystemMessage       Error          The company DB is not consistent. Check the SAP Business One log file for more information.  [Message 131-219]     C:\Program Files\SAP\SAP Business One\SAP Business One.exe     PID=552     TID=3572
    Can anyone tell what needs to be done to fix this and continue the update?
    Thanks,
    Craig

    Hi Craig ,
    Try to upgrade the latest patch level of SAP 2005 and then do the process of upgrade .(precaution measure only)
    By SAP document - you are fine to upgrade  from 2005 SP00 or 2005 Sp01
    You need to run one query before u do the upgrade because to check consistency .
    If the query return no result , you can upgrade with no issue
    I Please refer  SAP Notes1000846 .
    Thank you
    Bishal
    Edited by: BIshal Adhikari on Oct 22, 2009 8:46 AM

  • VPD: Column Level Masking - Error: ORA-28104: input value for sec_relevant_cols is not valid

    Hi Gurus,
    I am trying to mask the secured column from the table for one specified user, Here is the detail of DB and code which I am using to apply the security:
    DB Version: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    Security Function:
    create or replace function kr_sec_function_papf(p_object_schema IN VARCHAR2,
    p_object_name VARCHAR2)
    return varchar2
    as
    p_nid varchar2(200);
    whoami varchar2(100);
    begin
    if SYS_CONTEXT('USERENV', 'SESSION_USER') = 'VPDTEST'
    then
    p_nid := 'national_identifier = national_identifier';
    return (p_nid);
    else
    p_nid := '1=2';
    return (p_nid);
    end if;
    end kr_sec_function_papf;
    Code to Add Policy:
    BEGIN
    DBMS_RLS.ADD_POLICY(
    object_schema => 'APPS',
    object_name => 'PER_ALL_PEOPLE_F',
    policy_name => 'secure_emp',
    policy_function => 'kr_sec_function_papf',
    statement_types => 'SELECT',
    sec_relevant_cols=>'NATIONAL_IDENTIFIER',
    sec_relevant_cols_opt=>DBMS_RLS.ALL_ROWS);
    END;
    I am getting error while executing the above plsql block, Error is:
    ORA-28104: input value for sec_relevant_cols is not valid
    ORA-06512: at "SYS.DBMS_RLS", line 20
    ORA-06512: at line 2
    Any one please help me to resolve the issue.
    Thanks in Advance.
    ~Krishna Nand Singh

    Hi Every one,
    I got this issue resolved.
    The issue is with parameter object_schema => 'APPS' , the object schema name is 'HR' and APPS has synonym with the same name.
    The Correct code should be:
    BEGIN
    DBMS_RLS.ADD_POLICY(
    object_schema => 'HR',
    object_name => 'PER_ALL_PEOPLE_F',
    policy_name => 'secure_emp',
    policy_function => 'kr_sec_function_papf',
    statement_types => 'SELECT',
    sec_relevant_cols=>'NATIONAL_IDENTIFIER',
    sec_relevant_cols_opt=>DBMS_RLS.ALL_ROWS);
    END;
    Thanks,
    Krishna Nand Singh

  • Unable to create foreign key: InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index

    I am running an SQL(CE) script to create a DB. All script commands succeed, but the DB get "broken" after creating the last costaint: after running the script, viewing table properties of Table2 and clicking on "Manage relations" gives the following error: Unable to create foreign key: InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index. Wondering what does that refer to...
    Here it is the script. Please note that no error is thrown by running the following queries (even from code that passing the queries by hand, one-by-one to sql server management studio).
    CREATE TABLE [table1] (
    [id_rubrica] numeric(18,0) NOT NULL
    , [id_campo] numeric(18,0) NOT NULL
    , [nome] nvarchar(100) NOT NULL
    GO
    ALTER TABLE [table1] ADD PRIMARY KEY ([id_rubrica],[id_campo]);
    GO
    CREATE UNIQUE INDEX [UQ__m_campi] ON [table1] ([id_campo] Asc);
    GO
    CREATE TABLE [table2] (
    [id_campo] numeric(18,0) NOT NULL
    , [valore] nvarchar(4000) NOT NULL
    GO
    ALTER TABLE [table2] ADD PRIMARY KEY ([id_campo],[valore]);
    GO
    ALTER TABLE [table2] ADD CONSTRAINT [campo_valoriFissi] FOREIGN KEY ([id_campo]) REFERENCES [table1]([id_campo]);
    GO
    Sid (MCP - http://www.sugata.eu)

    I know this is kind of old post, but did this realy solved your problem?
    I'm getting this same error message after adding a FK constraint via UI on VS2008 Server Explorer.
    I can add the constraint with no errors, but the constraint is not created on the DataSet wizard (strongly typed datasets on Win CE 6) and when I click "Manage Relations" on the "Table Properties" this error pop out:
    "InvalidArgument=Value or '0' is not valid for 'index'.
    Parameter name: index"
    Even after vreating my table with the relation in SQL the same occurs:
    CREATE TABLE pedidosRastreios (
        idPedidoRastreio INT NOT NULL IDENTITY PRIMARY KEY,
        idPedido INT NOT NULL CONSTRAINT FK_pedidosRastreios_pedidos REFERENCES pedidos(idPedido) ON DELETE CASCADE,
        codigo NVARCHAR(20) NOT NULL

  • Index entry error: "The number of Page or Paragraph is not valid."

    I've done plenty of indexes in InDesign, and never seen this.
    After having worked on this index for several days, using plenty of ‘To next use of style’ references, many those references (but not all) have now suddenly reverted to current-page references. When I open the entry and try to change it, or even just click OK with current page selected, I get an error "The number of Page or Paragraph is not valid."
    Has anyone got any idea what causes this and how it can be cured?

    The Cost_of_sales_account & Sales_account as defined in the MTL_PARAMETERS are different from those in MTL_SYSTEM_ITEMS_B for the corresponding item. The values for these accounts in the interface tables are same as that in the MTL_SYSTEM_ITEMS_B table and hence not same as those defined in MTL_PARAMETERS.
    Actually we have a Custom trigger on the MTL_SYSTEM_ITEMS_B table which updates these accounts, once the item is created in the Master Organization.
    To verify this issue, I updated the accounts on the MTL_SYSTEM_ITEMS_INTERFACE table to match with that of MTL_PARAMETERS. Ran the 'Item Import', now those records are processed.
    Does this means that, the Interface is validating the cost_of_sales_account & sales_account to match with that of the 'Organization' ??.
    But we never had this issue in 11i. Is this a part of R12??

  • Cannot install applications because the certificate for .... is not valid

    Hello,
    We have an in house enterprise app that can no longer update.  We have taken the steps outlined here.  These steps include installing a SSL certificate on the server from a trusted CA (GeoTrust) that shows as valid in Safari on OSX.  Also the http to https redirect has been setup and verified in Safari and FireFox.  Addtionally, the plist file's XML has been manually updated to point HTTPS.  New installs work on iOS 7.1 without an issue. 
    However, the program has automatic updates that fail with the message "Cannot install applications because the certificate for .... is not valid".
    The update process works like this:
    A Plist file exists on the server that contains the version number of the build on the server.   The app will download the file and parse it into a NSDictionary then the verison into an NSString.  If the version doesn't match the current version then the user is prompted to install updates.
    When the user says yes to the prompt a UIApplication is sent the Open URL message with a hard coded download URL that looks like this:
    imts-services//?action=download-manifest&url=http://www.example.com/app/Release.plist
    On iOS 7.1 the user will receive the message "Cannot install applications because the certificate for example is not valid".   This error occurs even thought the certificate is valid.  It almost looks like the URL isn't respecing the redirect from the server.
    Has anyone else seen this?  Is there a work around for it?  Or do I have to redeploy the app (with an HTTPS in the hard coded URL)?

    kkoishi, cskimble, OS 7.1 update forced all software installation services to use the HTTPS protocol instead of HTTP. Here is Apache config that adds certificate support and code for changing links in existing *.plist files automatically: http://cases.azoft.com/how-to-fix-certificate-is-not-valid-error-on-ios-7/
    More ideas on Stack: http://stackoverflow.com/questions/20276907/enterprise-app-deployment-doesnt-wor k-on-ios-7-1/22527000#22527000

  • IFS-12635: SimpleXmlParser: Value(10/10/99) not valid for type (Date)

    I am trying to uplaod an xml document sample which has an attribute of date datatype.
    My sample is :
    <?xml version="1.0" standalone="yes"?>
    <document>
    <name> test</name>
    <createdate>1999/03/12</createdate>
    </document>
    I am getting this error:
    IFS-12635: SimpleXmlParser: Value(10/10/99) not valid for type (Date).
    If I input just the "name attribute" value, there is no problem. What is the date format, I should use?
    Please suggest.
    Thank you
    null

    Is there any way to specify the format in the custom type document itself. ? I do not want to specify the format in every document sample. Is there any way that it is possible. If I give the format in the document samples, as Matt said, there is no problem.
    Now I tried to give the format in the type document itself.
    I created a custom type document as follows:
    <?xml version="1.0" standalone="yes"?>
    <!--myTestType.xml-->
    <ClassObject>
    <Name>myTestType</Name>
    <Description> myTestType Document </Description>
    <Superclass Reftype ="name">Document</Superclass>
    <Attributes>
    <Attribute>
    <Name> Category </Name>
    <DataType> String </DataType>
    <DataLength> 80 </DataLength>
    </Attribute>
    <Attribute>
    <Name> posted_date </Name>
    <DataType format="mm-dd-yyyy"> date </DataType>
    </Attribute>
    </Attributes>
    </ClassObject>
    I could able to upload this to ifs. No problem at this time. But when I try to load the below sample, I am getting the same parse problem.(IFS-12635 SimpleXmlParser: Value(12-25-1992) not valid for type (Date.).
    sample xml document
    <?xml version="1.0" standalone="yes"?>
    <myTestType>
    <name> testing.myTestType</name>
    <Category>Administration_4</Category>
    <posted_date >12-25-1992</posted_date>
    </myTestType>
    Thank you.

  • IOS diagnostics DOESNT work on my ipad 2. i get message with 99206 and when i enter it says ticket not valid

    iOS diagnostics DOESNT work on my ipad 2. i get message with 99206 and when i enter it says ticket not valid why send to me if it isnt valid ?
    trying to find answer for gamecenter not working.

    APN is a network identifier for mobile device
    http://en.wikipedia.org/wiki/Access_Point_Name

  • I bought an unlocked iphone 5s with full paid but what i got is "SIM Not Valid". Don't know this is because of Apple or Sprint problem?

    I bought an unlocked iphone 5s with full paid but what i got is "SIM Not Valid". Don't know this is because of Apple or Sprint problem? It suppose to be unlocked and allow me to use any carrier worldwide. What is going on? What should i do? Return a phone and get refund?

    If you purchased a Sprint iPhone, you DID NOT purchase an unlocked iPhone. All Sprint iPhones are carrier locked to Sprint, & Sprint will only authorize the unlocking of the sim slot for current customers using the phone on their network. If you are not a current customer, using that phone on Sprint's network, you wasted your money, as Sprint will not authorize the unlocking of the sim slot.
    So, it the above is the case with you, yes, return the phone for a refund, if you still can.

  • HT204266 I was trying to buy an app from the apple store, it asked for confirmation , when I re-entered my credit card details, got the message that your payment method is not valid!!!! How can I fix this problem?

    I was trying to buy an app from the apple store, it asked for confirmation , when I re-entered my credit card details, got the message that your payment method is not valid!!!! How can I fix this problem?

    Is this a pre-paid card thing? Or different billing address than your iTS account?

  • I get this error msg. "An error occurred while sending. The mail sever responded: From address is not valid [R0107001]. My email address is correct. Why?

    Can't send email. Get error: "An error occurred while sending. The mail sever responded: From address is not valid [R0107001]. Please verify your email address is correct in your Mail Preference and try again."
    My email ([email protected]) is correct.
    After receiving the error message I try to resend. Get second error message. BUT AFTER ABOUT SIX TRYS THE MESSAGE IS SENT.
    What shall I do???

    problem solved. an update thunderbird message showed up, did update and now works. WOW!

Maybe you are looking for

  • What are the Preparations recommended to Pass OCA 10gDBA(1Z0-042) exam ?

    What are the Preparations recommended to Pass OCA *10gDBA(1Z0-042)* exam ?

  • Namespace-Problem RosettaNet

    Hi, we have a problem bei configuring a RosettaNet-Scenario. Our partner gets an Error 500 when he sends a Message Type AdvanceShipmentNotificationAction to our XI-system. In our logs we can find the following entry: Constructing the object... : Coul

  • Correcting Multiple Schedules on the Same Report

    Hi Created a report and scheduled it to run daily at 8am. Works Great. two months later a change is requested I make the change and republish the report, but fail to schedule it for the same time. Now I have the same report with the same name schedul

  • Street date for SQL Developer 3.0

    Does anyone know when this will be released? I saw a neat-o presentation at OpenWorld and can't wait to get my hands on it.

  • 2 gigs of RAM vs. 1 gig...

    I appologize in advance because I know this question has been asked at least 10,000 times but I could not find the disscussions retaining to my topic when I searched for them. Anyways... I am trying to run programs like Final Cut Pro and Adobe Photos