Critical SMS_NETWORK_DISCOVERY Status

In monitoring I am getting this critical message for SMS_NETWORK_DISCOVERY -
Network Discovery failed to connect to a DHCP server due to insufficient access.
This error message means that fewer clients and networks will be found than otherwise. Note that this message will not be generated again during this Network Discovery session, regardless of how often the error occurs.
Possible cause: The site server does not have sufficient rights to read data from the DHCP server
Solution: Ensure that the site server computer account has sufficient permission to read configuration information from the DHCP server.
MSB

Just a word of caution... Network discovery makes a mess. Only use it if you have no other choice.
John Marcum | http://myitforum.com/myitforumwp/author/johnmarcum/
Totally agree
Cheers
Paul | sccmentor.wordpress.com

Similar Messages

  • Critical Memory Status

    Hello,
    Can some explain what to do under the below given circumstances?
    Attention: Critical Memory Status! p10 80% memory
    System:                                       SID
    Program run from:                       27.05.2014   15:45:21
    Threshold Roll Area:                    80.00 %
    Threshold Paging Area:               80.00 %
    Threshold Extended Memory:        80.00 %
    Instance                                   Role Area          Paging Area         Extended Memory
    sapxxxxx_SID_01                             5.66                14.36                   89.35
    Thanks,
    uday

    Hi Alwina,
    Thanks for the reply.
    SAPKB70027 - Basis component
    SAP Kernel :  720_EXT_REL
    Kernel Patch number : 420
    Dump "TSV_TNEW_PAGE_ALLOC_FAILED" occured once today.
    What happened?
        You attempted to extend an internal table, but the required space was
        not available.
    Error analysis
        The internal table "\FUNCTION-POOL=SKBH\FORM=FB_SUBTOTALS_GET\DATA=<IT_HTAB>"
         could not be further extended. To enable
        error handling, the table had to be delete before this log was written.
        As a result, the table is displayed further down or, if you branch to
        the ABAP Debugger, with 0 rows.
        At the time of the termination, the following data was determined for
        the relevant internal table:
        Memory location: "Session memory"
        Row width: 2156
        Number of rows: 45523
        Allocated rows: 45523
        Newly requested rows: 4 (in 1 blocks)
    Thanks and best regards,
    uday

  • SCCM 2007 BDP Status Exact Meaning

    What are exact meaning of BDP Status below (0,1,2,3,4)
    BDP_Status
    When
    Status = 0
    Then 'Healthy' 
       When
    Status = 1
    Then 'Warning' 
       When
    Status = 2
    AND AvailabilityState = 3
    Then 'Critical' 
       When
    Status = 2
    AND AvailabilityState = 4
    Then 'Very_Critical'  
    Fazal(MCTS)

    Thanks For the Response , sorry for unclear.
    Got From our SCCM SQL DB , [dbo].[vSummarizer_SiteSystem] view.
    select * from [dbo].[vSummarizer_SiteSystem] then AvailabilityState filed (Column) shows with 0,1,2,3,4 integer result. (above is our query part which we are getting for finding BDP Issue)
    and i need to what are those value and meanings ( 0,1,3,4)
    Fazal(MCTS)

  • Tcl script help -- include interface description in status message

    Hi there,
    I'm trying to create a script that will email me when an interface goes down, and include the interface description in the email.  I've found a script that successfully emails me when the status changes, and I found another script that will parse for the interface description, but I can't seem to get them to work together.  I've mashed them up together into the below script:
    # EEM policy that will monitor SYSLOG for Interface status changes.
    # If UPDOWN message is detected, send an email with interface information.
    ### The following EEM environment variables are used:
    ### _email_server
    ### - A Simple Mail Transfer Protocol (SMTP)
    ### mail server used to send e-mail.
    ### Example: _email_server mailserver.example.com
    # Register for a Syslog event. Event Detector: Syslog
    # Match pattern for Interface Status change
    ::cisco::eem::event_register_syslog pattern "%LINK-3-UPDOWN"
    # NAMESPACE IMPORT
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    # Set array for event_reqinfo
    # Array is populated with additional event information
    array set Syslog_info [event_reqinfo]
    set msg $Syslog_info(msg)
    # Set routername variable for use later
    set routername [info hostname]
    # Parse output for interface name
    if { ! [regexp {: ([^:]+)$} $msg -> info] } {
        action_syslog msg "Failed to parse syslog message"
    regexp {Line protocol on Interface ([a-zA-Z0-9]+)} $info -> interface 
    # ------------------- cli open -------------------
    if [catch {cli_open} result] {
    error $result $errorInfo
    } else {
    array set cli $result
    # Go into Enable mode
    if [catch {cli_exec $cli(fd) "enable"} result] {
    error $result $errorInfo
    #Find interface description
    if [catch {cli_exec $cli(fd) "show interface $interface | inc Description" } description] {
            error $description $errorInfo
    #--------------------- cli close ------------------------
    cli_close $cli(fd) $cli(tty_id)
    set time_now [clock seconds]
    set time_now [clock format $time_now -format "%T %Z %a %b %d %Y"]
    # EMAIL MESSAGE
    # This manually creates a text message with specific format to be used by the
    # smtp_send_email command later to send an email alert.
    # Ensure the following are configured:
    # ip domain-name <domain.com>
    # If a hostname is used for mailservername, ensure the following are configured:
    # ip name-server <dns-server>
    # ip domain-lookup
    # NOTE: Change environment variable _email_server to your SMTP server
    # The email below references the following variables:
    # $routername: hostname of device
    # $time_now: time when specific Syslog message was detected
    # $msg: Syslog message received
    set email_message "Mailservername: $_email_server
    From: [email protected]
    To: $_email_to
    Cc:
    Subject: EEM: Critical interface status change on $routername
    This email is generated by EEM.
    $time_now
    $msg
    $description
    # Send email message
    if {[catch {smtp_send_email $email_message} result]} {
    set result "Email send failed"
    } else {
    set result "Email Sent"
    # Debug message to check email transmission status
    action_syslog msg "$result"
    When I trigger an interface UPDOWN message, I'm getting the following error on the command line:
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: can't read "interface": no such variable
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     while executing
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: "cli_exec $cli(fd) "show interface $interface | inc Description" "
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     invoked from within
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: "$slave eval $Contents"
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     (procedure "eval_script" line 7)
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     invoked from within
    Oct 17 23:56:19.355 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: "eval_script slave $scriptname"
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     invoked from within
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: "if {$security_level == 1} {       #untrusted script
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:      interp create -safe slave
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:      interp share {} stdin slave
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:      interp share {} stdout slave
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: ..."
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     (file "tmpsys:/lib/tcl/base.tcl" line 50)
    Oct 17 23:56:19.359 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: Tcl policy execute failed: can't read "interface": no such variable
    Can anyone help me figure out where I'm going wrong? 
    Thanks in advance,
    Brandon

    Hi Dan,
    Thanks for the reply.   I've made the changes you suggested but I'm still getting the error:
    Oct 18 21:41:50.446 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: can't read "interface": no such variable
    Oct 18 21:41:50.446 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl:     while executing
    Oct 18 21:41:50.446 HKT: %HA_EM-6-LOG: CriticalLinkStatus.tcl: "cli_exec $cli(fd) "show int $interface | inc Description""
    Is there any additional debugging I could place in my script?  Normally I would try and print the variables after each line to see what's being populated, but I'm not sure how I can test that from within EEM.
    --Brandon

  • Time-out problems with RV320 (after upgrade from RV042)

    config:
    dual wan
    WAN1: 4G router (DHCP) - approx 25Mbit/ 8Mbit
    WAN2: PPOE (DSL) - 1 Mbit/ 0.2 Mbit
    worked with a RV042 before and upgraded to a RV320 now.
    all other things are unchanged.
    3 problems - 2 solved/ not critical - one still open:
    a) not critical:  DHCP Status does not include all devices (changing view - but all-time problem)
    I would suspect a software bug.... DHCP itself works perfectly/ IPs are assigned (just not shown in status)
    b) solved (at least for now):  internet connection featured time-outs; after many tries, disabling the SPI in the firewall helped
    btw: this only happend for the WAN1 - WAN2 worked  (or is that slow that the additonal wait time did not matter ;-)
    c) very annoying: exchange connection (from Outlook client to external exchange) still has time-outs (mostly the whole mail client hangs/ ends to be restarted).
    As soon as I disable WAN1, it works!  But it´s not the LTE WAN itself - switching back to the RV042 does not show the same symptom.
    I tried: include IP into local DNS (in general I work with google DNS servers - but changing that does not help either), opening all traffic for teh realevant IPs and disabling the firewall completely.  no positive results....
    thanks for any hints....

    I agree with you on a, probably a bug of some sort.
    b is an issue I've seen before, and even on similar bandwidth (25/5) on my rv016.  What was able to figure out is that the carrier (ISP) is sending about 4k/sec of ICMP packets to the router, which in turn makes the router think it's under attack so it drops the connection.  As you can tell, disabling the SPI helps.  For me, putting another router in front of my rv016 (on 2 of 3 wans) was my only 'permanent' solution.
    c sounds like there's a protocol binding/static route in the rv042 that you need to add to the rv320.  I'd check that first.
    Huntsville's Premiere Car and Bike e-magazine: www.huntsvillecarscene.com

  • No records in Live Authentications

    We have not updated to 1.2.1 yet and are running 1.2.0.899. the only changes made to the system was alarm settings, which was just adding emails to alarm notification in settings.
    Four hours after the alarm notif. change we started gettings alerts that ISE had not had any authent requests, 2 days later it shows no records in LIve authent or live sessions 4 hours after the change. All subfeilds at the top(i.e., Misconfigured Network Devices, Repeat Counters) are all zero as well. Authentication still SEEMS to be working, i am still able to log into network devices and users are still getting domain access so we are really puzzled as to why nothing is being reported in the logs. On the home page of ISE, it also shows the system summary as "no data available" and we get "no heartbeat" alarms continuously and Critical : health status alerts.

    ISE 1.2 Dashboard Statics do not update
    CSCul94611
    Description
    Symptom:
    Issue with the Live dashboard in ISE 1.1.4 not displaying information and only showing "No Data Available".
    The Dash Board will run and work for awhile, but it will randomly stop updating any statistics on the dashboard.
    Data will show and is seen in the database, but never updates per incoming/outgoing endpoints.
    Live authentications will work fine as well as all users are able to be authenticated. Customer reports do not produce data.
    Seen on multiple customer's deployments with fresh installs, a fresh install with a backup from a previous 1.1.x version, as well as upgrading to 1.1.4 from any earlier 1.1.x version.
    Conditions:
    Cisco ISE 1.2 or 1.1.4
    Any browser
    Distributed or single node deployment.
    Workaround:
    The workaround that fixes this M&T corruption is to enter the following commands below:
    ms-ise-mgm01/admin# app config ise
    Selection ISE configuration option
    [1]Reset Active Directory settings to defaults
    [2]Display Active Directory settings
    [3]Configure Active Directory settings
    [4]Restart/Apply Active Directory settings
    [5]Clear Active Directory Trusts Cache and restart/apply Active Directory settings
    [6]Enable/Disable ERS API
    [7]Reset M&T Session Database
    [8]Rebuild M&T Unusable Indexes
    [9]Purge M&T Operational Data
    [10]Reset M&T Database
    [11]Refresh M&T Database Statistics
    [12]Display Profiler Statistics
    [13]Exit
    We need to select the following options:
    7 to reset the session db
    10 to reset the M&T database
    11 to refresh the statistics (Possibly do not need. Was only needed in 1 case.)
    Once you have run these commands the DashBoard should begin to display information.
    This process can take up to 12 hours to complete all three steps. Roughly 1 to 3 hours per option selected.
    Known Affected Releases:
    (1)
    1.2(0.899)

  • Average daily database growth

    Hi All,
    How can I find the average daily growth of a database for the last one year?
    Database version:11.2.0.2
    OS:HP-UX

    We generally use this query in our environment - Try this
    select tsname as "Tablespace", 
           tsize as "Curr Size(Mb)",
           tused as "Used (Mb)",
           tfree as "Free (Mb)",
           TMax as "Max Size (Mb)",
           val1 as "Delta 1hr",
           val2 as "Delta 1dy",
           val3 as "Delta 1wk",
           val4 as "Delta 1mnt",
           round((tused / tMax)*100,2) as "%Used of Max",
           round(((tused+val3) / tMax)*100,2) as "%UsedMax_+1wk",
           round(((tused+val4) / tMax)*100,2) as "%UsedMax_+1mnt",       
    case when ( (   (tused+val3)/tMax)*100 < 80) then 'NORMAL'
         when ( (   (tused+val3)/tMax)*100 between 80 and 90) then 'WARNING'
    else 'CRITICAL' end "Status +1Wk",
    case when ( (   (tused+val4)/tMax)*100 < 80) then 'NORMAL'
         when ( (   (tused+val4)/tMax)*100 between 80 and 90) then 'WARNING'
    else 'CRITICAL' end "Status +1Mnth"    
    from
    select tsname,
    round(tablespace_size*t2.block_size/ 1024/1024,2) TSize,
    round(tablespace_usedsize*t2.block_size/1024/1024,2) TUsed,
    round((tablespace_size-tablespace_usedsize)*t2.block_size/1024/1024,2) TFree,
    (select sum(decode(b.autoextensible,'YES',b.maxbytes, b.bytes))/1024/1024
      from dba_data_files b
      where b.tablespace_name = t2.tablespace_name
      group by b.tablespace_name) TMax,
    round(val1*t2.block_size/1024/1024,2) val1,
    round(val2*t2.block_size/1024/1024,2) val2,
    round(val3*t2.block_size/1024/1024,2) val3,
    round(val4*t2.block_size/1024/1024,2) val4
    from
    (select distinct tsname,
    t1.snap_id,
    rtime,
    tablespace_size,
    tablespace_usedsize,
    tablespace_usedsize-first_value(tablespace_usedsize) 
    over (partition by tablespace_id order by t1.snap_id rows 1 preceding) val1,
    tablespace_usedsize-first_value(tablespace_usedsize) 
    over (partition by tablespace_id order by t1.snap_id rows 24 preceding) val2,
    tablespace_usedsize-first_value(tablespace_usedsize) 
    over (partition by tablespace_id order by t1.snap_id rows 168 preceding) val3,
    tablespace_usedsize-first_value(tablespace_usedsize) 
    over (partition by tablespace_id order by t1.snap_id rows 720 preceding) val4
    from (select t1.tablespace_size, t1.snap_id, t1.rtime,t1.tablespace_id, 
                 t1.tablespace_usedsize-nvl(t3.space,0) tablespace_usedsize
         from dba_hist_tbspc_space_usage t1,
              dba_hist_tablespace_stat t2,
              (select ts_name,sum(space) space 
               from recyclebin group by ts_name) t3
         where t1.tablespace_id = t2.ts#
          and  t1.snap_id = t2.snap_id
          and  t2.tsname = t3.ts_name (+)) t1,
    dba_hist_tablespace_stat t2
    where t1.tablespace_id = t2.ts#
    and t1.snap_id = t2.snap_id) t1,
    dba_tablespaces t2
    where t1.tsname = t2.tablespace_name
    and t1.snap_id = (select max(snap_id) from dba_hist_snapshot)
    and t2.contents = 'PERMANENT');

  • After Upgraded to SQL 2012 Iam getting several Errors in SCCM 2007

    After I upgrade my sql 2008 to sql 2012, I am getting several errors in SCCM 2007.Please find the below screen short
    Configmgr reporting service point - Critical
    SMS-Collection-Evaluator -critical
    SmS-dstribution Manager -Critical
    SMS-SRS reporting point -critical
    SMS-Discovery Data manager -critical
    SMS-Status Manager -critical
    SMS policy Manager -critical
    How can I resolve this issue.

    I updated the path still I have the same problem...several error message found in SCCM server.please find the below one error message
    On 7/21/2013 10:51:16 AM, component SMS_DISCOVERY_DATA_MANAGER on computer DCD-SCCM reported:  SMS Discovery Data Manager failed to process the discovery data record (DDR) "", because it cannot update the data source.
    Possible cause: On a Primary site, it is probably a SQL Server problem.
    Solution:
    1. Review the immediately preceding status messages from this component about SQL Server errors.
    2. Verify that this computer can reach the SQL Server computer.
    3. Verify that SQL Server services are running.
    4. Verify that SMS can access the SMS site database.
    5. Verify that the SMS site database, transaction log, and tempdb are not full.
    6. Verify that there are at least 50 SQL Server user connections, plus 5 for each SMS Administrator console.
    If the problem persists, check the SQL Server error logs.
    Possible cause: On a secondary site, SMS Discovery Data Manager probably cannot write to a file on the site server, so check for low disk space on the site server.
    Solution: Make more space available on the site server.
    how can I resolve the issue??

  • 10035 Waiting for Content Error?

    Hey guys was hoping for some help.  Running SCCM 2012 R2 on SQL 2008 R2 CU6.  I've been running SCCM since SMS 2003 so I'm not a total noob with it.  It started with running 2012 (no SP1), it just broke out of nowhere. and stopped working.
     I needed to fire off some Flash/Java updates so I loaded up my .bat files and deployed to my test environment.  Every single client was stuck in Not Applicable/10035/Waiting For Content and would not move.  I did my research and noticed several
    hotfixes, SP1 for SCCM 2012, R2, SQL updates so I just decided to build up a new VM with the above new configuration and to my surprise the same error is still present to my test environment.  Every single client, endpoint AV, everything connected with
    the new server as I set configuration.  Everything worked, clients all updated automatically to R2 CCM Version, no more critical component status, everything is butter except deploying applications.  I have been running my .bat scripts for years
    that I roll out to our clients to update flash.  I know it's probably not the "correct" way of doing it but it's worked flawless for along time now.  I can't really figure this out as logs are not showing any errors?  I see the hotfixes
    for my issue, but they don't apply to SCCM R2, just regular and SP1.  Thanks for the help guys.

    CAS.log are filled with this.
    <![LOG[No matching DP Location found]LOG]!><time="17:04:22.833+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="7952" file="locationcontentrequest.cpp:618">
    <![LOG[Location update from LS for content 57000006.1 and location request {73460019-3DCC-4049-8C82-5D16CA39C083}]LOG]!><time="18:04:22.904+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="4788" file="locationcontentrequest.cpp:597">
    <![LOG[No matching DP Location found]LOG]!><time="18:04:22.904+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="4788" file="locationcontentrequest.cpp:618">
    <![LOG[Location update from LS for content 57000006.1 and location request {73460019-3DCC-4049-8C82-5D16CA39C083}]LOG]!><time="19:04:23.069+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="3584" file="locationcontentrequest.cpp:597">
    <![LOG[No matching DP Location found]LOG]!><time="19:04:23.069+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="3584" file="locationcontentrequest.cpp:618">
    <![LOG[Failed to get DP locations from LS for content 57000006.1 and location request {73460019-3DCC-4049-8C82-5D16CA39C083}]LOG]!><time="20:04:23.227+300" date="01-24-2014" component="ContentAccess" context="" type="2" thread="5260" file="locationcontentrequest.cpp:690">
    <![LOG[Releasing content request {73460019-3DCC-4049-8C82-5D16CA39C083}]LOG]!><time="20:04:23.281+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="8532" file="contentaccessservice.cpp:1861">
    <![LOG[Canceling LS Job {00000000-0000-0000-0000-000000000000} for content 57000006.1]LOG]!><time="20:04:23.281+300" date="01-24-2014" component="ContentAccess" context="" type="1" thread="8532" file="locationcontentrequest.cpp:547">
    <![LOG[CancelLocationRequestfailed]LOG]!><time="20:04:23.284+300" date="01-24-2014" component="ContentAccess" context="" type="3" thread="8532" file="locationcontentrequest.cpp:566">
    <![LOG[Requesting content 57000006.1, size(KB) 821, under context System with priority Low]LOG]!><time="14:03:54.195+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="contentaccessservice.cpp:934">
    <![LOG[Created and Sent Location Request '{10139BD8-BD60-497C-985D-54C84394B4E7}' for package 57000006]LOG]!><time="14:03:54.246+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="ccmpkglocation.cpp:84">
    <![LOG[LS job {10139BD8-BD60-497C-985D-54C84394B4E7} submitted to get DP locations for content 57000006.1]LOG]!><time="14:03:54.246+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="locationcontentrequest.cpp:512">
    <![LOG[Successfully created location request {A3D1AEF4-BA27-4FA2-84D7-BA86B6CC7EE2} for content 57000006.1]LOG]!><time="14:03:54.250+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="locationcontentrequest.cpp:530">
    <![LOG[Location update from LS for content 57000006.1 and location request {A3D1AEF4-BA27-4FA2-84D7-BA86B6CC7EE2}]LOG]!><time="14:03:54.348+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="locationcontentrequest.cpp:597">
    <![LOG[No matching DP Location found]LOG]!><time="14:03:54.348+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="8764" file="locationcontentrequest.cpp:618">
    <![LOG[Location update from LS for content 57000006.1 and location request {A3D1AEF4-BA27-4FA2-84D7-BA86B6CC7EE2}]LOG]!><time="14:04:41.397+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="4412" file="locationcontentrequest.cpp:597">
    <![LOG[No matching DP Location found]LOG]!><time="14:04:41.397+300" date="01-28-2014" component="ContentAccess" context="" type="1" thread="4412" file="locationcontentrequest.cpp:618">
    Searching "No matching DP Location Found" is related to Boundaries?  Nothing has changed in my boundaries and I do not configure by boundaries by anything advanced like Subnets, IPRanges, ect.  It's just a simple active directory boundary?

  • How to fix "ORA-31038:Invalid value ..." in a XML schema

    Hello,
    We are in 11gR2 :
    select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionWe load XML files based on a registered XML schema.
    Here is the top of our XML schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns:xdb="http://xmlns.oracle.com/xdb"
             xmlns="http://www.capgemini.com/xsd/projet.xsd"
             targetNamespace="http://www.capgemini.com/xsd/projet.xsd"
             elementFormDefault="unqualified"
             blockDefault="#all">
      <xsd:element name="WORKBENCH_PROJECT" xdb:defaultTable="WORKBENCH_PROJECT_TABLE">
        <xsd:complexType xdb:maintainDOM="false">
          <xsd:sequence>
            <xsd:element ref="BaseCalendars"/>
            <xsd:element ref="PoolResources"/>
            <xsd:element ref="Projects"/>
          </xsd:sequence>
    ...We experience error ORA-31038: Invalid number value ... at the load of the XML, when the focus goes to a string type attribute :
    Here it is :
            <Task
              UID="AJ\&apos;UF`2=_```)O0H;&quot;P!```?P```0" earlyStart="2010-04-20T08:00:00" category="Run"
              baseTime="2010-03-26T09:22:00" lateStart="2010-04-20T08:00:00" start="2010-04-20T08:00:00"
              proxy="false" earlyFinish="2010-05-12T17:00:00" lateFinish="2010-05-12T17:00:00"
              critical="true" status="2" shortName="OASIS 3.2" outlineLevel="4" baseFinish="2010-06-11T17:00:00"
              finish="2010-05-12T17:00:00" summary="false" baseStart="2010-05-17T08:00:00" baselineDuration="20.0"
              milestone="false" name="OASI 3.2.1 : Association d&apos;un plan à un PFO" fixed="true"
              locked="false" key="false" percComp="1.0" totalSlack="0.0" unplanned="false">
              <Assignments>
                <Assignment
                  status="2" actualWork="24.0" resourceID="SMOUFLIH" start="2010-04-20T08:00:00" baselineWork="0.0"
    Here is the XML schema part where the load fails ( at the attribute *<xsd:attribute name="name" type="xsd:string"/>* ) :
      <xsd:element name="Task" xdb:defaultTable="">
        <xsd:complexType xdb:maintainDOM="false">
          <xsd:sequence>
            <xsd:element ref="Assignments" minOccurs="0"/>
            <xsd:element ref="BaselineDetails" minOccurs="0"/>
            <xsd:element ref="Constraints" minOccurs="0"/>
            <xsd:element ref="Notes" minOccurs="0"/>
          </xsd:sequence>
          <xsd:attribute name="UID"/>
          <xsd:attribute name="taskID" type="xsd:string"/>
          <xsd:attribute name="baseFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baseStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baseTime" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baselineDuration" type="xsd:decimal"/>
          <xsd:attribute name="category" type="xsd:string"/>
          <xsd:attribute name="critical" type="xsd:string"/>
          <xsd:attribute name="earlyFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="earlyStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="finish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="fixed" type="xsd:string"/>
          <xsd:attribute name="guidelines" type="xsd:string"/>
          <xsd:attribute name="key" type="xsd:string"/>
          <xsd:attribute name="lastUpdatedBy" type="xsd:string"/>
          <xsd:attribute name="lastUpdatedDate" type="xsd:NMTOKEN"/>
          <xsd:attribute name="lateFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="lateStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="locked" type="xsd:string"/>
          <xsd:attribute name="methodID" type="xsd:string"/>
          <xsd:attribute name="milestone" type="xsd:string"/>
          <xsd:attribute name="name" type="xsd:string"/>
          <xsd:attribute name="outlineLevel" type="xsd:integer"/>
          <xsd:attribute name="percComp" type="xsd:decimal"/>
          <xsd:attribute name="priority" type="xsd:string"/>
          <xsd:attribute name="proxy" type="xsd:string"/>
          <xsd:attribute name="shortName" type="xsd:string"/>
          <xsd:attribute name="start" type="xsd:NMTOKEN"/>
          <xsd:attribute name="status" type="xsd:integer"/>
          <xsd:attribute name="summary" type="xsd:string"/>
          <xsd:attribute name="totalSlack" type="xsd:double"/>
          <xsd:attribute name="unplanned" type="xsd:string"/>
          <xsd:attribute name="userText1" type="xsd:string"/>
          <xsd:attribute name="userText2" type="xsd:string"/>
          <xsd:attribute name="userText3" type="xsd:string"/>
          <xsd:attribute name="userText4" type="xsd:string"/>
          <xsd:attribute name="userText5" type="xsd:string"/>
      We know how to fix it manually :
    The workaround is to :
    remove all "&apos;" in each attribute called "name" But we suppose we need to amend the XML schema with a proper change. And we don't know how to do this.
    The weird is that we've never noticed this error earlier on a 11gR1 DB... This error only occurs on our brand new 11.2.0.2
    I hope it's clear enough for your understanding.
    Do you have any advice ?
    Thanks in advance,
    Olivier

    What are your NLS Settings
    SQL> select *
      2  from nls_database_parameters
      3  where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET');
    PARAMETER                                SQL> select *
      2  from nls_database_parameters
      3  where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET');
    PARAMETER                    VALUE
    NLS_LANGUAGE              AMERICAN
    NLS_TERRITORY             AMERICA
    NLS_CHARACTERSET       AL32UTF8
    SQL>With my settings I do not see a problem with a cut-down test...
    SQL> spool testcase.log
    SQL> --
    SQL> connect sys/oracle as sysdba
    Connected.
    SQL> --
    SQL> set define on
    SQL> set timing on
    SQL> --
    SQL> def USERNAME = CG
    SQL> --
    SQL> def PASSWORD = &USERNAME
    SQL> --
    SQL> -- def XMLDIR = &1
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user CG cascade
    User dropped.
    Elapsed: 00:00:01.72
    SQL> grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
      2  /
    old   1: grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
    new   1: grant create any directory, drop any directory, connect, resource, alter session, create view to CG identified by CG
    Grant succeeded.
    Elapsed: 00:00:00.01
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user CG default tablespace USERS temporary tablespace TEMP
    User altered.
    Elapsed: 00:00:00.01
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> -- create or replace directory XMLDIR as '&XMLDIR'
    SQL> -- /
    SQL> var SCHEMAURL1    varchar2(256)
    SQL> VAR XMLSCHEMA1    CLOB;
    SQL> VAR INSTANCE1     CLOB;
    SQL> --
    SQL> set define off
    SQL> --
    SQL> alter session set events='31098 trace name context forever'
      2  /
    Session altered.
    Elapsed: 00:00:00.00
    SQL> begin
      2    :SCHEMAURL1:= 'http://xmlns.example.com/testcase.xsd';
      3    :XMLSCHEMA1 :=
      4  '<?xml version="1.0" encoding="UTF-8"?>
      5  <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" attributeFormDefault="unqualified">
      6     <xsd:element name="Task" xdb:defaultTable="TASK_TABLE">
      7      <xsd:complexType xdb:maintainDOM="false">
      8        <xsd:sequence>
      9          <xsd:element name="Notes" type="xsd:string" minOccurs="0"/>
    10        </xsd:sequence>
    11        <xsd:attribute name="UID"/>
    12        <xsd:attribute name="taskID" type="xsd:string"/>
    13        <xsd:attribute name="baseFinish" type="xsd:NMTOKEN"/>
    14        <xsd:attribute name="baseStart" type="xsd:NMTOKEN"/>
    15        <xsd:attribute name="baseTime" type="xsd:NMTOKEN"/>
    16        <xsd:attribute name="baselineDuration" type="xsd:decimal"/>
    17        <xsd:attribute name="category" type="xsd:string"/>
    18        <xsd:attribute name="critical" type="xsd:string"/>
    19        <xsd:attribute name="earlyFinish" type="xsd:NMTOKEN"/>
    20        <xsd:attribute name="earlyStart" type="xsd:NMTOKEN"/>
    21        <xsd:attribute name="finish" type="xsd:NMTOKEN"/>
    22        <xsd:attribute name="fixed" type="xsd:string"/>
    23        <xsd:attribute name="guidelines" type="xsd:string"/>
    24        <xsd:attribute name="key" type="xsd:string"/>
    25        <xsd:attribute name="lastUpdatedBy" type="xsd:string"/>
    26        <xsd:attribute name="lastUpdatedDate" type="xsd:NMTOKEN"/>
    27        <xsd:attribute name="lateFinish" type="xsd:NMTOKEN"/>
    28        <xsd:attribute name="lateStart" type="xsd:NMTOKEN"/>
    29        <xsd:attribute name="locked" type="xsd:string"/>
    30        <xsd:attribute name="methodID" type="xsd:string"/>
    31        <xsd:attribute name="milestone" type="xsd:string"/>
    32        <xsd:attribute name="name" type="xsd:string"/>
    33        <xsd:attribute name="outlineLevel" type="xsd:integer"/>
    34        <xsd:attribute name="percComp" type="xsd:decimal"/>
    35        <xsd:attribute name="priority" type="xsd:string"/>
    36        <xsd:attribute name="proxy" type="xsd:string"/>
    37        <xsd:attribute name="shortName" type="xsd:string"/>
    38        <xsd:attribute name="start" type="xsd:NMTOKEN"/>
    39        <xsd:attribute name="status" type="xsd:integer"/>
    40        <xsd:attribute name="summary" type="xsd:string"/>
    41        <xsd:attribute name="totalSlack" type="xsd:double"/>
    42        <xsd:attribute name="unplanned" type="xsd:string"/>
    43        <xsd:attribute name="userText1" type="xsd:string"/>
    44        <xsd:attribute name="userText2" type="xsd:string"/>
    45        <xsd:attribute name="userText3" type="xsd:string"/>
    46        <xsd:attribute name="userText4" type="xsd:string"/>
    47        <xsd:attribute name="userText5" type="xsd:string"/>
    48             </xsd:complexType>
    49     </xsd:element>
    50  </xsd:schema>';
    51    :INSTANCE1 :=
    52  '<Task
    53            UID="AJ\&apos;UF`2=_```)O0H;&quot;P!```?P```0" earlyStart="2010-04-20T08:00:00" category="Run"
    54            baseTime="2010-03-26T09:22:00" lateStart="2010-04-20T08:00:00" start="2010-04-20T08:00:00"
    55            proxy="false" earlyFinish="2010-05-12T17:00:00" lateFinish="2010-05-12T17:00:00"
    56            critical="true" status="2" shortName="OASIS 3.2" outlineLevel="4" baseFinish="2010-06-11T17:00:00"
    57            finish="2010-05-12T17:00:00" summary="false" baseStart="2010-05-17T08:00:00" baselineDuration="20.0"
    58            milestone="false" name="OASI 3.2.1 : Association d&apos;un plan A  un PFO" fixed="true"
    59            locked="false" key="false" percComp="1.0" totalSlack="0.0" unplanned="false"/>';
    60  end;
    61  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> set define on
    SQL> --
    SQL> declare
      2    V_XML_SCHEMA xmlType := XMLType(:XMLSCHEMA1);
      3  begin
      4    DBMS_XMLSCHEMA.registerSchema
      5    (
      6      SCHEMAURL        => :SCHEMAURL1,
      7      SCHEMADOC        => V_XML_SCHEMA,
      8      LOCAL            => TRUE,
      9      GENBEAN          => FALSE,
    10      GENTYPES         => TRUE,
    11      GENTABLES        => TRUE,
    12      ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    13    );
    14  end;
    15  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.46
    SQL> desc TASK_TABLE
    Name                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "http://xmlns.example.com/testcase.xsd" Element "Task") STORAGE Object-relational TYPE "Task3632_T"
    SQL> --
    SQL> insert into TASK_TABLE values ( XMLTYPE(:INSTANCE1))
      2  /
    1 row created.
    Elapsed: 00:00:00.01
    SQL> commit
      2  /
    Commit complete.
    Elapsed: 00:00:00.09and am able to extract the value of the name attribute correct
    SQL> select XMLCAST(XMLQUERY('/Task/@name' passing OBJECT_VALUE returning content) as VARCHAR2(64))
      2    from TASK_TABLE
      3  /
    XMLCAST(XMLQUERY('/TASK/@NAME'PASSINGOBJECT_VALUERETURNINGCONTEN
    OASI 3.2.1 : Association d'un plan A  un PFO
    Elapsed: 00:00:00.00Could you try this simplied test in your database...
    Edited by: mdrake on Nov 30, 2010 8:36 PM

  • App Store Civilisation V Installation Error

    I purchased Civ V from the App Store some time ago and initially it installed without an issue on Mountain Lion, however since upgrading to Mavericks I cannot seem to get the download to install via the App Store. I've contacted Aspyr directly and though their support team was far more helpful that Apple could ever be in trying to establish the issue based on the logs, they could not recreate the problem I'm experiencing.
    Any help would be massively appreciated! (Also, if this needs to go into a different forum please let me know and I'll re-post.)
    I believe the key parts of the install logs are below:
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: HashedDownloadProvider: Hash mismatch (b31d26ffbd6365bfa4e2bb1e1f2cd215 should be fc4d8f9a0e9de0c0c2b852a28a21c6bf)
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: ISStoreURLOperation: Chose not to retry after error: Error Domain=ISErrorDomain Code=8 "Hash mismatch" UserInfo=0x7f8ebb483f10 {report-details={
         "bytes-read" = 3082584064;
         "md5-computed" = b31d26ffbd6365bfa4e2bb1e1f2cd215;
         "md5-expected" = fc4d8f9a0e9de0c0c2b852a28a21c6bf;
      }, NSLocalizedDescription=Hash mismatch}
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: AssetDownloadOperation: Asset download cancelled/failed.  Will do retry #2? 1
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: ISStoreURLOperation: Starting URL operation with url=http://a616.phobos.apple.com/eu/r1000/039/Purple/v4/7e/47/d9/7e47d917-a3aa-b134- cb76-27ef7fbb602f/mzps8129841362605371637.pkg / bagKey=(null)
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: -[ISStoreURLOperation _runURLOperation]: _addStandardQueryParametersForURL: http://a616.phobos.apple.com/eu/r1000/039/Purple/v4/7e/47/d9/7e47d917-a3aa-b134- cb76-27ef7fbb602f/mzps8129841362605371637.pkg
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: <HashedDownloadProvider: 0x7f8ebb51c560>: Opening file /var/folders/fp/hvbgp6gd4xd73lq8g1ct7xrh0000gn/C/com.apple.appstore/439924718/m zps8129841362605371637.pkg returning file descriptor 6 (3072327680 streamed)
    Jun 28 16:55:47 Davids-Mac-mini.local storeagent[240] <Critical>: HashedDownloadProvider: Hash mismatch (baaa83c3e82a00be744e2cc7effa908f should be ed171cc12718f15d7543176a47629d9f)
    Jun 28 16:55:48 Davids-Mac-mini.local storeagent[240] <Critical>: AssetDownloadOperation: Subtracted 0 already-downloaded bytes from required space (now requires 5383817345 bytes)
    And:
    Jun 28 17:27:28 Davids-Mac-mini.local storeagent[240] <Critical>: sending status (Civilization V: Campaign Edition): 0.806452% (546.000000)
    Jun 28 17:27:28 --- last message repeated 1 time ---
    Jun 28 17:27:28 Davids-Mac-mini.local storeagent[240] <Critical>: SoftwareMap: No app was found with bundle ID com.aspyr.civ5campaign to upgrade to 1.3.6
    Jun 28 17:27:28 --- last message repeated 1 time ---
    Jun 28 17:27:28 Davids-Mac-mini.local storeagent[240] <Critical>: setPrimaryAppPath "(null)" forProductIdentifier "com.aspyr.civ5campaign"
    And:
    Jun 28 17:27:43 Davids-Mac-mini.local storeagent[240] <Critical>: installClient:didFailWithError Error Domain=PKInstallErrorDomain Code=110 "An error occurred while extracting files from the package “mzps8129841362605371637.pkg”." UserInfo=0x7f8ebb609860 {NSLocalizedDescription=An error occurred while extracting files from the package “mzps8129841362605371637.pkg”., NSFilePath=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxMan ager/13401B36-BF18-444A-832C-BF3AA67EC075.activeSandbox/Root/Applications, NSURL=file:///var/folders/fp/hvbgp6gd4xd73lq8g1ct7xrh0000gn/C/com.apple.appstor e/439924718/mzps8129841362605371637.pkg#com.aspyr.civ5campaign.pkg, PKInstallPackageIdentifier=com.aspyr.civ5campaign, NSUnderlyingError=0x7f8ebb674020 "archive verify failed"}
    Jun 28 17:27:44 Davids-Mac-mini.local storeagent[240] <Critical>: SoftwareMap: No app was found with bundle ID com.aspyr.civ5campaign to upgrade to 1.3.6

    the SSD should be bootable into safe mode as with a regular HDD?
    Yes, unless FileVault is active.
    can the same tasks performed by a safe boot be achieved by using Disk Utility from the recovery partition?
    No. If FileVault is off and you can't boot in safe mode, then there's a hardware fault.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional—ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    Apple also recommends that you deauthorize a device in the iTunes Store before having it serviced.
    *An SSD doesn't need to be zeroed.

  • ACS express v5.0.1 fail to join AD

    hi,
    i try to integrate my ADE 1010 appliances running on ACS express v5.0.1.1 to my DC running on window 2008 server enterprise edition SP2.
    as i fill in the info at domain configuration and test the connection, it's succeed. but once try to save and join it's failed to join the domain.
    log extract from acsxp_adagent :
    PMOACS AD-SCRIPTS: INFO AD script executed from IP: 10.169.2.100 script: /cgi/adjoindomain.pl/cgi/adjoindomain.pl args: DM=jpmosp.xxx.yy&UN=administrator&CN=OU%3DACS&PDC=jpmosp.xxx.yy&PW=******
    PMOACS AD-SCRIPTS: INFO AD join container used: OU=ACS
    PMOACS AD-SCRIPTS: INFO AD join Preferred Domain Server used: jpmosp.xxx.yy
    PMOACS AD-SCRIPTS: INFO AD join container used: OU=ACS
    PMOACS AD-SCRIPTS: INFO AD join Preferred Domain Server used: jpmosp.xxx.yy
    PMOACS AD-SCRIPTS: INFO AD join command used: /opt/CSCOacsxp/adagent/bin/adjoin -u "administrator" -p "******" -z NULL --noconf "jpmosp.xxx.yy" -s "jpmosp.xxx.yy"
    PMOACS AD-SCRIPTS: CRITICAL Unknown status returned from adjoin
    PMOACS AD-SCRIPTS: WARN --- BEGIN FILE LOG FOR /opt/CSCOacsxp/temp/adjoindata.8870 ---
    PMOACS AD-SCRIPTS: WARN Cannot resolve computer name "pmoacs" in DNS or /etc/hosts
    PMOACS AD-SCRIPTS: WARN Please edit /etc/hosts or your DNS server to set your hostname correctly
    PMOACS AD-SCRIPTS: WARN or use --name option to override this check.
    what i did on my window 2008 server:
    1. log in as the administrator, create a container name "acs", and inside of it create a computer name as "pmoacs"
    2. appliance clock is tally with AD-DC server, no time skew problem.
    what i did on my Cisco ADE 1010:
    1. initial setup only.
    thank you
    N

    Hi,
    This is the relevant error message:
    "WARN Cannot resolve computer name "pmoacs" in DNS or /etc/hosts"
    Please make sure you have the acs hostname configured on the DNS server.
    The ACS must be able to resolve its own hostname, otherwise this will fail.
    HTH,
    Tiago
    If  this helps you and/or answers your question please mark the question as  "answered" and/or rate it, so other users can easily find it.

  • Clear server alert

    What is the appropriate way to clear a health alert on an SBS 2011 (Standard) server for the silly Event 2138 from Microsoft-SharePoint Products-SharePoint Foundation for a drive (including a drive that SharePoint does not even use) having less than five
    times the size of RAM as free space?  This alert puts the server in Critical status.
    Susan Bradley discusses how to disable getting this silly alert in her blog post at
    http://msmvps.com/blogs/bradley/archive/2012/01/25/event-2138-drives-are-at-risk-of-running-out-of-free-space.aspx.  I have implemented this fix so that no more of these events will be logged.
    However, once an event has been logged the server is placed in critical alert status (the Windows SBS Console, Network tab, Computers subtab shows the server is critical status).  I can clear the alert by disabling including "Immediate action may be
    required due to a SharePoint error" event log error in the view notification settings.  However, if I re-enable alerting on that event log error, the server goes back into critical alert status.  I slightly suspect that the only way to permanently
    clear this alert is for a SharePoint health check to see the drive with enough free space (which is never going to happen).  I don't know if that specific event log error alert setting is only the silly drive space health check or if other SharePoint
    health checks use the same event log error.  (I suspect the latter.)  I would prefer not to disable other (legitimate) SharePoint health checks from notifications.
    Darryl J. Roberts, IT Professional Services, Ventura, CA, USA

    Hi Darryl:
    If you are still watching this, can you advise if the condition has cleared?  There are several conditions that once they make it into the error/event system they take a number of cycles to clear.
    It might/will be helpful to others to see if there is any finality to this issue.
    Thanks for your attention. 
    Larry Struckmeyer[SBS-MVP]

  • RMI registry on multiple net interfaces

    I'm interested in creating several RMI registry servers, each one listening in one different net interface of the same machine (two ethernet cards). Is there any way to do this without using custom RMI socket factories? From the documentation I have read, it looks like there's no possibility to choose a specific network interface. Instead, RMI registry chooses the one associated to localhost.
    Thanks in advance.
    Zealon

    You could use
    LocaeRegistry.createRegistry(port,csf,ssf) with an
    RMIServerSocketFactory that binds the ServerSocket to
    the appropriate network address, but you will then
    discover that you can only have one Registry per JVM
    because it has a fixed objectID, so don't bother.
    But actually, why do you want to do this? Your stated
    reason is not correct. By default any ServerSocket,
    including those created by the Registry and RMI, is
    bound to 'any', which means it should accept from all
    network interfaces. Perhaps you have the classic
    'hosts' hosts/DNS setup problem where your servers
    embed 127.0.0.1 in the stub? Use
    -Djava.rmi.server.hostname at the server JVM, or
    better still fix your 'hosts' file or DNS setup.
    EJPThanks for your reply. Maybe I didn't explain myself enough.
    I'm working in medical electrocardiography, and have a PC with two net interfaces. The first one is bound to a LAN IP address that belongs to a medical network. Each one of the hosts in this medical network is an electrocardiography monitor, attached to a patient..
    The second net interface is an external IP address (not LAN address).
    I created a remote class called MonitorFactory, that should provide information about the electrocardiography monitors existing into the medical network. It works OK, and I cand bind MonitorFactory objects to a RMI registry with no problem at all.
    There are some reasons I would like to use several RMI registries:
    - First one, I need to control access from external network to my medical network. Medical patient data must be handled very carefully. I thought I could do so by enabling/disabling an RMI registry bound to the external IP address. This way, I could enable access to medical data from outside the medical network, by registering my MonitorFactory objects to this external RMI registry, but only when I decide to do that.
    - Second one, I want an RMI registry always running bound to the medical LAN IP address, so I could use the applications that use MonitorFactory like a local application, not only like a remote one.
    This scheme represents the system I have to build:
    PC with two network interfaces
    External PC <----------->|213.xxx.xxx.xxx 192.xxx.xxx.xxx|<----------> Medical network
    MonitorFactory - Listens to medical data into 192.xxx.xxx.xxx network only. Bound to
    external RMI registry when available and always bound to internal RMI registry.
    External RMI registry - bound to 213.xxx.xxx.xxx. Enabled when I decide to do so.
    Internal RMI registry - bound to 192.xxx.xxx.xxx. Always enabled.
    If I create an RMI registry bound to "any" of the interfaces, I always risk my medical data to the Internet, because there is always a port open at 213.xxx.xxx.xxx accepting connections.
    One possible solution could be using SSL sockets for RMI. This way, only allowed clients could connect to RMI registry. But what worries me most is the fact that a port could be open to the Internet - what about attacks to this open port? If those attacks could make RMI registry fall, medical data flow to another information systems could be interrupted, including medical alarms like critical patient status.
    On the other way, I would like to maintain RMI default sockets for compatibility and future releases of my application.
    Any suggestions?
    Thanks in advance.
    Zealon.

  • Is running a zcm report save to disk without ZRS possible ?

    In a non-ZRS ZCM11.1a setup, is there a way to use one of the custom reports to run saving to disk on the server itself via command line ? The zcm servers are SLES11SP1 x_64.
    Thanks in advance
    Nimal

    nimals wrote:
    >
    > Reporting commands seems to work only if ZRS is installed. For
    > example, from one of our production servers that has no ZRS servers
    > in the zone we get:
    >
    > ---------------------------------
    > zenasprod02:~ # zman rpl WID -r -f "Novell ZENworks Reports"
    >
    > Username:Administrator
    > Password:********
    >
    > Error:You do not have this feature installed.
    > Error:Failed to connect to the CMS server. For more information, see
    > the zman log.
    > Error:An internal error occurred. Please see the zman log for full
    > stack trace.
    >
    >
    > ERROR: 16
    > -----------------------------------------
    >
    > But from a test machine that has ZRS the same command gives:
    >
    > ------------------------------------------
    > sles11vm1:~ # zman rpl WID -r -f "Novell ZENworks Reports"
    >
    > Username:Administrator
    > Password:*******
    >
    >
    > Report ID | Name | Type
    >
    > > Folder | Description
    > ----------+------------------------------------------------+----------
    > -----------------+-----------------------------+------------ 1200
    > | Licensed Products And Entitlements | Web Intelligence
    > Document | License Management | 1195 | Allocations vs
    > Installations | Web Intelligence Document | License
    > Allocation | 1198 | Current Allocations
    > | Web Intelligence Document | License Allocation |
    > 1194 | Demographic Over-Allocation | Web
    > Intelligence Document | License Allocation |
    > 1197 | Demographic Under-Allocation | Web
    > Intelligence Document | License Allocation |
    > 1192 | Device Over-Allocation | Web
    > Intelligence Document | License Allocation |
    > 1196 | Duplicate Allocations | Web
    > Intelligence Document | License Allocation |
    > 1199 | Installations with no Allocations | Web
    > Intelligence Document | License Allocation |
    > 1193 | Licensed Products Allocations | Web
    > Intelligence Document | License Allocation |
    > 1190 | Purchase Record Detail | Web
    > Intelligence Document | Purchases |
    > 1189 | Purchase Record Summary | Web
    > Intelligence Document | Purchases |
    > 1186 | Compliance Status | Web
    > Intelligence Document | Software Compliance |
    > 1185 | Discovered Product Summary | Web
    > Intelligence Document | Software Compliance |
    > 1187 | Software Compliance | Web
    > Intelligence Document | Software Compliance |
    > 1202 | Discovered Standalone Components | Web
    > Intelligence Document | Suites |
    > 1238 | Bundle Deployment Details | Web
    > Intelligence Document | Bundles and Policies |
    > 1235 | Bundle Deployment Details - Devices | Web
    > Intelligence Document | Bundles and Policies |
    > 1234 | Bundle Deployment Status | Web
    > Intelligence Document | Bundles and Policies |
    > 1236 | Bundle Information | Web
    > Intelligence Document | Bundles and Policies |
    > 1242 | Bundles and Policies Assigned to Devices | Web
    > Intelligence Document | Bundles and Policies |
    > 1239 | Content by Bundles and Policies | Web
    > Intelligence Document | Bundles and Policies |
    > 1241 | Content by Server | Web
    > Intelligence Document | Bundles and Policies |
    > 1237 | Policy Enforcement Details - Devices | Web
    > Intelligence Document | Bundles and Policies |
    > 1240 | Policy Enforcement Status | Web
    > Intelligence Document | Bundles and Policies |
    > 1164 | CISCO Routers | Web
    > Intelligence Document | Discovered Devices |
    > 1158 | Deployable Devices | Web
    > Intelligence Document | Discovered Devices |
    > 1161 | Managed Devices by ZENworks Management Zone | Web
    > Intelligence Document | Discovered Devices |
    > 1162 | Printed Page Count by Printer | Web
    > Intelligence Document | Discovered Devices |
    > 1160 | Printer Alerts | Web
    > Intelligence Document | Discovered Devices |
    > 1165 | Printer Supply Levels | Web
    > Intelligence Document | Discovered Devices |
    > 1163 | Unmanaged Servers | Web
    > Intelligence Document | Discovered Devices |
    > 1159 | Unmanaged Workstations | Web
    > Intelligence Document | Discovered Devices |
    > 1168 | Policy Assignments by Device | Web
    > Intelligence Document | EndPoint Security |
    > 1167 | Policy Assignments by User | Web
    > Intelligence Document | EndPoint Security |
    > 1181 | Zone Policy Details | Web
    > Intelligence Document | EndPoint Security |
    > 1178 | Application Control Policy Details | Web
    > Intelligence Document | Policies |
    > 1170 | Communication Hardware Policy Details | Web
    > Intelligence Document | Policies |
    > 1175 | Data Encryption Policy Details | Web
    > Intelligence Document | Policies |
    > 1179 | Firewall Policy Details | Web
    > Intelligence Document | Policies |
    > 1176 | Location Assignment Policies | Web
    > Intelligence Document | Policies |
    > 1180 | Scripting Policy Details | Web
    > Intelligence Document | Policies |
    > 1174 | Security Settings Policy Details | Web
    > Intelligence Document | Policies |
    > 1171 | Storage Device Policy Details | Web
    > Intelligence Document | Policies |
    > 1173 | USB Policy Details | Web
    > Intelligence Document | Policies |
    > 1172 | VPN enforcement Policy Details | Web
    > Intelligence Document | Policies |
    > 1177 | Wi-Fi Policy Details | Web
    > Intelligence Document | Policies |
    > 1222 | Baseline Report | Web
    > Intelligence Document | Patch Management |
    > 1221 | Bundle Deployment Summary | Web
    > Intelligence Document | Patch Management |
    > 1228 | Critical Patch Status Report | Web
    > Intelligence Document | Patch Management |
    > 1219 | Device Patch Status By Vendor | Web
    > Intelligence Document | Patch Management |
    > 1229 | Mandatory Baseline By Patch | Web
    > Intelligence Document | Patch Management |
    > 1224 | Mandatory Baseline Details | Web
    > Intelligence Document | Patch Management |
    > 1220 | Mandatory Baseline Summary | Web
    > Intelligence Document | Patch Management |
    > 1223 | Patch Analysis | Web
    > Intelligence Document | Patch Management |
    > 1227 | Patch Assesment Report | Web
    > Intelligence Document | Patch Management |
    > 1231 | Patch Bundle Deployment Status | Web
    > Intelligence Document | Patch Management |
    > 1218 | Patch Deployment Summary | Web
    > Intelligence Document | Patch Management |
    > 1232 | Patch Detail Report | Web
    > Intelligence Document | Patch Management |
    > 1226 | Patch Release Report | Web
    > Intelligence Document | Patch Management |
    > 1230 | Patch Tuesday Summary | Web
    > Intelligence Document | Patch Management |
    > 1225 | Top 10 Not Patched Critical Patches | Web
    > Intelligence Document | Patch Management |
    > 1156 | User Details Report | Web
    > Intelligence Document | User Reports |
    > 1153 | A4-Landscape | Web
    > Intelligence Document | ZENworks Standard Templates |
    > 1154 | A4-Portrait | Web
    > Intelligence Document | ZENworks Standard Templates |
    > 1152 | Letter-Landscape | Web
    > Intelligence Document | ZENworks Standard Templates |
    > 1151 | Letter-Portrait | Web
    > Intelligence Document | ZENworks Standard Templates |
    > 1204 | Device Listing | Web
    > Intelligence Document | ZENworks System |
    > 1216 | Linux Subscription Session Details | Web
    > Intelligence Document | ZENworks System |
    > 1213 | Linux Subscriptions | Web
    > Intelligence Document | ZENworks System |
    > 1207 | Managed Devices System Update Status - Windows | Web
    > Intelligence Document | ZENworks System |
    > 1214 | Non-Compliant Devices | Web
    > Intelligence Document | ZENworks System |
    > 1211 | Out of Band Power Management | Web
    > Intelligence Document | ZENworks System |
    > 1205 | Windows 7 System Readiness Report | Web
    > Intelligence Document | ZENworks System |
    > 1206 | ZENworks License Information | Web
    > Intelligence Document | ZENworks System |
    > 1215 | ZENworks Messages | Web
    > Intelligence Document | ZENworks System |
    > 1212 | ZENworks Server Statistics | Web
    > Intelligence Document | ZENworks System |
    > 1210 | Device AC power Policy | Web
    > Intelligence Document | Power Management |
    > 1209 | Power Compliance Report | Web
    > Intelligence Document | Power Management |
    > ----------------------------------------------------------------------
    > -------------------------------------------------------------------
    >
    > Is there any way to drive a report in a non-ZRS zcm setup via command
    > line without installing ZRS ?
    I think you're right. That should be mentioned in the docs. This is
    just a regular report which can be created an ran without the ZRS
    installed - so one should think you could call this command and export
    it to a file...
    Niels
    A true red devil...

Maybe you are looking for

  • REP-3131: Parameter form boilerplate text cannot fit on the page

    Dear members, I am getting the following error while running the report : REP-3131: Parameter form boilerplate text cannot fit on the page can any body tell me how to correct it. I need to add a extra field in the standard oracle report "RECEIPT TRAV

  • MAIL Adapter Error..........

    Hi all, I am getting an error in sender MAIL adapter configuration in communication channel monitering. "<b>exception caught during processing mail message; java.io.IOException: unexpected greeting response; read 220 tn6tdc00.wdf.sap.corp SAP 7.00(52

  • Unable to launch form in oracle ebiz 12.1.3 multinode (shared appl_top)

    Hi, I am getting below error while launching form. Oracle ebiz R12.1.3 multi node application configured in shared appl_Top on linux x86-32 bit. I getting this error only on secondary application node. load: class oracle/apps/fnd/formsClient/FmsLaunc

  • Mac mini panne carte graphique

    Bonsoir, Depuis hier, aucun signal ne passe entre mon MAC Mini Server et ma Télé en Full HD. La liaison est effectuée par câble HDMI. La panne a été brusque, le Mac Mini a un mois environ. Le seul moyen d'atteindre le MAC est de passer par la fonctio

  • One Level searches take too long

    Hi, I noticed a strange behavior, where I think that iDS 5.1 might have an fundamental db-error: I loaded a database with 1.4 million entries. I have a base, represented by an organizational - class. This class has a hand full subordinates (own objec