Getting invalid-attribute-value Error during Delta Import on Call-based ECMA2

I'm developing an ECMA2 MA to which supports delta imports.  I have found very few samples of working code to do delta imports, so my attempts are created
using a lot of trial and error... Any samples of working Call based MA's with delta support would be much appreciated :-)
The data is located in a SQL server and the schema (for delta) is like this (simplified):
EmpID string
Status string
UPDATESTATUS string (<-- This is the update column with values New/Update/Delete)
For each EmpID, there may be multiple Status values, i.e. Status should be imported into a multi value attribute in FIM.
For the full import this is working as expected, but I run into issues when attempting to do the delta imports
The code for the delta import
private
GetImportEntriesResults GetImportEntries_Delta(GetImportEntriesRunStep importRunStep)
GetImportEntriesResults importReturnInfo;
List<CSEntryChange> csentries =
new List<CSEntryChange>();
string employeeID =
null;
string appStatus =
null;
string currEmployeeID =
CSEntryChange csentry =
null;
List<string> appStatusList =
new List<string>();
string changeMode =
for (int i = currentReadRecord; i <= da.Tables["AppStatus"].Rows.Count - 1; i++)
if (currEmployeeID != da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim())
if (currEmployeeID !=
"") // this should be true except for the first run
csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
csentries.Add(csentry);
appStatusList = new
List<string>();
if (csentries.Count >= m_importPageSize)
              currentReadRecord = i;
importReturnInfo = new
GetImportEntriesResults();
importReturnInfo.MoreToImport = (i <= da.Tables["AppStatus"].Rows.Count - 1);
importReturnInfo.CSEntries = csentries;
return importReturnInfo;
changeMode = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(2).ToString().Trim();
csentry = CSEntryChange.Create();
csentry.ObjectType = "ApplicationIdentity";
employeeID = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim();
currEmployeeID = (string)employeeID;
switch (changeMode)
case "New":
csentry.ObjectModificationType = ObjectModificationType.Add;
csentry.AttributeChanges.Add(AttributeChange.CreateAttributeAdd("EmployeeID", employeeID));
break;
case "Update":
csentry.ObjectModificationType = ObjectModificationType.Update;
csentry.DN = employeeID;
break;
case "Delete":
csentry.ObjectModificationType = ObjectModificationType.Delete;
                     csentry.DN = employeeID;
