Problem by register a XMLSchema

I have a problem to register or import a new schema into XML DB.
I use Database 10g and the Oracle Enterprise Console.
I checked my schema with XMLSpy.
The schema is valid.
When I click on the bottom 'Create', I received the following error:
ORA-31154: invalid XML document
ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 0
ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
ORA-06512: at line 2'
What can I do?
It is possible to ignore the error message
The Schema is a base schema for my main schema:
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.opengis.net/gml" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.1.0">
     <annotation>
          <appinfo source="urn:opengis:specification:gml:schema-xsd:basicTypes:v3.1.0">basicTypes.xsd</appinfo>
          <documentation>
Generic simpleContent components for use in GML
</documentation>
     </annotation>
     <!-- =========================================================== -->
     <simpleType name="NullEnumeration">
          <annotation>
               <documentation> Some common reasons for a null value:
innapplicable - the object does not have a value
missing - The correct value is not readily available to the sender of this data.
Furthermore, a correct value may not exist.
template - the value will be available later
unknown - The correct value is not known to, and not computable by, the sender of this data.
However, a correct value probably exists.
withheld - the value is not divulged
other:reason - as indicated by "reason" string
Specific communities may agree to assign more strict semantics when these terms are used in a particular context.
</documentation>
          </annotation>
          <union>
               <simpleType>
                    <restriction base="string">
                         <enumeration value="inapplicable"/>
                         <enumeration value="missing"/>
                         <enumeration value="template"/>
                         <enumeration value="unknown"/>
                         <enumeration value="withheld"/>
                    </restriction>
               </simpleType>
               <simpleType>
                    <restriction base="string">
                         <pattern value="other:\w{2,}"/>
                    </restriction>
               </simpleType>
          </union>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="NullType">
          <annotation>
               <documentation>Utility type for null elements. The value may be selected from one of the enumerated tokens, or may be a URI in which case this should identify a resource which describes the reason for the null. </documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <element name="Null" type="gml:NullType"/>
     <!-- ===================================================== -->
     <simpleType name="SignType">
          <annotation>
               <documentation>Utility type used in various places
- e.g. to indicate the direction of topological objects;
"+" for forwards, or "-" for backwards.</documentation>
          </annotation>
          <restriction base="string">
               <enumeration value="-"/>
               <enumeration value="+"/>
          </restriction>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="booleanOrNull">
          <annotation>
               <documentation>Union of the XML Schema boolean type and the GML Nulltype. An element which uses this type may have content which is either a boolean {0,1,true,false} or a value from Nulltype</documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration boolean anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="booleanOrNullList">
          <annotation>
               <documentation>XML List based on the union type defined above. An element declared with this type contains a space-separated list of boolean values {0,1,true,false} with null values interspersed as needed</documentation>
          </annotation>
          <list itemType="gml:booleanOrNull"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="booleanList">
          <annotation>
               <documentation>XML List based on XML Schema boolean type. An element of this type contains a space-separated list of boolean values {0,1,true,false}</documentation>
          </annotation>
          <list itemType="boolean"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="stringOrNull">
          <annotation>
               <documentation>Union of the XML Schema string type and the GML Nulltype. An element which uses this type may have content which is either a string or a value from Nulltype. Note that a "string" may contain whitespace. </documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration string anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="NameOrNull">
          <annotation>
               <documentation>Union of the XML Schema Name type and the GML Nulltype. An element which uses this type may have content which is either a Name or a value from Nulltype. Note that a "Name" may not contain whitespace. </documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration Name anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="NameOrNullList">
          <annotation>
               <documentation>XML List based on the union type defined above. An element declared with this type contains a space-separated list of Name values with null values interspersed as needed</documentation>
          </annotation>
          <list itemType="gml:NameOrNull"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="NameList">
          <annotation>
               <documentation>XML List based on XML Schema Name type. An element of this type contains a space-separated list of Name values</documentation>
          </annotation>
          <list itemType="Name"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="doubleOrNull">
          <annotation>
               <documentation>Union of the XML Schema double type and the GML Nulltype. An element which uses this type may have content which is either a double or a value from Nulltype</documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration double anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="doubleOrNullList">
          <annotation>
               <documentation>XML List based on the union type defined above. An element declared with this type contains a space-separated list of double values with null values interspersed as needed</documentation>
          </annotation>
          <list itemType="gml:doubleOrNull"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="doubleList">
          <annotation>
               <documentation>XML List based on XML Schema double type. An element of this type contains a space-separated list of double values</documentation>
          </annotation>
          <list itemType="double"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="integerOrNull">
          <annotation>
               <documentation>Union of the XML Schema integer type and the GML Nulltype. An element which uses this type may have content which is either an integer or a value from Nulltype</documentation>
          </annotation>
          <union memberTypes="gml:NullEnumeration integer anyURI"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="integerOrNullList">
          <annotation>
               <documentation>XML List based on the union type defined above. An element declared with this type contains a space-separated list of integer values with null values interspersed as needed</documentation>
          </annotation>
          <list itemType="gml:integerOrNull"/>
     </simpleType>
     <!-- =========================================================== -->
     <simpleType name="integerList">
          <annotation>
               <documentation>XML List based on XML Schema integer type. An element of this type contains a space-separated list of integer values</documentation>
          </annotation>
          <list itemType="integer"/>
     </simpleType>
     <!-- =========================================================== -->
     <complexType name="CodeType">
          <annotation>
               <documentation>Name or code with an (optional) authority. Text token.
