Trouble when importing tagged text (CS6)

I'm trying to import a tagged .txt file into InDesign however when I do, the paragraph styles are not recognized and I end up with unformatted text. Is there a certain format the .txt file needs to be in (unicode 8, 16 etc.)? Any help would be appreciated, thank you!

Tagged with InDesign Paragraph Style tags. I think I sorted it out, I needed to append the .txt file with "-mac.txt"

Similar Messages

  • Suppressing progress dialog when importing Tagged Text?

    Howdy:
    I'm using the Adobe Tagged Text import provider to place text in a document. I'm making the call to iImportProvider->ImportThis() with the kSuppressUI flag set. Even though the flag is set, InDesign is still displaying the progress dialog. Does anybody know how to keep that from happening? I don't see anything in the documentation about this.
    Thanks,
    Noel Williams

    Hello:
    I have the same problem that Noel.
    I'm using:
    * prov->ImportThis(database, stream, kSuppressUI, &contentUIDRef);
    * prov->ImportThis(database, stream, K2::kSuppressUI, &contentUIDRef);
    * prov->ImportThis(database, stream, (K2::UIFlags)0, &contentUIDRef);
    But the progress Dialog appears.
    This problem is critical for me.

  • Selectively ignore Problem Tags Dialog  while importing Tagged Text in CS5.5

    Hi
    My script imports tagged text and places it in selected frames. Due to the tag creation process used, I occasionally get a "Ignoring character level attribute termination tag "<cTracking:>" found without the corresponding character level attribute application tag "<cTracking:value>"
    Since it's not a problem I can ignore this specific error -- but I don't want to turn off ALL problem tag error checking because occasionally there are serious errors that I DO want to see.
    Is there a way to tell ID to ignore this specific error?
    Thanks
    Akiva

    UNfortunately the original ascii files uses a <D> code to return to the default settings -- and since that occasionally includes resetting the tracking to 0 I need to include the "<cTracking:>" tag.
    I could obviously fix it by adding a "<cTracking:0>" to all the codes -- but that seems like it could cause more problems.
    I can preprocess the ascii code to eliminate the excess codes -- but that increases processing time for something which happens only occasionally and is non-problematis in practice.
    Akiva

  • Import tagged text without overwriting formatting?

    When processing an INDD file in InDesign Server CS5, we are importing text that contains Tagged Text tags.  The tags are being properly applied, but we are having an issue with the formatting in the INDD file being overwritten.
    For example: We have a selection of text that is formatted using a specific font type in the INDD file.  The tagged text being imported only has tags that defines the size of the font.  When the selection of text is replaced with the tagged text, the font type is replaced with the default font, rather than leaving it as it was even though we never defined the font type in the tagged text. 
    Any ideas on how we can apply tagged text but still retain any text formatting that was not specifically defined in the tagged text?
    Thanks!

    I am using
    InterfacePtr<IK2ServiceProvider> service(registry->QueryServiceProviderByClassID( kImportProviderService, kTaggedTextImportFilterBoss));

  • [IDCS3 WIN] Assert while importing tagged text

    Hi,<br /><br />I use the following code to import a tagged text from a buffer into a text frame:<br /><br />IDataBase* database = frameUIDRef.GetDataBase();<br /><br />InterfacePtr<IHierarchy> frameHierarhy(frameUIDRef, UseDefaultIID());<br />int32 count = frameHierarhy->GetChildCount();<br /><br />InterfacePtr<IMultiColumnTextFrame> textFrame(frameHierarhy->QueryChild(0), UseDefaultIID());<br /><br />if( !textFrame )<br />return UIDRef::gNull;<br /><br />UID storyUID = textFrame->GetTextModelUID();<br /><br />InterfacePtr<ITextModel> textModel(database, storyUID, UseDefaultIID());<br /><br />if( !textModel )<br />return UIDRef::gNull;<br /><br />UIDRef result = UIDRef::gNull;<br />InterfacePtr<IK2ServiceRegistry> services(gSession, UseDefaultIID());<br />InterfacePtr<IK2ServiceProvider> service(services->QueryServiceProviderByClassID(kImportProviderService, kTaggedTextImportFilterBoss));<br />InterfacePtr<IImportProvider> prov(service, IID_IIMPORTPROVIDER);<br /><br />InterfacePtr<IPMStream> stream(StreamUtil::CreatePointerStreamRead(taggedtext, strlen(taggedtext)));<br /><br />if (prov->CanImportThisStream(stream) == IImportProvider::kFullImport)<br />{<br />database->BeginTransaction();<br /><br />prov->ImportThis(database, stream, K2::kSuppressUI, &result);  //This line generates the Assert<br /><br />if (result != nil )<br />{<br />Utils<ITextUtils> textUtils;<br />InterfacePtr<ICommand> moveAllStoryCommand(textUtils->QueryMoveStoryFromAllToAllCommand(result, ::GetUIDRef(textModel)));<br />CmdUtils::ProcessCommand(moveAllStoryCommand);<br />}<br />     <br />database->EndTransaction();<br />}<br /><br />It works fine, but when "ImportThis" is called i get this:<br /><br />ASSERT 'fCmdProcessorState == kDoing || fCmdProcessorState != kNotProcessing || cmdMgrRef.GetDataBase()->GetUndoSupport() == IDataBase::kNoUndoSupport' in ..\..\..\source\components\appframework\commandmgmt\CommandProcessor.cpp at line 2889 failed.<br /><br />Any help would be appreciated.<br />Thanks in advance, David

    I would say the problem here is in using database->BeginTransaction()/EndTransaction(). Basically you should never call these methods - you need to find/create a command to do the processing instead, then perhaps wrap the two commands in a command sequence.
    I know there was a post saying ' don't use those methods' a long time ago by Ken Sadahiro (then of Adobe) - you might find it with a search, though will have been archived by now.
    Ian

  • Problems importing tagged text

    IDD CS5.5, 7.5.2
    what I do
    prepare IDD tagged text file, using DOS/Windows line ends and ANSII encoding
    open IDD CS5.5 file with formatted content
    select all content
    File > Place InDesign tagged text file, using "show list of problem tags" option
    what I get
    no angle brackets imported, no errors in the list of problem tags …
    74 paragraphs, all using the first paragraph style specified in the tagged text
    I wish IDD tagged text were as easy to get on with as FrameMaker's MML … that would also make it easier for me to start with one tagged source file and use the content in different applications with a minimum of effort. Any tips on _exactly_ what has to be done to placate the IDD Import goblins welcome!

    Give this script a try:
    // DESCRIPTION: This InDesign script reads the tags of an imported MML file and applies their corresponding paragraph styles.
    // USAGE: Place the MML file in InDesign. Using the Text tool, select all or part of the imported text. Run this script.
    var myDocument = app.activeDocument;
    if (app.documents.length != 0){
    //If the selection contains more than one item, the selection
    //is not text selected with the Type tool.
    if (app.selection.length == 1){
    //Evaluate the selection based on its type.
      switch (app.selection[0].constructor.name){
       case "Character":
       case "Word":
       case "TextStyleRange":
       case "Line":
       case "Paragraph":
       case "TextColumn":
       case "Text":
        convertMML(app.selection[0]);
       break;
       default:
        alert("Please select all or part of the text using the Text Tool.");
       break;
    } else {
      alert("No valid selection.");
    function convertMML(theSelection) {
    // this sequence collects the names of the paragraph styles in the MML file
    var theContent = theSelection.contents;
      var theParagraphs = theContent.split("\r");
      var theParagraphStyles = [];
      for (var i = 0; i < theParagraphs.length; i++) {
        if (theTag = theSelection.paragraphs[i].contents.match(/<!DefineTag (.+?)>/)) {
          theParagraphStyles.push(theTag[1]);
    // ********* this sequence adds dummy paragraph styles in the document, if necessary
    for (var i = 0; i < theParagraphStyles.length; i++) {
      var currentStyle = theParagraphStyles[i];
            try { myDocument.paragraphStyles.add({ name: currentStyle }) } catch(err){};
    // ********* This sequence set the preferences of the Grep queries
    app.findChangeGrepOptions.includeFootnotes = true;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = true;
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    // ********* The action begins here
    // ********* This sequence removes spaces and/or TABs in the beginning of the lines
    app.findGrepPreferences.findWhat = '^\\s+';
    app.changeGrepPreferences.changeTo = '';
    myDocument.changeGrep();
    // ********* This sequence consolidates multiple paragraph returns into one
    app.findGrepPreferences.findWhat = '\\r\\r+';
    app.changeGrepPreferences.changeTo = '\\r';
    myDocument.changeGrep();
    // ********* This sequence removes the header and the paragraph declarations
    app.findGrepPreferences.findWhat = '((^<MML>\\r)|(^<!DefineTag .+?>\\r))';
    app.changeGrepPreferences.changeTo = '';
    myDocument.changeGrep();
    // ********* Now that everything is cleared up and in place, we can make the required changes
    for (var i = 0; i < theParagraphStyles.length; i++) {
      app.findGrepPreferences = NothingEnum.nothing;
      app.changeGrepPreferences = NothingEnum.nothing;
      var currentStyle = theParagraphStyles[i];
      var theGrepString = '^<' + currentStyle + '>';
      app.findGrepPreferences.findWhat = theGrepString;
      app.changeGrepPreferences.appliedParagraphStyle = myDocument.paragraphStyles.itemByName(currentStyle);
      myDocument.changeGrep();
      app.findGrepPreferences = NothingEnum.nothing;
      app.changeGrepPreferences = NothingEnum.nothing;
      app.findGrepPreferences.findWhat = theGrepString;
      app.changeGrepPreferences.changeTo = '';
      myDocument.changeGrep();
    It worked in your sample. To install it, select the text between the multi-hyphens lines, copy it to a text editor, save it with the ".js" or ".jsx" extension and put it on your Scripts Panel folder.
    To run it, place the MML in InDesign as unformatted text, select everything with the Text tool and double click the script in the Scripts panel. All the tags will be eliminated and the paragraphs will be formatted according with the MML tags. Be aware that this script doesn't contemplate character styles and any other formatting; only paragraph tags, like your sample.
    Hope it helps.

  • Importing Tagged Text Files

    Working in MAC ID CS5 and pulling in text from a Windows based database that places tags automatically with the information it pulls.  Using <

    Shoot! Yes, I had typed in my code and it stopped at that.
    "Working in MAC ID CS5 and pulling in text from a Windows based database  that places tags automatically with the information it pulls.  Using Unicode tagging direct to TextEdit and saving as Unicode (UTF-16).  When placed in ID it either gives Boxes with x's in them, text only or response in below pic.  Is there a specific way to save, code or place that I am not seeing.  Where are the "rules" from ID on this.  We used Quark before and it was so simple.

  • Trouble when importing wsdl

    Hi,
    I have a SOAP server and am trying to import the wsdl into Flex Builder. When I attempt the import, there is nothing in the resulting service selector dialog. I've included the WSDL below, and am wondering if there is something in the WSDL that is making Flex Builder error.
    Flex Builder version: 3.0.194161
    <?xml version="1.0" encoding="utf-8"?><xs:schema elementFormDefault="qualified" targetNamespace="http://www.nortel.com/soa/oi/ccma/service" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.nortel.com/soa/oi/ccma/service"><xs:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/Nortel.Applications.CCMA.OpenInterfaces"/><xs:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/><xs:element name="BasicTest"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="text" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="BasicTestResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="BasicTestResult" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="addAgent"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="firstName" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="lastName" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="addAgentResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="addAgentResult" type="xs:boolean"/><xs:element minOccurs="0" name="agentLocalID" type="xs:int"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="addSupervisor"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="firstName" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="lastName" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="addSupervisorResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="addSupervisorResult" type="xs:boolean"/><xs:element minOccurs="0" name="supervisorLocalID" type="xs:int"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getAgentDetails"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="agentLocalUserID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getAgentDetailsResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getAgentDetailsResult" type="xs:boolean"/><xs:element minOccurs="0" name="agent" nillable="true" type="tns:AgentFullDetails"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:complexType name="AgentFullDetails"><xs:complexContent mixed="false"><xs:extension base="tns:AgentBasicDetails"><xs:sequence><xs:element minOccurs="0" name="contactTypesAndSkillsets" nillable="true" type="tns:ArrayOfContactTypeAndRelatedSkillsets"/><xs:element minOccurs="0" name="isLoggedIn" type="xs:boolean"/><xs:element minOccurs="0" name="superLocalID" type="xs:int"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="AgentFullDetails" nillable="true" type="tns:AgentFullDetails"/><xs:complexType name="AgentBasicDetails"><xs:sequence><xs:element minOccurs="0" name="firstName" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="lastName" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="localID" type="xs:int"/><xs:element minOccurs="0" name="phoneSetLoginID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="type" type="q1:AGENT_TYPE" xmlns:q1="http://schemas.datacontract.org/2004/07/Nortel.Applications.CCMA.OpenInterfaces"/></xs:sequence></xs:complexType><xs:element name="AgentBasicDetails" nillable="true" type="tns:AgentBasicDetails"/><xs:complexType name="ArrayOfContactTypeAndRelatedSkillsets"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="ContactTypeAndRelatedSkillsets" nillable="true" type="tns:ContactTypeAndRelatedSkillsets"/></xs:sequence></xs:complexType><xs:element name="ArrayOfContactTypeAndRelatedSkillsets" nillable="true" type="tns:ArrayOfContactTypeAndRelatedSkillsets"/><xs:complexType name="ContactTypeAndRelatedSkillsets"><xs:complexContent mixed="false"><xs:extension base="tns:ContactType"><xs:sequence><xs:element minOccurs="0" name="isAssigned" type="xs:boolean"/><xs:element minOccurs="0" name="skillsetsOfThisContactType" nillable="true" type="tns:ArrayOfSkillsetFullDetails"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="ContactTypeAndRelatedSkillsets" nillable="true" type="tns:ContactTypeAndRelatedSkillsets"/><xs:complexType name="ContactType"><xs:sequence><xs:element minOccurs="0" name="ID" type="xs:int"/><xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="ContactType" nillable="true" type="tns:ContactType"/><xs:complexType name="ArrayOfSkillsetFullDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="SkillsetFullDetails" nillable="true" type="tns:SkillsetFullDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSkillsetFullDetails" nillable="true" type="tns:ArrayOfSkillsetFullDetails"/><xs:complexType name="SkillsetFullDetails"><xs:complexContent mixed="false"><xs:extension base="tns:Skillset"><xs:sequence><xs:element minOccurs="0" name="Priority" type="xs:int"/><xs:element minOccurs="0" name="Status" type="q2:SkillsetStatus" xmlns:q2="http://schemas.datacontract.org/2004/07/Nortel.Applications.CCMA.OpenInterfaces"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="SkillsetFullDetails" nillable="true" type="tns:SkillsetFullDetails"/><xs:complexType name="Skillset"><xs:sequence><xs:element minOccurs="0" name="ContactTypeID" type="xs:int"/><xs:element minOccurs="0" name="ID" type="xs:int"/><xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/></xs:sequence></xs:complexType><xs:element name="Skillset" nillable="true" type="tns:Skillset"/><xs:element name="getSupervisorDetails"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="supervisorLocalID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getSupervisorDetailsResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getSupervisorDetailsResult" type="xs:boolean"/><xs:element minOccurs="0" name="supervisor" nillable="true" type="tns:SupervisorFullDetails"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:complexType name="SupervisorFullDetails"><xs:complexContent mixed="false"><xs:extension base="tns:AgentBasicDetails"><xs:sequence><xs:element minOccurs="0" name="NumAssignedAgents" type="xs:int"/><xs:element minOccurs="0" name="assignedAgentsLocalIDs" nillable="true" type="q3:ArrayOfint" xmlns:q3="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/></xs:sequence></xs:extension></xs:complexContent></xs:complexType><xs:element name="SupervisorFullDetails" nillable="true" type="tns:SupervisorFullDetails"/><xs:element name="getAgentsAssignedToSkillset"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="skillsetID" nillable="true" type="xs:string"/><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getAgentsAssignedToSkillsetResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getAgentsAssignedToSkillsetResult" type="xs:boolean"/><xs:element minOccurs="0" name="agents" nillable="true" type="tns:ArrayOfAgentFullDetails"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:complexType name="ArrayOfAgentFullDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AgentFullDetails" nillable="true" type="tns:AgentFullDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAgentFullDetails" nillable="true" type="tns:ArrayOfAgentFullDetails"/><xs:element name="getAgentsList"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getAgentsListResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getAgentsListResult" type="xs:boolean"/><xs:element minOccurs="0" name="agents" nillable="true" type="tns:ArrayOfAgentFullDetails"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getSupervisorList"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getSupervisorListResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getSupervisorListResult" type="xs:boolean"/><xs:element minOccurs="0" name="supervisors" nillable="true" type="tns:ArrayOfAgentBasicDetails"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:complexType name="ArrayOfAgentBasicDetails"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="AgentBasicDetails" nillable="true" type="tns:AgentBasicDetails"/></xs:sequence></xs:complexType><xs:element name="ArrayOfAgentBasicDetails" nillable="true" type="tns:ArrayOfAgentBasicDetails"/><xs:element name="getSkillsetsList"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="ccmsIPAddress" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="getSkillsetsListResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="getSkillsetsListResult" type="xs:boolean"/><xs:element minOccurs="0" name="skillsets" nillable="true" type="tns:ArrayOfSkillset"/><xs:element minOccurs="0" name="errorMsg" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:complexType name="ArrayOfSkillset"><xs:sequence><xs:element minOccurs="0" maxOccurs="unbounded" name="Skillset" nillable="true" type="tns:Skillset"/></xs:sequence></xs:complexType><xs:element name="ArrayOfSkillset" nillable="true" type="tns:ArrayOfSkillset"/></xs:schema>
    Thanks in advance...

    Oh, sorry, wrong xml...
    here is the correct one wsdl.
    <?xml version="1.0" encoding="utf-8"?><wsdl:definitions name="SOAP" targetNamespace="http://www.nortel.com/soa/oi/ccma/service" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:tns="http://www.nortel.com/soa/oi/ccma/service" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:i0="http://tempuri.org/" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex"><wsdl:import namespace="http://tempuri.org/" location="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?wsdl=wsdl0"/><wsdl:types><xsd:schema targetNamespace="http://www.nortel.com/soa/oi/ccma/service/Imports"><xsd:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd0" namespace="http://www.nortel.com/soa/oi/ccma/service"/><xsd:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/"/><xsd:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/Nortel.Applications.CCMA.OpenInterfaces"/><xsd:import schemaLocation="http://ctidpp22/WebServices/OpenInterfaces/soap.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/></xsd:schema></wsdl:types><wsdl:message name="soap_BasicTest_InputMessage"><wsdl:part name="parameters" element="tns:BasicTest"/></wsdl:message><wsdl:message name="soap_BasicTest_OutputMessage"><wsdl:part name="parameters" element="tns:BasicTestResponse"/></wsdl:message><wsdl:message name="soap_addAgent_InputMessage"><wsdl:part name="parameters" element="tns:addAgent"/></wsdl:message><wsdl:message name="soap_addAgent_OutputMessage"><wsdl:part name="parameters" element="tns:addAgentResponse"/></wsdl:message><wsdl:message name="soap_addSupervisor_InputMessage"><wsdl:part name="parameters" element="tns:addSupervisor"/></wsdl:message><wsdl:message name="soap_addSupervisor_OutputMessage"><wsdl:part name="parameters" element="tns:addSupervisorResponse"/></wsdl:message><wsdl:message name="soap_getAgentDetails_InputMessage"><wsdl:part name="parameters" element="tns:getAgentDetails"/></wsdl:message><wsdl:message name="soap_getAgentDetails_OutputMessage"><wsdl:part name="parameters" element="tns:getAgentDetailsResponse"/></wsdl:message><wsdl:message name="soap_getSupervisorDetails_InputMessage"><wsdl:part name="parameters" element="tns:getSupervisorDetails"/></wsdl:message><wsdl:message name="soap_getSupervisorDetails_OutputMessage"><wsdl:part name="parameters" element="tns:getSupervisorDetailsResponse"/></wsdl:message><wsdl:message name="soap_getAgentsAssignedToSkillset_InputMessage"><wsdl:part name="parameters" element="tns:getAgentsAssignedToSkillset"/></wsdl:message><wsdl:message name="soap_getAgentsAssignedToSkillset_OutputMessage"><wsdl:part name="parameters" element="tns:getAgentsAssignedToSkillsetResponse"/></wsdl:message><wsdl:message name="soap_getAgentsList_InputMessage"><wsdl:part name="parameters" element="tns:getAgentsList"/></wsdl:message><wsdl:message name="soap_getAgentsList_OutputMessage"><wsdl:part name="parameters" element="tns:getAgentsListResponse"/></wsdl:message><wsdl:message name="soap_getSupervisorList_InputMessage"><wsdl:part name="parameters" element="tns:getSupervisorList"/></wsdl:message><wsdl:message name="soap_getSupervisorList_OutputMessage"><wsdl:part name="parameters" element="tns:getSupervisorListResponse"/></wsdl:message><wsdl:message name="soap_getSkillsetsList_InputMessage"><wsdl:part name="parameters" element="tns:getSkillsetsList"/></wsdl:message><wsdl:message name="soap_getSkillsetsList_OutputMessage"><wsdl:part name="parameters" element="tns:getSkillsetsListResponse"/></wsdl:message><wsdl:portType name="soap"><wsdl:operation name="BasicTest"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/BasicTest" message="tns:soap_BasicTest_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/BasicTestResponse" message="tns:soap_BasicTest_OutputMessage"/></wsdl:operation><wsdl:operation name="addAgent"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/addAgent" message="tns:soap_addAgent_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/addAgentResponse" message="tns:soap_addAgent_OutputMessage"/></wsdl:operation><wsdl:operation name="addSupervisor"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/addSupervisor" message="tns:soap_addSupervisor_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/addSupervisorResponse" message="tns:soap_addSupervisor_OutputMessage"/></wsdl:operation><wsdl:operation name="getAgentDetails"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentDetails" message="tns:soap_getAgentDetails_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentDetailsResponse" message="tns:soap_getAgentDetails_OutputMessage"/></wsdl:operation><wsdl:operation name="getSupervisorDetails"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSupervisorDetails" message="tns:soap_getSupervisorDetails_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSupervisorDetailsResponse" message="tns:soap_getSupervisorDetails_OutputMessage"/></wsdl:operation><wsdl:operation name="getAgentsAssignedToSkillset"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentsAssignedToSkillset" message="tns:soap_getAgentsAssignedToSkillset_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentsAssignedToSkillsetResponse" message="tns:soap_getAgentsAssignedToSkillset_OutputMessage"/></wsdl:operation><wsdl:operation name="getAgentsList"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentsList" message="tns:soap_getAgentsList_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getAgentsListResponse" message="tns:soap_getAgentsList_OutputMessage"/></wsdl:operation><wsdl:operation name="getSupervisorList"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSupervisorList" message="tns:soap_getSupervisorList_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSupervisorListResponse" message="tns:soap_getSupervisorList_OutputMessage"/></wsdl:operation><wsdl:operation name="getSkillsetsList"><wsdl:input wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSkillsetsList" message="tns:soap_getSkillsetsList_InputMessage"/><wsdl:output wsaw:Action="http://www.nortel.com/soa/oi/ccma/service/soap/getSkillsetsListResponse" message="tns:soap_getSkillsetsList_OutputMessage"/></wsdl:operation></wsdl:portType><wsdl:service name="SOAP"><wsdl:port name="SoapEndpoint" binding="i0:SoapEndpoint"><soap:address location="http://ctidpp22/WebServices/OpenInterfaces/soap.svc"/></wsdl:port></wsdl:service></wsdl:definitions>

  • HI, I am having trouble when importing .wav files into logic.

    Everytime I import this .wav file of a DJ set i recorded, it shows me the waveform but no sound comes out when its played. I have tried converting the bitrate to 16bit and the filetype to aiff as I saw it had helped people with similar problems but when i do this its boosts the gain massivly and the recrding becomes very distored? Really dont know what to try??
    Also the reason I am trying to get the Wav in was bevause i need to normalise it as it had to be recorded very quitely to avoid distortion on the recording. I recorded it by using the imput on the back of my monitors as they are usb, and th programme i used to record it is "audio recorder tool" from the app store
    Thanks for your help, Joe

    I think the problem is you're recorded 32-bit wav files which Logic doesn't support.
    (don't convert to aiff, unless you have the right program, that understands converting little endian 32 bit wavs to big endian aiff format, you will get distortion)
    I think your best bet is to download "Audacity" the free audio editor and convert to 24-bit WAV files. Re-save the audio file under a different name after converting. In Audacity this is done using the Export function, selecting other non-compressed formats.
    http://audacity.sourceforge.net/download/mac
    The reason you want 24-bit WAVs to work with is you're going to be raising the volume of the file, 24-bit files will suffer less damage when editing with plugins, normalizing...etc.

  • Trouble when importing

    When I import my pictures from my CF card, the pictures end up in weird places with dates that are all wrong?? Another problem I have had is when I try to upload pictures to get them printed, I can not find them to import. But if I go back to iPhoto they are there, just not able to upload when I need to???

    When I import my pictures from my CF card, the pictures end up in weird places with dates that are all wrong?
    I have no idea - where are you seeing this "weird place with dates that are all wrong"?
    Another problem I have had is when I try to upload pictures to get them printed, I can not find them to import. But if I go back to iPhoto they are there, just not able to upload when I need to???
    Look in the media section (media ==> photos ==> iPhoto) in the lower left of the upload window
    click here for a discussion on correctly accessing your photos
    LN

  • Skip a column when importing a text file into Excel 2010

    Hi,
    I have a formatted Excel 2010 spreadsheet that I want to import data from a .txt file located on my local drive. The third column of the spreadsheet is a concantenate formula that converts the second column from a Hex formatted value to a Dec formatted value.
    I want the first two columns of the text file to import into the first two columns of the spreadsheet and skip the third column then import the remaining columns from the text file to the spreadsheet. Is there an easy way to do this or do I need a VBA code
    and if so can you provide that to me?
    Thank you,
    Jennifer

    Hi Tony,
    I am sorry if I didn't express my issue more clearly. Where I need to skip a column is in the Excel spreadsheet. I want to import all the columns from the text file. I want the first two columns from the text to import to the first two columns in the Excel
    sheet A and B, skip the third column C in the spreadsheet, where I have a formula to convert the second column B values from a Hex format (imported data) to a Dec format, then continue to import columns 3, 4, and 5 from the text to spreadsheet columns D, E,
    and F. I would think the function would be in the Excel spreadsheet maybe some type of protection setting or something similar, if it can even be done. 
    Thank you for taking the time to help me out with this.
    Jennifer

  • Trouble when importing DVD / VOB file, as well as locating it.

    Hi all,
    I'm currently working on a recruitment project for my local amercian football team and had requested a DVD of a previous episode on BBC where they did a report on the team. Upon receiving the DVD they ripped for me, it contains a title screen and lasts about 1:00 - 1:30.
    The problem is when i try importing the DVD as a whole (excluding the title sequence) to Premiere Pro, it only manages to locate a video file lasting 00:12 seconds.
    I have read that the VOB file must be converted to AVI and that the DVD must be ripped, but if i perform this will it rip the whole DVD disk? If i have to select the exact files i wont be able to perfom the task needed as the full length video is not located on the disk, as far as i am aware.
    Is there anyway to get around this, perhaps by importing the DVD as a whole straight into Adobe Premiere Pro?
    Thanks for any help or suggestions.
    Revilo

    How many VOB's appear in the VIDEO_TS folder?
    The MPEG-2 AV portion can span many. Also, if there is any Menu, or navigation, it will occupy part of the first VOB, and the AV portion might only start there, and finish farther down the VOB chain.
    Also, if the TV station used a DVR, then all bets will be off, as those devices (and some authoring software) usually create non-compliant DVD's, and especially that first VOB can be highly problematic.
    Good luck,
    Hunt

  • How can I preserve word internal document hyperlinks when importing into indd cs6

    I have a document that is hundreds of pages long. The document was created in word by another user and has many internal document hyperlinks. Is it possible to preserve the hyperlinks, so that they show up and work in indd CS6? The document will then be exported as an interactive pdf and the links need to work there as well.
    The final product is the interactive pdf. I am just using indd to add a simple background to the content created in word. If there is any other way to preserve the hyperlinks, perhaps, by somehow adding the background in acrobat pro and excluding even taking the document into indd, please let me know.
    Mahalo!

    Thanks Lori for the reply.
    Unfortunately. my Epson 3170 Photo does not come with scan-to-fax software.
    I ended up creating a word doc and inserting the scans into it - on scan per page.
    Thanks for the suggestion though. It is greatly appreciated.
    Dual G5 2GHz, 2.5 GB RAM, 360 GB HDD   Mac OS X (10.4.2)  

  • Has anyone had trouble when importing an audio cd, the order of the songs is mixed up.  This has been happening since the latest update.

    The CD's that I've been importing don't import in order.  It's usually not that big a deal, except with an album like the Beatles White Album... I want the order as originally recorded/

    Have disc numbers been entered into the appropriate field in Get Info on the tracks?

  • Importing URLs using tagged text

    I'm trying to import tagged text with URLs into InDesign. InDesign sees the links, but does not seem to know that the links are URLs (rather than text anchors or page links). I have nearly 1500 hyperlinked pieces of text I want to import, so I can't manually create Destination Definitions for all of them. When I try to send definitions in using tagged text, InDesign (CS2) crashes. Any help very much appreciated.

    There are many ways of "tagging" information in an InDesign document. For what you're doing, I'd suggest a unique paragraph style used only for this purpose, then you can search for text in it and use the contents.
    Dave

Maybe you are looking for

  • How to use the embeddable designer in VB6

    I realize that I'm late to the party, but ...... I use Visual Basic 6 and CR XI. I do NOT design my reports with the embedded designer in the VB6 UI but rather build them in CR XI as rpt files and then have a viewer app in my VB6 code that displays t

  • In rtorrent is there a maximum torrent size?

    So I'm trying to add a torrent to rtorrent, and it say "Reading torrent file failed:" followed by the name of the torrent I selected.  I made sure things like permissions and whatnot are set correctly. Now, the thing is this is a *very* big torrent. 

  • Performance of ImageIO.read with jpeg files

    Hi all... I'm pulling my hair out trying to get a seemingly trivial task to work fast in Java. I'm trying to read in a set of jpeg files, and all I really want out of the files (for now) is width and height. The code I'm testing is: for(int i = 0; i

  • LR5 Tetherd Capture does not work

    Im an event photographer and just upgraded to LR5 and am having nothing but trouble with the tetherd capture.  I am using a Nikon D800e on a PC windows 8 and after a few shots it quits working. Anyone have a solution as it appears Adobe does not.

  • DVDs from our public library eject... what to do?

    DVDs from our public library eject from time to time without playing. What might be tried when a DVD ejects without playing, that other times did play okay?