break;
default:
throw new
UnexpectedDataException(string.Format("Unknown modification type: {0}", changeMode));
appStatus = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(1).ToString().Trim();
appStatusList.Add(appStatus);
// save the last object
if (csentry != null)
csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
csentries.Add(csentry);
importReturnInfo = new
GetImportEntriesResults();
importReturnInfo.MoreToImport = false;
importReturnInfo.CSEntries = csentries;
return importReturnInfo;
The code compiles and executes, but the delta import fails with the "invalid-attribute-value" message per csentry.
From the eventlog I have the following message
The server encountered an unexpected error while performing an operation for a management agent.
"System.InvalidCastException: Unable to cast object of type 'System.Collections.Generic.List`1[System.String]' to type 'System.String'.
   at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.AddAttributeToDImage(CDImage* pdimage, String attributeName, AttributeModificationType
attributeModificationType, IList`1 attributeValueChanges, Int32 escapeReferenceDNValues)
   at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.ConvertToDImage(CSEntryChange csEntryChange, CDImage** ppDImage, Int32 escapeReferenceDNValues)
   at Microsoft.MetadirectoryServices.Impl.ScriptHost.InvokeExtMA_ImportEntry(UInt32 cBatchSize, UInt16* pcszCustomData, UInt32 cFullObject,
_OCTET* rgoctFullObject, UInt32* rgomodt, UInt32* pcpcszChangedAttributes, UInt16*** prgpcszChangedAttributes, Int32 fIsDNStyleNone, UInt16** ppszUpdatedCustomData, _OCTET* rgoctCSImage, Int32* rgextec, UInt16** rgpszErrorName, UInt16** rgpszErrorDetail, Int32*
pfMoreToImport)"
To me it seems as if FIM is unable to process the List of strings that is returned when processing the delta. Remember that this works OK when doing the full import. 
Do you have any suggestions as to why this fails?
Kjetil

Hi,
Thank you Søren! I got some good clues for the right direction from your answer. If anyone would be looking same answers the correct solution would be down below. I hope it would be help for someone else too.
Get-Shema.ps1
$obj
= New-Object
-Type PSCustomObject
$obj
| Add-Member
-Type NoteProperty
-Name "Anchor-Id|String"
-Value 1
$obj
| Add-Member
-Type NoteProperty
-Name "objectClass|String"
-Value "user"
$Obj
| Add-Member
-Type NoteProperty
-Name "IsLicensed|Boolean"
-Value $true
$Obj
| Add-Member
-Type NoteProperty
-Name "FirstName|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "LastName|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "mail|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "immutableId|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "DisplayName|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "UsageLocation|String"
-Value ""
$Obj
| Add-Member
-Type NoteProperty
-Name "ProxyAddresses|String[]"
-Value ("","")
$Obj
| Add-Member
-Type NoteProperty
-Name "Licenses|String[]"
-Value ("","")
$obj
Import.ps1
#Always pass objects as hash table in pipeline
foreach ($User
in $Users)
$obj = @{}
$obj.Add("Id",
$User.UserPrincipalName)
$obj.Add("objectClass",
"user")
$obj.Add("IsLicensed",
$User.IsLicensed)
$obj.Add("FirstName",
$User.FirstName)
$obj.Add("LastName",
$User.LastName)
$obj.Add("mail",
$User.UserPrincipalName)
$obj.Add("immutableId",
$User.immutableId)
$obj.Add("DisplayName",
$User.DisplayName)
$obj.Add("UsageLocation",
$User.UsageLocation)
$obj.Add("ProxyAddresses", ($User.ProxyAddresses
-ne ""))
$obj.add("Licenses", ($User.Licenses.AccountSkuId))
$obj
Marti

Similar Messages

  • Getting "Invalid Precision Value" Error

    I am totally stumped and need some help. I am using Java 1.3.1 and have a JDBC-ODBC connection setup to an Access97 database. There is a field in the database table that is an OLEObject and I am using setBytes in a PreparedStatement to set that field.
    I have been given two scenarios: one that succeeds and one that fails.
    For the success case, the length of the byte array is 8158.
    For the failure case, the length of the byte array is 7982. The error I get is:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Invalid precision value
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterBinary(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setBinary(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setBytes(Unknown Source)
    Can anyone tell me what boundary I crossed and how I can get around this problem? I need a fix to this very badly.
    Thanks.
    Bill

    You can try out
    setObject() instead of setBytest() ,method of PreparedStatement.
    It worked in my case when I faced similar problem setting
    a string object on Preparedstatement.
    Best of luck
    Sandesh.

  • Runtime error to get the attribute value of an element

    mydoc.xml
    =========
    <?xml version = "1.0"?>
    <persons>
         <person name="Joe" age="22" />
    </persons>
    In mydox.xml, I want to get the attribute values of element person. Of course,
    in the actual XML file, it is more complicated.
    However, I get the following run-time error,
    Exception in thread "main" java.lang.NullPointerException
    at ParserTest.main(ParserTest2.java:18) on line element.hasAttribute("name")
    import java.io.*;
    import javax.xml.transform.*;
    import javax.xml.transform.dom.*;
    import javax.xml.transform.stream.*;
    import org.w3c.dom.*;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    public class ParserTest2
         public static void main(String[] args) throws ParserConfigurationException, SAXException
              String xmlFile = "mydoc.xml";
              doc = getDocumentFromFile(xmlFile);
              Element element = doc.getElementById("person");
              //Exception in thread "main" java.lang.NullPointerException
              if (element.hasAttribute("name"))
              {     System.out.println("attribute = " + element.getAttribute("name"));
         public static Document getDocumentFromFile(String xmlFile)
                   try
                        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                        DocumentBuilder builder = factory.newDocumentBuilder();
                        Document doc = builder.parse(new File(xmlFile));
                        return doc;
                   catch(IOException e)
                   {     e.printStackTrace();
                        return null;
                   catch(SAXException e)
                   {     e.printStackTrace();
                        return null;
                   catch(ParserConfigurationException e)
                   {     e.printStackTrace();
                        return null;
         private static Document doc;
    any ideas? Thanks!!

    [url http://java.sun.com/j2se/1.4.2/docs/api/java/lang/NullPointerException.html]java.lang.NullPointerException
    Thrown when an application attempts to use null in a case where an object is required. These include:
    Calling the instance method of a null object.
    Accessing or modifying the field of a null object.
    Taking the length of null as if it were an array.
    Accessing or modifying the slots of null as if it were an array.
    Throwing null as if it were a Throwable value.
    You know what line it happens on, so you know which of these cases applies. So you know that variable "element" is null at that point. How could it come to be null? You assign to it only once, two lines above. How could that assignment be null? Check the documentation for [url http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/Document.html#getElementById(java.lang.String)]org.w3c.dom.Document.getElementById().
    Repeat every time you get one of those exceptions.

  • Getting mandatory attribute validation error when the value is defaulted through customization

    Hi
    I am getting Mandatory attribute validation error when we default the value through customization.
    In the UI we have attribute called Last Name which is mandatory at EO level. Customer wanted to default Last name to some value, through page composer it is defaulted to some text and saved.
    When ever we open the page the the same value is defaulted as Last Name and appearing in the UI. But when we submit the page, EO level validation is failing. hence we are getting last name is missing.
    When i debug the code last name attribute value for EO is blank.
    In the UI the attribute last name is associated with bindings  --> #{bindings.lastname.inputvalue}
    The validation is failing if we remove the default binding associated with inputtext box.
    Can some body help what can be reason and is there any solution?
    Thanks,
    Praveen

    version 12.1.2
    I am struggling with same situation, I can't set the default value at business component because, the default value comes from a REST service at run time. In page A,  I have a field F1 that contains value from REST service. Page B has a database bound field F2, whose default value should come from F1 in Page A when a user navigates from Page A to Page B. If I set the value of F2 to be the value of F1, then it displays the value in the UI, but nothing gets submitted to EO and fails at commit.
    To make things difficult, here is my situation: Page A lives in bounded taskflow TF1, and Page B lives in bounded taskflow TF2. So I have created an input parameter P1 in TF 2, which carries over the value of F1 in Page A to Page B. When I am in Page B, I can successfully see the value of the taskflow input parameter P1. So, how do I  programmatically set the value of field F2 with the value of input parameter P1?
    I tried setting the F2.inputValue  in a method call M1 in  taskflow TF2 prior to Page B, but I get null pointer exception as it can't see field F2 yet.
    It seems like a simple thing to do, but I have spent a lot of time trying to make it work without any success.
    I would greatly appreciate any guidance.

  • Error during export & import of rules in RAR 5.2

    Hi all,
    We followed the steps mentioned in exporting & importing the rules as per the Config guide. But we
    are receiving the below error during the import of rules. Can anybody please throw a limelight on why this error message is appearing?
    "Error in Table Data ==> VIRSA_CC_CRPROF
    SQL==>Insert into VIRSA_CC_CRPROF(VSYSKEY,PROFILE,RULESETID,RISKLEVEL,STATUS)Values(??????)
    Record==>D VIRSA_CC_CRPROF null"
    We also ensured that the downloaded file is not truncated and saved it in a separate folder. Does the file needs to saved in ANSI or Unicode text? We saved in ANSI
    Also the background ground job is not getting scheduled automatically during the import of ruels. Is that due to the above error?
    Thanks and Best Regards,
    Srihari.K

    Hello Sri,
    background job for generating the rules won`t be scheduled before you upload the file successfully.
    The most obvious reason for this error message is that you have line in your file - in table VIRSA_CC_CRPROF that is corrupted. Make sure all lines from table VIRSA_CC_CRPROF have all predefined fields - (VSYSKEY,PROFILE,RULESETID,RISKLEVEL,STATUS).
    If you keep hiting this problem just delete this table, after the upload you`ll add the critical profiles manually - I bet you don`t have many of them.
    Also from my experience I always choose to save the downloaded file in UNICODE UTF-8 format.
    Once the file is saved in other format, there`s no use of it, download it again and save directly in Unicode.
    Make sure you don`t have empty fields, even in the fields where you don`t have values, you must leave space, otherwise you`ll keep hitting the same issue.
    Regards,
    Iliya

  • Get '500 Internal Server Error' during SIP INVITE - cause 44

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    Get ‘500 Internal Server Error’ during SIP INVITE - cause 44
    Have you ever seen anything like this before?  It usually works, but intermittently, we see calls get rejected.  It somehow seems related to high loads on the router.  We reduced the occurrences by changing our code to throttle the number of SIP INVITEs we send, but this doesn’t scale well.  Once it occurs, the only way to clean it up is to do a shut/no shut on the voice-port associated to SIP INVITE.
    Any suggestions on how we can proceed to debug this issue?
    BACKGROUND:
    Cisco 2811 running (C2800NM-ADVENTERPRISEK9-M), Version 12.4(24)T3, RELEASE SOFTWARE (fc2)
    NAME: "2811 chassis", DESCR: "2811 chassis" PID: CISCO2811
    NAME: "9 Port FE Switch on Slot 0 SubSlot 1", DESCR: "9 Port FE Switch" PID: HWIC-D-9ESW
    NAME: "WIC/VIC/HWIC 1 Power Daughter Card", DESCR: "9-Port HWIC-ESW Power Daughter Card" PID: ILPM-8
    NAME: "Two port E1 voice interface daughtercard on Slot 0 SubSlot 2", DESCR: "Two port E1 voice interface daughtercard" PID: VWIC-2MFT-E1=
    NAME: "Two port E1 voice interface daughtercard on Slot 0 SubSlot 3", DESCR: "Two port E1 voice interface daughtercard" PID: VWIC-2MFT-E1=
    NAME: "PVDMII DSP SIMM with four DSPs on Slot 0 SubSlot 4", DESCR: "PVDMII DSP SIMM with four DSPs" PID: PVDM2-64
    NAME: "High Density Voice2 Network module with on board two port interface  on Slot 1", DESCR: "High Density Voice2 Network module with on board two port interface " PID: NM-HDV2-2T1/E1
    NAME: "2nd generation two port EM voice interface daughtercard on Slot 1 SubSlot 0", DESCR: "2nd generation two port EM voice interface daughtercard" PID: VIC2-2E/M
    NAME: "PVDMII DSP SIMM with four DSPs on Slot 1 SubSlot 2", DESCR: "PVDMII DSP SIMM with four DSPs" PID: PVDM2-64
    NAME: "PVDMII DSP SIMM with four DSPs on Slot 1 SubSlot 3", DESCR: "PVDMII DSP SIMM with four DSPs" PID: PVDM2-64
    NAME: "PVDMII DSP SIMM with four DSPs on Slot 1 SubSlot 4", DESCR: "PVDMII DSP SIMM with four DSPs" PID: PVDM2-64
    NAME: "PVDMII DSP SIMM with four DSPs on Slot 1 SubSlot 5", DESCR: "PVDMII DSP SIMM with four DSPs" PID: PVDM2-64
    WIRESHARK:
    No.     Time        Source                Destination           Protocol Info
          2 0.057246    10.194.154.136        171.68.115.156        SIP      Status: 100 Trying
    Frame 2 (471 bytes on wire, 471 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 100 Trying
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41a-100875-517454db
            From: <sip:[email protected]:5060>;tag=82f4a00-9c7344ab-13c4-45026-41a-4ea64c5a-41a
            To: <sip:[email protected]:5060>
            Date: Wed, 08 Sep 2010 20:47:49 GMT
            Call-ID: 80e4f50-9c7344ab-13c4-45026-41a-10aff3f4-41a
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow-Events: telephone-event
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Length: 0
    No.     Time        Source                Destination           Protocol Info
          3 0.071428    10.194.154.136        171.68.115.156        SIP/SDP  Status: 183 Session Progress, with session description
    Frame 3 (1109 bytes on wire, 1109 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 183 Session Progress
       Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41a-100875-517454db
            From: <sip:[email protected]:5060>;tag=82f4a00-9c7344ab-13c4-45026-41a-4ea64c5a-41a
            To: <sip:[email protected]:5060>;tag=48645D8-1175
            Date: Wed, 08 Sep 2010 20:47:49 GMT
            Call-ID: 80e4f50-9c7344ab-13c4-45026-41a-10aff3f4-41a
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
            Allow-Events: telephone-event
            Remote-Party-ID: <sip:[email protected]>;party=called;screen=no;privacy=off
                [Expert Info (Note/Undecoded): Unrecognised SIP header (Remote-Party-ID)]
                    [Message: Unrecognised SIP header (Remote-Party-ID)]
                    [Severity level: Note]
                    [Group: Undecoded]
            Contact: <sip:[email protected]:5060>
            Supported: sdp-anat
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Type: application/sdp
            Content-Disposition: session;handling=required
            Content-Length: 264
        Message Body
            Session Description Protocol
                Session Description Protocol Version (v): 0
                Owner/Creator, Session Id (o): CiscoSystemsSIP-GW-UserAgent 8759 6996 IN IP4 10.194.154.136
                    Owner Username: CiscoSystemsSIP-GW-UserAgent
                    Session ID: 8759
                    Session Version: 6996
                    Owner Network Type: IN
                    Owner Address Type: IP4
                    Owner Address: 10.194.154.136
                Session Name (s): SIP Call
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Time Description, active time (t): 0 0
                    Session Start Time: 0
                    Session Stop Time: 0
                Media Description, name and address (m): audio 18710 RTP/AVP 18 101
                    Media Type: audio
                    Media Port: 18710
                    Media Protocol: RTP/AVP
                    Media Format: ITU-T G.729
                    Media Format: DynamicRTP-Type-101
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Media Attribute (a): rtpmap:18 G729/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 18
                    MIME Type: G729
                    Sample Rate: 8000
                Media Attribute (a): fmtp:18 annexb=no
                    Media Attribute Fieldname: fmtp
                    Media Format: 18 [G729]
                    Media format specific parameters: annexb=no
                Media Attribute (a): rtpmap:101 telephone-event/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 101
                   MIME Type: telephone-event
                    Sample Rate: 8000
                Media Attribute (a): fmtp:101 0-16
                    Media Attribute Fieldname: fmtp
                    Media Format: 101 [telephone-event]
                    Media format specific parameters: 0-16
    No.     Time        Source                Destination           Protocol Info
          4 0.089917    10.194.154.136        171.68.115.156        SIP/SDP  Status: 200 OK, with session description
    Frame 4 (1116 bytes on wire, 1116 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 200 OK
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41a-100875-517454db
            From: <sip:[email protected]:5060>;tag=82f4a00-9c7344ab-13c4-45026-41a-4ea64c5a-41a
            To: <sip:[email protected]:5060>;tag=48645D8-1175
            Date: Wed, 08 Sep 2010 20:47:49 GMT
            Call-ID: 80e4f50-9c7344ab-13c4-45026-41a-10aff3f4-41a
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
            Allow-Events: telephone-event
            Remote-Party-ID: <sip:[email protected]>;party=called;screen=no;privacy=off
                [Expert Info (Note/Undecoded): Unrecognised SIP header (Remote-Party-ID)]
                    [Message: Unrecognised SIP header (Remote-Party-ID)]
                    [Severity level: Note]
                    [Group: Undecoded]
            Contact: <sip:[email protected]:5060>
            Supported: replaces
            Supported: sdp-anat
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Type: application/sdp
            Content-Disposition: session;handling=required
            Content-Length: 264
        Message Body
            Session Description Protocol
                Session Description Protocol Version (v): 0
                Owner/Creator, Session Id (o): CiscoSystemsSIP-GW-UserAgent 8759 6996 IN IP4 10.194.154.136
                    Owner Username: CiscoSystemsSIP-GW-UserAgent
                    Session ID: 8759
                    Session Version: 6996
                    Owner Network Type: IN
                    Owner Address Type: IP4
                    Owner Address: 10.194.154.136
                Session Name (s): SIP Call
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Time Description, active time (t): 0 0
                    Session Start Time: 0
                    Session Stop Time: 0
                Media Description, name and address (m): audio 18710 RTP/AVP 18 101
                    Media Type: audio
                    Media Port: 18710
                    Media Protocol: RTP/AVP
                    Media Format: ITU-T G.729
                    Media Format: DynamicRTP-Type-101
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Media Attribute (a): rtpmap:18 G729/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 18
                    MIME Type: G729
                    Sample Rate: 8000
                Media Attribute (a): fmtp:18 annexb=no
                    Media Attribute Fieldname: fmtp
                    Media Format: 18 [G729]
                    Media format specific parameters: annexb=no
                Media Attribute (a): rtpmap:101 telephone-event/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 101
                    MIME Type: telephone-event
                    Sample Rate: 8000
                Media Attribute (a): fmtp:101 0-16
                    Media Attribute Fieldname: fmtp
                    Media Format: 101 [telephone-event]
                    Media format specific parameters: 0-16
    No.     Time        Source                Destination           Protocol Info
         7 1.661867    10.194.154.136        171.68.115.156        SIP      Status: 100 Trying
    Frame 7 (469 bytes on wire, 469 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 100 Trying
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41c-100eca-13593e22
            From: <sip:[email protected]:5060>;tag=82f4b98-9c7344ab-13c4-45026-41c-669825d-41c
            To: <sip:[email protected]:5060>
            Date: Wed, 08 Sep 2010 20:47:51 GMT
            Call-ID: 80e5138-9c7344ab-13c4-45026-41c-3f6bfc7-41c
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow-Events: telephone-event
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Length: 0
    No.     Time        Source                Destination           Protocol Info
          8 1.676056    10.194.154.136        171.68.115.156        SIP/SDP  Status: 183 Session Progress, with session description
    Frame 8 (1107 bytes on wire, 1107 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 183 Session Progress
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41c-100eca-13593e22
            From: <sip:[email protected]:5060>;tag=82f4b98-9c7344ab-13c4-45026-41c-669825d-41c
            To: <sip:[email protected]:5060>;tag=4864C1C-10F8
            Date: Wed, 08 Sep 2010 20:47:51 GMT
            Call-ID: 80e5138-9c7344ab-13c4-45026-41c-3f6bfc7-41c
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
            Allow-Events: telephone-event
            Remote-Party-ID: <sip:[email protected]>;party=called;screen=no;privacy=off
                [Expert Info (Note/Undecoded): Unrecognised SIP header (Remote-Party-ID)]
                    [Message: Unrecognised SIP header (Remote-Party-ID)]
                    [Severity level: Note]
                    [Group: Undecoded]
            Contact: <sip:[email protected]:5060>
            Supported: sdp-anat
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Type: application/sdp
            Content-Disposition: session;handling=required
            Content-Length: 264
        Message Body
            Session Description Protocol
                Session Description Protocol Version (v): 0
                Owner/Creator, Session Id (o): CiscoSystemsSIP-GW-UserAgent 7991 6854 IN IP4 10.194.154.136
                    Owner Username: CiscoSystemsSIP-GW-UserAgent
                    Session ID: 7991
                    Session Version: 6854
                    Owner Network Type: IN
                    Owner Address Type: IP4
                    Owner Address: 10.194.154.136
                Session Name (s): SIP Call
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Time Description, active time (t): 0 0
                    Session Start Time: 0
                    Session Stop Time: 0
                Media Description, name and address (m): audio 17660 RTP/AVP 18 101
                    Media Type: audio
                    Media Port: 17660
                    Media Protocol: RTP/AVP
                    Media Format: ITU-T G.729
                    Media Format: DynamicRTP-Type-101
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Media Attribute (a): rtpmap:18 G729/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 18
                    MIME Type: G729
                    Sample Rate: 8000
                Media Attribute (a): fmtp:18 annexb=no
                    Media Attribute Fieldname: fmtp
                    Media Format: 18 [G729]
                    Media format specific parameters: annexb=no
                Media Attribute (a): rtpmap:101 telephone-event/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 101
                    MIME Type: telephone-event
                    Sample Rate: 8000
                Media Attribute (a): fmtp:101 0-16
                    Media Attribute Fieldname: fmtp
                    Media Format: 101 [telephone-event]
                    Media format specific parameters: 0-16
    No.     Time        Source                Destination           Protocol Info
         10 1.700567    10.194.154.136        171.68.115.156        SIP      Status: 100 Trying
    Frame 10 (471 bytes on wire, 471 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 100 Trying
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41c-100f04-2fde97a9
            From: <sip:[email protected]:5060>;tag=82f4d30-9c7344ab-13c4-45026-41c-5c20b753-41c
            To: <sip:[email protected]:5060>
            Date: Wed, 08 Sep 2010 20:47:51 GMT
            Call-ID: 80e5320-9c7344ab-13c4-45026-41c-7fbe4865-41c
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow-Events: telephone-event
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Length: 0
    No.     Time        Source                Destination           Protocol Info
         11 1.726376    10.194.154.136        171.68.115.156        SIP/SDP  Status: 200 OK, with session description
    Frame 11 (1114 bytes on wire, 1114 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 200 OK
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41c-100eca-13593e22
            From: <sip:[email protected]:5060>;tag=82f4b98-9c7344ab-13c4-45026-41c-669825d-41c
            To: <sip:[email protected]:5060>;tag=4864C1C-10F8
            Date: Wed, 08 Sep 2010 20:47:51 GMT
            Call-ID: 80e5138-9c7344ab-13c4-45026-41c-3f6bfc7-41c
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
            Allow-Events: telephone-event
            Remote-Party-ID: <sip:[email protected]>;party=called;screen=no;privacy=off
                [Expert Info (Note/Undecoded): Unrecognised SIP header (Remote-Party-ID)]
                    [Message: Unrecognised SIP header (Remote-Party-ID)]
                    [Severity level: Note]
                    [Group: Undecoded]
            Contact: <sip:[email protected]:5060>
            Supported: replaces
            Supported: sdp-anat
            Server: Cisco-SIPGateway/IOS-12.x
            Content-Type: application/sdp
            Content-Disposition: session;handling=required
            Content-Length: 264
        Message Body
            Session Description Protocol
                Session Description Protocol Version (v): 0
                Owner/Creator, Session Id (o): CiscoSystemsSIP-GW-UserAgent 7991 6854 IN IP4 10.194.154.136
                    Owner Username: CiscoSystemsSIP-GW-UserAgent
                    Session ID: 7991
                    Session Version: 6854
                    Owner Network Type: IN
                    Owner Address Type: IP4
                    Owner Address: 10.194.154.136
                Session Name (s): SIP Call
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Time Description, active time (t): 0 0
                    Session Start Time: 0
                    Session Stop Time: 0
                Media Description, name and address (m): audio 17660 RTP/AVP 18 101
                    Media Type: audio
                    Media Port: 17660
                    Media Protocol: RTP/AVP
                    Media Format: ITU-T G.729
                    Media Format: DynamicRTP-Type-101
                Connection Information (c): IN IP4 10.194.154.136
                    Connection Network Type: IN
                    Connection Address Type: IP4
                    Connection Address: 10.194.154.136
                Media Attribute (a): rtpmap:18 G729/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 18
                    MIME Type: G729
                    Sample Rate: 8000
                Media Attribute (a): fmtp:18 annexb=no
                    Media Attribute Fieldname: fmtp
                    Media Format: 18 [G729]
                    Media format specific parameters: annexb=no
                Media Attribute (a): rtpmap:101 telephone-event/8000
                    Media Attribute Fieldname: rtpmap
                    Media Format: 101
                    MIME Type: telephone-event
                    Sample Rate: 8000
                Media Attribute (a): fmtp:101 0-16
                    Media Attribute Fieldname: fmtp
                    Media Format: 101 [telephone-event]
                    Media format specific parameters: 0-16
    No.     Time        Source                Destination           Protocol Info
         13 1.727645    10.194.154.136        171.68.115.156        SIP      Status: 500 Internal Server Error
    Frame 13 (526 bytes on wire, 526 bytes captured)
    Ethernet II, Src: Cisco_0d:3c:c0 (00:1f:ca:0d:3c:c0), Dst: HewlettP_06:71:52 (00:1f:29:06:71:52)
    Internet Protocol, Src: 10.194.154.136 (10.194.154.136), Dst: 171.68.115.156 (171.68.115.156)
    User Datagram Protocol, Src Port: sip (5060), Dst Port: sip (5060)
    Session Initiation Protocol
        Status-Line: SIP/2.0 500 Internal Server Error
        Message Header
            Via: SIP/2.0/UDP 171.68.115.156:5060;rport;branch=z9hG4bK-41c-100f04-2fde97a9
            From: <sip:[email protected]:5060>;tag=82f4d30-9c7344ab-13c4-45026-41c-5c20b753-41c
            To: <sip:[email protected]:5060>;tag=4864C50-3C3
            Date: Wed, 08 Sep 2010 20:47:51 GMT
            Call-ID: 80e5320-9c7344ab-13c4-45026-41c-7fbe4865-41c
            CSeq: 1 INVITE
                Sequence Number: 1
                Method: INVITE
            Allow-Events: telephone-event
            Server: Cisco-SIPGateway/IOS-12.x
            Reason: Q.850;cause=44
                Reason Protocols: Q.850
                Cause: 44(0x2c)[Requested circuit/channel not available]
            Content-Length: 0
    Thanks!
    -John

    Since it appears you are a Cisco Employee, my recommendation is that you use the many internal resource available to you (including, but not limited to) , like TAC access, internal forums, team leaders, etc.
    This not to give the casual reader, the impression that the best source of support at Cisco is a customer's public forum.

  • CRS-5008: Invalid attribute value: ce0 for the network interface

    Hi all,
    we try to install grid infrastructure 11GR2 (11.2.0.1) into Solaris Zone with shared network interface.
    We also modified scirpt racgvip, so it will be able to login (via ssh with key authorization) to the global zone and add or remove interface on zone. Script itself works fine.
    But it seems that orarootagent some how checks the interface, and returned error.
    In the log of the orarootagent I can see error:
    2010-10-01 21:38:49.573: [ AGFW][9] CHECK initiated by timer for: ora.net1.network sapdr2db2 1
    2010-10-01 21:38:50.473: [ora.net1.network][17] [check] NetworkAgent::checkLink returned false
    2010-10-01 21:38:50.474: [ora.net1.network][17] [check] NetInterface::sGetIpAddress {
    2010-10-01 21:38:50.474: [ora.net1.network][17] [check] netInterfaceName empty.
    2010-10-01 21:38:50.474: [ora.net1.network][17] [check] NetInterface::sGetIpAddress }
    2010-10-01 21:38:50.474: [ AGFW][17] check for resource: ora.net1.network sapdr2db2 1 completed with status: OFFLINE
    2010-10-01 21:38:50.476: [ AGFW][17] Executing command: check for resource: ora.net1.network sapdr2db2 1
    2010-10-01 21:38:50.477: [ora.net1.network][17] [check] NetworkAgent::init enter {
    2010-10-01 21:38:50.478: [ora.net1.network][17] [check] Checking if ce0 Interface is fine
    2010-10-01 21:38:50.479: [ora.net1.network][17] [check] NetInterface::scheckNetInterface returned 0
    2010-10-01 21:38:50.480: [ora.net1.network][17] [check] CRS-5008: Invalid attribute value: ce0 for the network interface
    2010-10-01 21:38:50.480: [ora.net1.network][17] [check] NetworkAgent::init exit }
    2010-10-01 21:38:50.480: [ora.net1.network][17] [check] NetInterface::scheckNetInterface returned 0
    2010-10-01 21:38:50.480: [ora.net1.network][17] [check] NetworkAgent::checkInterface returned false
    Does anybody know how the orarootagent checks for the network resource?
    It seems that there are some procedures (NetworkAgent::checkLink, NetInterface::sGetIpAddress) inside it. But the problem is that this file is binary.
    Or may be there are some ways to track how orarootagent checks?

    >
    2010-10-18 18:11:07.589: [ora.net1.network][9] {0:2:8} [check] Checking if ce0 Interface is fine
    2010-10-18 18:11:07.589: [ora.net1.network][9] {0:2:8} [check] NetInterface::scheckNetInterface returned 0
    2010-10-18 18:11:07.590: [   AGENT][9] {0:2:8} UserErrorException: Locale is
    2010-10-18 18:11:07.591: [ora.net1.network][9] {0:2:8} [check] CRS-5008: Invalid attribute value: ce0 for the network interface
    >
    Is there anything I can do with it? Will appreciate any help!Is ce0 a valid interface on the machine? (has the global zone done "ifconfig ce0 plumb"?)
    Is the zone correctly configured (check output of the export sub-command of zonecfg)?
    --Sowmini                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • "Invalid Drive I:\" error during iTunes installation. What do I do now?

    Can't install iTunes on my pc. Keep getting "invalid Drive I:\" error.
    I have no drive I:\. I have C:, D: and P:(external drive).
    I have downloaded iTunes a couple of times but none work.
    I am using an HP DV6700 with windows 7.
    Help, please.

    Let's try the following user tip with that one:
    "Invalid drive X:\" install errors

  • How to get the attribute value of an XML file??

    How to get the attribute value of an XML file??
    For example, how to get name and age attributes?
    <student name="Joe" age="20" />

    What are you using to read the XML file??
    On the assumption of JDOM - www.jdom.org. Something along the lines of:SAXBuilder builder = new SAXBuilder(true);
    Document doc = builder.build(filename);
    Element root = doc.getRootElement();
    List children = root.getChildren();
    Element thisElement = (Element)children.get(n);
    String name = thisElement.getAttributeValue("name")
    try
         int age = Integer.parseInt(thisElement.getAttributeValue("age"));
    catch (Exception ex)
         throw new InvalidElementException("Expected an int.....");
    }Ben

  • In Jsp TagLib how can I get the Attribute value (like JavaBean) in jsp

    Dear Friends,
    TagLib how can I get the Attribute value (like JavaBean) in jsp .
    I do this thing.
    public void setPageContext(PageContext p) {
              pc = p;
    pc.setAttribute("id", new String("1") );
              pc.setAttribute("first_name",new String("Siddharth")); //,pc.SESSION_SCOPE);
              pc.setAttribute("last_name", new String("singh"));
    but in Jsp
    <td>
    <%=pageContext.getAttribute("first_name"); %>
    cause null is returing.
    Pls HELP me
    with regards
    Siddharth Singh

    First, there is no need to pass in the page context to the tag. It already is present. How you get to it depends on what type of tag:
    Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/SimpleTagSupport.html]SimpleTagSupport
    public class MyTag extends SimpleTagSupport
      public void doTag()
        PageContext pc = (PageContext)getJspContext();
        pc.setAttribute("first_name", "Siddharth");
        pc.setAttribute("last_name", "Singh");
        pc.setAttribute("id", "1");
    }Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/TagSupport.html]TagSupport or it's subclass [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/BodyTagSupport.html]BodyTagSupport the page context is aleady declared as an implicit object:
    public class MyTag extends TagSupport
      public void doStartTag()
        pageContext.setAttribute("first_name", "Siddharth");
        pageContext.setAttribute("last_name", "Singh");
        pageContext.setAttribute("id", "1");
    }In each case, this sort of thing should work:
    <mytags:MyTag />
    <%= pageContext.getAttribute("first_name") %>I

  • Change a attribute value with XSLT before importing an XML

    I need change the attribute value with XSLT before importing an XML
    <table class="x" style="width="50pt">...
    I have to divide by 200 the value of "width", and the result multiplied by 100:
    (50/200) * 100
    It's possible with a XLST?

    Hi,
    Yes you can do this via XSLT.
    You can try similar to the one below:
    <table>
       <xsl:attribute name="width">
         <xsl:value-of select="((./width) div 200)*(100)" />
       </xsl:attribute>
    </table>
    I have not tested yet... Try it....
    Green4ever
    (I am back after long time)....

  • CFCHART only works for pie, invalid attribute: autoAdjust Error for all other types

    CFCHART only works for pie, invalid attribute: autoAdjust
    Error for all other types.
    Im just trying to render a simple bar chart, and it works on
    the developer server, but not in production.
    Any tips?
    Dave

    It's 7.0.2
    But I have not tried this yet...
    ColdFusion MX 7.0.2 Cumulative Hot Fix 2
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=kb400996
    I'm worried that If I apply that hotfix, something else will
    break :(
    ANd I wont be able to un=do it, and I'm not able to
    re-install CF if it all goes tits up.

  • I'm getting an unknown communication error during my chat to initiate AIM screen sharing. Any clues as to why? Here's the comm log...

    I'm getting an unknown communication error during my chat to initiate AIM screen sharing. Any clues as to why? Here's the comm log...
    I don't usually have problems reaching and doing IT for my family. Is weird.
    Date/Time: 2015-04-12 11:46:01 -0400
    OS Version: 10.10.2 (Build 14C1514)
    Report Version: 4
    Messages Connection Log:
    2015-04-12 11:45:33 -0400: 0x7ffb826cc310: State change from No State to Invited.
    2015-04-12 11:45:45 -0400: 0x7ffb826cc310: State change from Invited to Connecting.
    2015-04-12 11:45:58 -0400: 0x7ffb826cc310: State change from Connecting to Ended.
    2015-04-12 11:45:58 -0400: 0x7ffb826cc310: Error -1 (An unknown error occurred.)
    Video Conference Error Report:
    Video Conference Support Report:
    7.728039 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1973 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    18.955646 @/SourceCache/VideoConference/VideoConference-473/VCChannel/VCChannel.m:303 type=2 (00000000/0)
    [VCChannel prepareConnectionWithRemoteConnectionData - remote VCConnectionData: 1]
    18.964195 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1988 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    18.966613 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2180 type=2 (00000000/0)
    [Initiate Conference To User: 1002 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    25.205927 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1973 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    31.603943 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1988 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    31.604365 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2180 type=2 (00000000/0)
    [Initiate Conference To User: 1002 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    18.964411 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2085 type=5 (00000000/0)
    [Remote Router]
    [BAD TEST]
    18.964419 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2087 type=5 (00000000/0)
    [Remote CommNAT Result: 0x00000001
    18.966640 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1679 type=5 (00000000/0)
    [Router]
    [FULLCONE]
    18.966648 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1681 type=5 (00000000/0)
    [CommNAT Result: 0x00000102
    31.604133 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2085 type=5 (00000000/0)
    [Remote Router]
    [BAD TEST]
    31.604144 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2087 type=5 (00000000/0)
    [Remote CommNAT Result: 0x00000001
    31.604370 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1679 type=5 (00000000/0)
    [Router]
    [FULLCONE]
    31.604379 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1681 type=5 (00000000/0)
    [CommNAT Result: 0x00000102

    Hi
    Ah a homehub.
    Set the Quicktime streaming setting, goto sys prefs/quicktime/streaming/streaming speed, set to 1.5mbps(
    In ichats prefs click on video and change bandwidth limit to NONE.
    Goto sys prefs/security/firewall and check "set access for specific........" and click the + at the bottom and add ichat to the list.
    Restart ichat.
    Also try connecting to me dfcom1 .mac account.
    Tony

  • BUG 2.1 - ARW (Sony Raw) no photos found error during Auto Import

    BUG 2.1 - ARW (Sony Raw) no photos found error during Auto Import
    I've seen this issue since beta1. The issue seems to be related to a camera setting that stores the files in folders by date. The Folder structure becomes drive>DCMI>10202008>image.ARW
    This "no photos found error" I have seen in beta1 LR1 LR1.1 LR1.2 LR1.3 LR1.4 and LR2.0 this is still an issue in LR2.1
    Auto import works fine with canon or nikon RAW files (I've used several different cameras with no problems)
    The Folder structure for canon files is drive>DCMI>100>image.CR2
    Auto import Does not work with Sony A100 .ARW files with folders by date turned on I have heard from people with other Sony cameras like the A700 also have this issue.
    Vista Ultimate 32bit SP1
    AMD 64X2 duel core 6000+ 3Ghz
    6GB 666mhz Ram PAE force enabled
    NVIDIA Gforce 7600 256MB video card (1.75GB total with system shared ram)
    Primary hard drive: 500GB
    Hard drive 2: 400GB (system and photoshop paging files and lightroom catalog drive)
    Hdrive 3: 1TB (primary image storage)
    user control turned off
    system graphics set to performance
    Duel display
    Lightroom 2.1
    photoshop CS3

    I believe this is fixed in version 2.5 and 3.0
    ARW (Sony Raw) files seem to work with auto import

  • There were no results for Hey i keep getting Invalid product context Error communicating with Adobe.

    Hey i need help because i keep getting this when i try download after effects CS6 trial all other products ont do this but this    
    Hey i keep getting  Invalid product context Error communicating with Adobe.com (Error 101) but only for Adobe After Effects CS6 all other product trials download but this one please HELP

    And what are your system specs? it simply thinks your system doesn't qualify for AE, but it can't verify the settings.
    Mylenium

Maybe you are looking for