If the codeSpace attribute is present, then its value should identify a dictionary, thesaurus
or authority for the term, such as the organisation who assigned the value,
or the dictionary from which it is taken.
A text string with an optional codeSpace attribute. </documentation>
          </annotation>
          <simpleContent>
               <extension base="string">
                    <attribute name="codeSpace" type="anyURI" use="optional"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="CodeListType">
          <annotation>
               <documentation>List of values on a uniform nominal scale. List of text tokens.
In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string.
If a codeSpace attribute is present, then its value is a reference to
a Reference System for the value, a dictionary or code list.</documentation>
          </annotation>
          <simpleContent>
               <extension base="gml:NameList">
                    <attribute name="codeSpace" type="anyURI" use="optional"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="CodeOrNullListType">
          <annotation>
               <documentation>List of values on a uniform nominal scale. List of text tokens.
In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string.
A member of the list may be a typed null.
If a codeSpace attribute is present, then its value is a reference to
a Reference System for the value, a dictionary or code list.</documentation>
          </annotation>
          <simpleContent>
               <extension base="gml:NameOrNullList">
                    <attribute name="codeSpace" type="anyURI" use="optional"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="MeasureType">
          <annotation>
               <documentation>Number with a scale.
The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale. </documentation>
          </annotation>
          <simpleContent>
               <extension base="double">
                    <attribute name="uom" type="anyURI" use="required"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="MeasureListType">
          <annotation>
               <documentation>List of numbers with a uniform scale.
The value of uom (Units Of Measure) attribute is a reference to
a Reference System for the amount, either a ratio or position scale. </documentation>
          </annotation>
          <simpleContent>
               <extension base="gml:doubleList">
                    <attribute name="uom" type="anyURI" use="required"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="MeasureOrNullListType">
          <annotation>
               <documentation>List of numbers with a uniform scale.
A member of the list may be a typed null.
The value of uom (Units Of Measure) attribute is a reference to
a Reference System for the amount, either a ratio or position scale. </documentation>
          </annotation>
          <simpleContent>
               <extension base="gml:doubleOrNullList">
                    <attribute name="uom" type="anyURI" use="required"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <complexType name="CoordinatesType">
          <annotation>
               <documentation>Tables or arrays of tuples.
May be used for text-encoding of values from a table.
Actually just a string, but allows the user to indicate which characters are used as separators.
The value of the 'cs' attribute is the separator for coordinate values,
and the value of the 'ts' attribute gives the tuple separator (a single space by default);
the default values may be changed to reflect local usage.
Defaults to CSV within a tuple, space between tuples.
However, any string content will be schema-valid. </documentation>
          </annotation>
          <simpleContent>
               <extension base="string">
                    <attribute name="decimal" type="string" default="."/>
                    <attribute name="cs" type="string" default=","/>
                    <attribute name="ts" type="string" default="&#x20;"/>
               </extension>
          </simpleContent>
     </complexType>
     <!-- =========================================================== -->
     <simpleType name="NCNameList">
          <annotation>
               <documentation>A set of values, representing a list of token with the lexical value space of NCName. The tokens are seperated by whitespace.</documentation>
          </annotation>
          <list itemType="NCName"/>
     </simpleType>
     <!-- ============================================================== -->
     <simpleType name="QNameList">
          <annotation>
               <documentation>A set of values, representing a list of token with the lexical value space of QName. The tokens are seperated by whitespace.</documentation>
          </annotation>
          <list itemType="QName"/>
     </simpleType>
     <!-- ============================================================== -->
</schema>
Other simple schemas like purchase.xsd run without problems.
Thanks in advance

Which release are you using. It registered Fine for me
SQL> declare
2 result boolean;
3 begin
4 result := dbms_xdb.createResource('/home/&1/xsd/&4',
5 bfilename(USER,'&4'),nls_charset_id('AL32UTF8'));
6 end;
7 /
old 4: result := dbms_xdb.createResource('/home/&1/xsd/&4',
new 4: result := dbms_xdb.createResource('/home/XDBTEST/xsd/testcase.xsd',
old 5: bfilename(USER,'&4'),nls_charset_id('AL32UTF8'));
new 5: bfilename(USER,'testcase.xsd'),nls_charset_id('AL32UTF8'));
PL/SQL procedure successfully completed.
SQL> commit
2 /
Commit complete.
SQL> alter session set events='31098 trace name context forever'
2 /
Session altered.
SQL> begin
2 dbms_xmlschema.registerSchema
3 (
4 schemaURL => '&3',
5 schemaDoc => xdbURIType('/home/&1/xsd/&4').getClob(),
6 local => TRUE,
7 genTypes => TRUE,
8 genBean => FALSE,
9 genTables => &5
10 );
11 end;
12 /
old 4: schemaURL => '&3',
new 4: schemaURL => 'testcase.xsd',
old 5: schemaDoc => xdbURIType('/home/&1/xsd/&4').getClob(),
new 5: schemaDoc => xdbURIType('/home/XDBTEST/xsd/testcase.xsd').getClob(),
old 9: genTables => &5
new 9: genTables => TRUE
PL/SQL procedure successfully completed.
SQL> quit
Disconnected from Personal Oracle Database 10g Release 10.2.0.0.0 - Production
With the Partitioning and OLAP options

Similar Messages

  • TS1646 hello  I have problem with regist my visa and I cannot buy from store the message came in the end of form is says the phone number must be a 7-digit number and I have writed but not accepted iam from saudi arabia my mobile is 966504850992 pls answe

    hello 
    I have problem with regist my visa and I cannot buy from store
    the message came in the end of form is says
    the phone number must be a 7-digit number
    and I have writed but not accepted
    iam from saudi arabia
    my mobile is 966504850992
    pls answer
    thanks
    dfr aldossary

    Wow, Karan Taneja, you've just embarrassed yourself on a worldwide support forum.  Not only is your post ridiculous and completely inappropriate for a technical support forum, but it also shows your ignorance as to whom you think the audience is.  Apple is not here.  It's users, like you. 
    If you would have spent half the time actually reading the Terms of Use of this forum that YOU agreed to by signing up to post, as you did composing that usesless, inappropriate post, you (and the rest of us on this forum) would have been much better off.

  • Why can't i log in facetime on mac? error reads,server encoutered problem why registering?

    why can't i log in facetime on mac? error reads,server encoutered problem why registering?

    Two useful KB articles:
    http://support.apple.com/kb/HT4534
    http://support.apple.com/kb/HT4319
    The second says iOS but it actually tells how to use FaceTime from a Mac in addition to iOS devices.

  • Problem with registering iPhone 5 in Support Profile

    Basically I got an iPhone 5 from my friend and trying to register it in my own Apple Support Profile but receiving the following msg:
    According to our records, this serial number is registered to another Apple ID. If you have more than one Apple ID, log in to My Support Profile with that Apple ID to see your other registered products. Not sure if you have another Apple ID? Find out.
    Yes, I have asked my friend to unregister the iPhone from his Apple Support Profile so that I can add in mine. He's done the same and it's been 12 hours but still I cannot add it. I am not sure whether I should wait a day or two before attempting again. Please Help!

    I had the same problem for register, but i actually buy my iphone5s from one shop. The phone should be very new and i could use icloud webside to check this iphone5s. How could be unsuccessful for the register from My Support Profile?

  • Problem while registering xml schema in Oracle 9.2.0.3

    Getting error code while executing the following sql.
    begin
    2 dbms_xmlschema.registerSchema('http://localhost/XMLDIR/HotelContent.xsd', getDocument('Hot
    elContent.xsd'));
    3 end;
    4 /
    begin
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [qmxiUnpPacked2], [121], [], [], [],
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 0
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
    ORA-06512: at line 2
    1) GetDocument basically gets the xsd file froma registered directory object.
    2) Given the schema file below ... HotelContent.xsd
    <?xml version="1.0" encoding="UTF-8"?>
    <!--W3C Schema generated by XMLSPY v5 rel. 4 U (http://www.xmlspy.com)-->
    <xs:schema targetNamespace="http://www.opentravel.org/OTA/2003/05" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.opentravel.org/OTA/2003/05" elementFormDefault="qualified">
         <xs:element name="Address" type="xs:string"/>
         <xs:element name="AffiliationInfo">
              <xs:complexType/>
         </xs:element>
         <xs:element name="AreaInfo">
              <xs:complexType/>
         </xs:element>
         <xs:element name="City" type="xs:string"/>
         <xs:element name="ContactInfos">
              <xs:complexType/>
         </xs:element>
         <xs:element name="Country" type="xs:string"/>
         <xs:element name="DestinationSystemsCode">
              <xs:complexType/>
         </xs:element>
         <xs:element name="FacilityInfo">
              <xs:complexType/>
         </xs:element>
         <xs:element name="Fax" type="xs:string"/>
         <xs:element name="HotelDescriptiveContent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="DestinationSystemsCode"/>
                        <xs:element name="HotelInfo" type="HotelInfoType"/>
                        <xs:element ref="FacilityInfo"/>
                        <xs:element ref="Policies"/>
                        <xs:element ref="AreaInfo"/>
                        <xs:element ref="AffiliationInfo"/>
                        <xs:element ref="MultimediaObjects"/>
                        <xs:element ref="ContactInfos"/>
                        <xs:element ref="TPA_Extensions"/>
                   </xs:sequence>
                   <xs:attribute name="ChainCode" type="xs:string" use="required"/>
                   <xs:attribute name="BrandCode" type="xs:string" use="required"/>
                   <xs:attribute name="HotelCode" type="xs:string" use="required"/>
                   <xs:attribute name="HotelCityCode" type="xs:string" use="required"/>
                   <xs:attribute name="HotelName" type="xs:string" use="required"/>
                   <xs:attribute name="BrandName" type="xs:string" use="required"/>
                   <xs:attribute name="Overwrite" type="xs:boolean" use="required"/>
                   <xs:attribute name="LanguageCode" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:complexType name="HotelInfoType">
              <xs:sequence>
                   <xs:element ref="Address"/>
                   <xs:element ref="City"/>
                   <xs:element ref="State"/>
                   <xs:element ref="PostalCode"/>
                   <xs:element ref="Country"/>
                   <xs:element ref="Phone"/>
                   <xs:element ref="Fax"/>
              </xs:sequence>
         </xs:complexType>
         <xs:element name="MultimediaObjects">
              <xs:complexType/>
         </xs:element>
         <xs:element name="Phone" type="xs:string"/>
         <xs:element name="Policies">
              <xs:complexType/>
         </xs:element>
         <xs:element name="PostalCode" type="xs:short"/>
         <xs:element name="State" type="xs:string"/>
         <xs:element name="TPA_Extensions">
              <xs:complexType/>
         </xs:element>
    </xs:schema>
    Any thoughts on what is this error? I couldn't find any info related to this. Generally I am having problems with structured XML storage. Any peratining info would be useful. Thanks ....

    Hi,
    Please repost your question in the more appropriate XML DB forum at - XML DB
    Regards,
    -Srinivas
    OTN Team.

  • Problem with register event callback in use of instrument control

    now, i use the register event callback to register a value change of a boolean control on the front panel, and wire the cluster's ref of the instrument control parameters to the user parameter input, then create the callback vi. In the callback vi, i select the pump-control subvi, and pass the user parameter to the subvi. The problem is that,  when i press the boolean control, the instrument (here is pump) can act, but immediately, the code crashes.
    I use labview 8.6
    Attachments:
    callback vi.png ‏8 KB
    register event callback.png ‏8 KB

    You would wire the event registration wire that comes out of the Register for Events node into an event structure.  You will need to right click on the event structure and check off "Show Dynamic Event Terminals" and it into that.  Then you can create a new Event Case that uses the dynamic event.  You can place your subVI in that event in whatever way you want.  (Just drop the subVI in or do a Call by Reference there, or whatever.)  Look in the Example Finder for "Dynamically Register for Events.vi".

  • EPrint problems with registering and trying to sign in

    I have a HP Photosmart 6510 printer. I have installed the disk that came with it onto my desktop and also my laptop. I also installed the apps that were recommended on my iPad3 and iPhone4S. I believe that I have done everything correctly and I registered my printer with HP and open an account with ePrint.  Here lies the problem, when I try to sign into ePrint it will not do anything. I have tried clicking on the sign in button on all 4 units and nothing. So now I go to the internet and try using the HP web site to get to ePrint which I can. I try to sign in there and I get an error message telling me that my password is incorrect. It tells me to enter my correct password or if I have forgotten my password to click here and it will send password to email that was used to  open account. So I try to have password sent. When I enter my email address and hit submit it tells me to use the email address that was used to set up account. I have checked over and over again and the email address is correct. I can sign into my HP account without a problem, I can't get into ePrint. So I figure I will try as if I did not have an account in ePrint. I enter my name, email address and password and it tells me that the email address is not available as it is in use, no kidding, it is mine, but it will not permit me to sign in. It seems like there is a problem with the software for this program. Any ideas. I really like the print jobs that come off this printer.  I have no problem printing within my home, but when I go out, that is where the problems start. I was able to send a picture to printer and I received an email telling me to go to ePrint to check on the status, well here we go again, I can't get sign into ePrint. I can't even find on HP website where I can go to get help. Please help

    Hello rrs110,
    It may be that you have a SnapFish.com account. Alot of long time customers of HP have SnapFish.com accounts and do not realize it. One of the printer software releases signed customers up automatically, and most people did not know, or forgot, because they never used it. Try going to SnapFish.com and using the forgot password link at the log in screen there. Once you have the password reset, go to ePrintCenter.com and use the SnapFish.com log in information to log in. If that does not help you may need to contact SnapFish.com directly to have them delete the account, or use a different email to register with.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Problem to register my macbook pro on my apple id

    I'm trying to register my macbook pro on my apple id account and it cites this error message "
    According to our records, this serial number is registered to another Apple ID. If you have more than one Apple ID, log in to My Support Profile with that Apple ID to see your other registered products. Not sure if you have another Apple ID?"
    how i can fix this issue? I bought my mac from apple store and is not second hand.

    I just discovered I got the same problem
    Bought my Mbp last November from the Apple online store.
    I registered at https://register.apple.com/
    No reply yet
    Any help?

  • Problem with registering Parser - Recompiled source code, don't see any changes

    I had created a parser. I had register this parser with Ifs Manager. I had execute this following statement to see if been registered carefully:
    On user ifssys/ifssys
    sql)select name,stringvalue,bundle from odmv_property where name= 'p01';
    I see my parser....
    select name from odmv_propertybundle where id=1139;
    ParserLookupByFileExtension
    All it's ok. I upload a file with a 'p01' extension with option 'parser' on my Internet Explorer. All work fine.. My parser work. But I need to do some changes in my code. I update my code, recompile my code. My class file have been updated. After my parser (.class) file have been updated I upload a new file with parse option. I don't see any change I do in my code. Why??? How I can update my parser to view change. I have only recompile my code an place my new class files on the same directory. I have try again (change on code, recompile, test) and I don't see any changes.
    But I have test by change my classname. My classname before is Test1 and I have rename my classe by Test2. I have compiled this code and a file Test2.class have been generate. I have update my register parser with Ifs Manager to use the new classname Test2. I have chack with sql statement to see if my parser have been updated. I have been updated correctly. I have upload a new file with parse option and I see my change on my code..
    Do you have some explanations about that??
    How I can update my source code of a parser already registered to the parser take the change I do.
    Francois
    null

    Ok, but they have another manner to resolve this problem. If I upload a file with parser option on Windows Nt explorer (Using SmbServer or WcpServer). How I can update the class file into the JVM? I need the restart this those server or just one? If just one which server I need to restart?
    Thanks Francois
    null

  • Problem in registering phone and entering nokia mu...

    Recently i purchased nokia music voucher key.  But unable to regiter my phone. it shows there was a problem registering your phone for unlimited downloads.try again in a moment.
    I tried also re login by deleting current account and restarting phone .
    Please do the necesary.

    Hi, vinodpanwar.
    Welcome to the forum.
    What's your phone model? Where did you purchase the phone? Where are you located? Were you able to use the Nokia MixRadio service before? Which connection are you using during the registration (Wi-Fi/cellular data)? Please take a look at this link for further explanation about the error that you're getting:
    • http://www.nokia.com/in-en/support/faq/?action=sin​gleTopic&topic=FA142779
    We look forward to your reply.

  • Problem to register database 9. in OID 10.1.2

    Hello,
    I try to register a database version 9.2 in my ldap OID 10.1.2 with utility dbca (for implementing user enterprise) , I have executed this operation for an 10.2 database without problem.
    I don't use wallet just password authentification.
    dbca have create an entry in my spfile, rdbms_server_dn. But when no entry is created in my OID...
    If someone have an idea.
    Thanks

    Hi user446598,
    I am not sure if you were able to resolve it or not. In case not then here is the solution. you have to create a wallet using owm for 9i database and then generate a certificate using oca( thats a default certificate authority that oracle provides). once you generate the certificate in oca, import it in wallet. specify wallet location in sqlnet.ora of this 9i database. After completing these steps you should be able to register.
    Regards
    Parvesh

  • Problem in registering the java server proxy interface...

    Hi All,
    I have created a java server proxy(in PI 7.1) using the below mentioned blog:
    /people/prasad.ulagappan2/blog/2005/06/27/asynchronous-inbound-java-proxy
    But the problem comes when i am trying to register the interface( on non central j2ee adapter engine) and ends up with getting unauthorization error even though i am having piappluser access. I am trying to register it using below mentioned URL:
    http://ISVSAPPISB:51000/ProxyServer/register?ns=xxxxx&interface=SI_Proxy_IA&bean=localejbs/sap.com/EARServerProxy/SIProxyIA_PortTypeBean&method= sIProxyIA
    xxxx-namespace
    So ,please anyone can tell me what authorization should i have in order register my server proxy interface.
    Thanks

    hi,
    >>>2) Plz tell me how to check whether my java server proxy interface got registered successfully or not.
    use listAll option form this page:
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d5b3b0b16843b3867c0245d9847ae5/content.htm
    Regards,
    Michal Krawczyk

  • Problems in registering Locations with global_name = true.

    Hello,
    I am facing problems registering locations using ombplus. Here is what I did.
    OMB+> OMBCREATE LOCATION 'TEST_LOCATION' SET PROPERTIES (TYPE, VERSION, DESCRIPTION, BUSINESS_NAME) VALUES ('Oracle Database', \
    '10.2','This is a location', 'TEST_LOCATION' )Location TEST_LOCATION created.
    OMB+> OMBCOMMIT
    Commit complete.
    OMB+> source c:/code/ombscripts/qa-bofarac/allinit.tcl
    C:/Code/OMBScripts/QA-BOFARAC/ImportParam.txt
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( HOST, PORT, SERVICE_NAME , SCHEMA, CONNECT_AS_USER,PASSWORD, VERSION, UOID,DATABASE_NAME) \
    VALUES ( '$HOST', $PORT,'$SERVICE', '$TgtDBUser', '$TgtDBUser', 'TgtDBPWD','$
    dbversion','true','$SERVICE');
    Location TEST_LOCATION altered.
    OMB+> OMBCOMMIT
    Commit complete.
    OMB+> OMBREGISTER LOCATION 'TEST_LOCATION' REUSE
    Location TEST_LOCATION is invalid and could not be deployed.
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( PASSWORD ) VALUES ('ENT_STAR')
    Location TEST_LOCATION altered.
    OMB+> OMBCOMMIT
    Commit complete.
    OMB+> OMBREGISTER LOCATION 'TEST_LOCATION' REUSE
    Location TEST_LOCATION registered.
    OMB+>
    Please note that I am setting global_names option in LOCATION objec by setting UOID
    = 'true' . Is this correct ? I am using OWB 10.2.0.8
    Am I missing any step before registering location ?
    Please let me know. Any help is appreciated.
    Thanks
    Madhavi

    Hi Madhavi,
    You said:
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( HOST, PORT, SERVICE_NAME , SCHEMA, CONNECT_AS_USER,PASSWORD, VERSION, UOID,DATABASE_NAME) \
    VALUES ( '$HOST', $PORT,'$SERVICE', '$TgtDBUser', '$TgtDBUser', 'TgtDBPWD','$
    dbversion','true','$SERVICE');
    Did you leave out the "$"-character for the TgtDBPWD variable in purpose? Could this be the source of your problem?
    Regards,
    Ed

  • Facing problems to register my system in solman

    Dear Experts,
    please clarefy me how can i Register my GRC system in solution manager..
    i checked and tried in smsy but iam facing some problems inthis
    so please let me the process or steps for to register my GRC in sap
    Regards

    Hi Swathimatta,
    You should register the GRC system the Solman SLD. The Landscape Fetch job willl update the SMSY.
    You will need to perform some checks in the SMSY definition,  you should refer to the section "4.17 SAP GRC Access Control 5.3" of the      [SAP Solution Manager Landscape Setup Guide|https://websmp109.sap-ag.de/~sapdownload/011000358700000074392009E/SP18_SolMan_Setup_Guide_V2.pdf].
    Regards,
    Allam

  • Facing problems in Registering AIA Components with OSB

    Hi all,
    I am trying to implement AIA on OSB for that as an initial step I am trying to Register AIA Components with OSB.
    In this step I am facing problems getting 705 conflicts removing these conflicts manually is a huge task .
    Can anyone suggest me good approach or if any one has removed AIA components jar please share with me.
    Thanks
    Phani

    Hi Madhavi,
    You said:
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( HOST, PORT, SERVICE_NAME , SCHEMA, CONNECT_AS_USER,PASSWORD, VERSION, UOID,DATABASE_NAME) \
    VALUES ( '$HOST', $PORT,'$SERVICE', '$TgtDBUser', '$TgtDBUser', 'TgtDBPWD','$
    dbversion','true','$SERVICE');
    Did you leave out the "$"-character for the TgtDBPWD variable in purpose? Could this be the source of your problem?
    Regards,
    Ed

Maybe you are looking for

  • Printing a PDF document to Adobe PDF rotates 90degrees clockwise

    When I print a PDF document (scanned) to the Adobe PDF printer the resulting document is rotated 90 degrees clockwise. Regardless what settings are in Pro or the Adobe PDF writer. How do I prevent Acrobat Pro or Adobe PDF from rotating documents? (CS

  • Multiple ResourceBundle definitions with the same name

    I created a new web application project with JSF support using Netbeans 5.5Beta. The new project has a simple welcomeJSF page that I did not modify. The only modifications I did is adding a CustomMessages.properties file under com.mywebsite.resourcs

  • How SID table will get the data?

    Hi, Any one can please let me know, how the SID table will get the data. I am not able to trace. Thanks in Advance. Regards, Suree.B

  • Jatble: setting column-width,why can't I do it here?

    public class SpieleTableModel extends DefaultTableModel {      * Creates a new instance of SpieleTableModel     public SpieleTableModel() {         super();         //SpieleTable         addColumn(" Nr.");         addColumn(" Name");         addColum

  • Query regarding approval policies for custom Role

    Hi , 1.In OIM 11g R2 . I have created a Role named SecurityAdmin. Assigned it to a user named User1. Logged in as User1 and searched for another user say User2 2.Modified its Profile and when clicked on save .Request was created and went to approval