Using bundlemigrate.xml for migration to ZCM

Has anyone got any experience using the bundlemigrate.xml file. I saw the coolsolution article on this and thought it would it would fit my environment. But haven't got it to work.
We are currently using ZFD4, rather than migrate apps into ZCM I have built new apps in ZCM.
The problem we have is that we have multile sites with the same app but differently GUIDs in ZFD4 (multiple app containers without using GUID sync). So using the bundlemigrate.xml file, seemed likes the only solution with or without an app migration.
I have built a kix script to read the registry of the PCs and match the GUIDs of ZFD4 to ZCM. But it appears that the bundlemigrate file is ignored on PCs. I was wondering if anyone had any knowledge on this approach and if I need to trigger another file on the PC/registry key during the migration for bundlemigrate to be read. This is to eliminate apps being redeployed to hardware.
I have an SR open with Novell, but this doesn't look good as ZFD4 is not supported. However, this doesn't help me move to a supported environment.
My current script.
Reads the registry and outputs to a file with GUIDs.
This file is read back in if a match is found to a bundle in ZCM, a temporary bundlemigrate file is built.
The agent is deployed with an autoit, passing it registration information, based on computer information.
The new bundlemigrate file is copied into location.
Run Once key added to perfrom a zac refresh
The machine is rebooted
my bundlemigrae file looks like:-
<?xml version="1.0"?>
<BundleList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://novell.com/zenworks/bundle/MigrateZEN7" >
<Bundle ID="54686252bbf72464a7d642c6bac3319d" Version="4" Installed="TRUE" />
</BundleList>
Any assistance welcome.

sgardiner,
Unfortunately it doesn't seem to work any more since 10.3.2
The procmon tool shows that ZCM 10.3.2/3 agents query file attributes of BundleMograte.xml but don't read the content of the file.
SR with Novell about this issue is open.
Regards,
Harald
Originally Posted by sgardiner
Has anyone got any experience using the bundlemigrate.xml file. I saw the coolsolution article on this and thought it would it would fit my environment. But haven't got it to work.
We are currently using ZFD4, rather than migrate apps into ZCM I have built new apps in ZCM.
The problem we have is that we have multile sites with the same app but differently GUIDs in ZFD4 (multiple app containers without using GUID sync). So using the bundlemigrate.xml file, seemed likes the only solution with or without an app migration.
I have built a kix script to read the registry of the PCs and match the GUIDs of ZFD4 to ZCM. But it appears that the bundlemigrate file is ignored on PCs. I was wondering if anyone had any knowledge on this approach and if I need to trigger another file on the PC/registry key during the migration for bundlemigrate to be read. This is to eliminate apps being redeployed to hardware.
I have an SR open with Novell, but this doesn't look good as ZFD4 is not supported. However, this doesn't help me move to a supported environment.
My current script.
Reads the registry and outputs to a file with GUIDs.
This file is read back in if a match is found to a bundle in ZCM, a temporary bundlemigrate file is built.
The agent is deployed with an autoit, passing it registration information, based on computer information.
The new bundlemigrate file is copied into location.
Run Once key added to perfrom a zac refresh
The machine is rebooted
my bundlemigrae file looks like:-
<?xml version="1.0"?>
<BundleList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://novell.com/zenworks/bundle/MigrateZEN7" >
<Bundle ID="54686252bbf72464a7d642c6bac3319d" Version="4" Installed="TRUE" />
</BundleList>
Any assistance welcome.

Similar Messages

  • Creating a help interface using HTML/XML for text data.

    Hi,
    I'm currently building an application which has need of a help feature. I plan to have this either in an individual/internal frame or in a seperate browser window. My question is this:
    1. Can I open a browser window without losing my OS independence?
    2. Is there a swing component that displays a HTML file from the source file, or is my only option to get an XML file, run it through SAX and display it that way?
    Note: I'm already using an XML parser as part of this project, so using it for a help file would be no big problem. I'm just trying to find a (quick) workaround. Not that I like cutting corners.
    Any comments on this are welcome, no matter how small.
    Thanks for your time.

    In answer to 1. -> No you can't open a browser window without using the underlying OS mechanism...you could however encapsulate the OS mechanisms in a separate class/package so that your core app doesn't have to know...
    In answer to 2. -> Danger Will Robinson!!! Yes you can use the JEditorPane, but to be fair, it's c**p, and when you release the system your Users will whine endlessly about why they can't open their help files in their usual browser (this is especially true if they are coded in HTML). I know this because I wrote a help application using HTML and had Users and the marketing department complain at me endlessly. Also, the HTMLEditorKit in Swing seems to have a number of strange handling of img paths, at least in 1.3 it did...this caused me all sorts of problems...
    The usual way to get around this kind of thing is to open up a file browser, get the User to pick their favourite browser application (usually the .exe on Windows or the script on Unix) and then remember it, when it comes to opening the help file just use Runtime.getRuntime ().exec ("userBrowserLocation pathToHelpFile"). Of course this has the trouble that you can't package the help file in a jar or zip, but in general Users want to have control over HTML files...and Users usually have a fanatical desire to use their favourite browser to view them in...
    Just a thought...

  • ADO's Use with XML for Data Transfer

    Does anyone know if ADO is supported as a data transfer method
    between XML and Oracle8i and back (from Oracle8i and XML)? If
    not, are any other Microsoft drivers supported for this type of
    operation?
    null

    Hi there,
    I have a similar question for you: I have an ASP page (coded in vbScript) that connects to an oracle 9i database via ODBC and accesses data using ADO.
    Using this method I can read and write to the database successfully for all data types except that of XML Type.
    It is my understanding that a column of XML Type is fundamentally treated as a CLOB column underneath the covers. Then why can I write data to a CLOB column and not to an XML column using ADO methods??
    Here is the code I am using:
    'put my dom object into a variable
    Dim xmlDoc
    xmlDoc = objDom.xml
    ' Connection string
    Dim cnxn
    Set cnxn = Server.CreateObject("ADODB.Connection")
    cnxn.Open "dsn=sc3;uid=user;pwd=password;"
    ' Recordset object
    Dim rs
    Set rs = Server.CreateObject("ADODB.Recordset")
    rs.Open "Select * FROM xmltabletest", cnxn, 2, 2
    'write xml document to column of xml type
    rs.AddNew
    rs("xmlcol") = xmldoc
    rs.Update
    ' clean up
    rs.Close
    cnxn.Close
    Set rs = Nothing
    Set cnxn = Nothing
    Any help with this would be great. I'd also like to write the xml document to a table of xml type using the same/similar method.
    Can anyone help me please?!?
    Thanks in advance,
    Ari

  • Using data guard for migration pruposes.

    Hi we are looking to consolidate a couple of databases onto a single server. One of the databases is our bi database which is currently running on a single server and it is running oracle 10.1.0.3 on suse linux 64 bit.
    We also have an oracle 2 node cluster running on RHEL4 64 bit linux itanium. which is our sote database.
    We are looking to create a physical standby server of the store database onto a new server and storage array and also we are looking to migrate the bi database over to the same server/storage platform and would like to use ASM as the storage option for both of the database once they are migrated and also replicated to the new server.
    I guess my question is...can I run multiple different versions of oracle on the same server or is this just a bad idea? we know that we need to have the same version 10.2.0.3 for the physical standby server which is a different version than the bi datatabse so would it be better idea to upgrade the bi database to also be running 10.2.0.3 before we are to try and replicate it to the new hardware?
    I hope this is not confusing,
    Thx.

    Lets start with what physical Data Guard standby is ... it is the creation of a row-for-row, block-for-block duplicate of a primary production database.
    If the version are not identical that is impossible.
    If the data contained within them is not identical that is impossible.
    If you want to merge databases I would suggest Transportable Tablespaces ... nothing is faster and safer.
    Once you have you data merged you can then create a physical Data Guard standby for purposes of replication if you wish.

  • How useful is XML for accesing a server

    Suppose I have a client applet that makes a query to a server application with this small protocol:
    CLIENT: Send a date (user inputs it in his own locale format, so client applet encodes it as an integer: 2 bytes for year, 1 for month and 1 for day)
    SERVER: Send a response byte
    CLIENT:interprets response as a success / error, and shows an appropiate message to the user in his own language and locale.
    How would XML help in this?

    If you control both the client (applet) and the server, then XML is not necessairly the best solution.
    XML provides a flexible decoupling mechanisim that allows both the sender and receiver to restructure the message. This is very important when you:
    1. Intend to interface with a client you have no control over.
    2. Intend to interface with a server you ahve no control over.
    3. Intend to develop your client and your server independently.
    4. Intend to deploy updates to your client and server independently.
    If the client is downloaded from the server (as in an applet situation), the you basically control both the client and the server at the same time (in the webserver). So most of these issues don't really exist. However, if you perceive that future plans for your product would allow independent control of the client and the server, or have to interface to other clients that you do not control, then it may be better to consider an XML coupling from the beginning.
    Note that using XML is not enough, you should evaulate and plan for how the XML message should be allowed to grow so you will not design your XML message in ways that are too inflexible (preventing you from upgrading the client or the server independently) or too abstract (preventing undertanding of the message without explicit knowledge of the internals of the client and / or the server).
    One example of the "too abstract" trap is deciding to make every element in the XML message esentially the same, that is, a message of "Objects" where there is no understanding of what that object is without having the .class file around to unpack it.

  • Using external xml for spry menu help

    Just started playing with DW CS3, I would like to know how to
    insert a spry menu and get the xml data from an external file. Can
    anyone point me at a suitable example or tutorial please?

    The video workshop has some great tutorials with spry.
    http://www.adobe.com/designcenter/video_workshop/
    Aram

  • How use Import Utility for Migration to 10g

    Hi everybody,
    I want to upgrade Oracle 8 - 9i Databases to 10gR2 using Export/Import Method. Do I use FULL Import or TOUSER Import Method?
    1) The problem of a FULL import is the next:
    A FULL IMPORT imports objects from SYSTEM, OUTLN, DBSNMP (and this from an earlier version).
    Some objects are imported with success and some others are rejected. There are too many errors.
    2) And TOUSER option work well but doesn't import the following objects:
    TOUSER = (USER1, USER2…USERn)
    Profiles
    Public database links
    Public synonyms
    Roles
    Rollback segment definitions
    Resource costs
    Foreign function libraries
    Context objects
    System procedural objects
    System audit options
    System privileges
    Tablespace definitions
    Tablespace quotas
    User definitions
    Directory aliases
    System event triggers
    Do you have some suggestion?
    Regards,
    Azizollah

    Hi,
    I understand that now. I have to make a Full export/import because the following objects can only import by a full method.
    -     Profiles
    -     Public database links
    -     Public synonyms
    -     Roles
    -     Rollback segment definitions
    -     Resource costs
    -     Foreign function libraries
    -     Context objects
    -     System procedural objects
    -     System audit options
    -     System privileges
    -     Tablespace definitions
    -     Tablespace quotas
    -     User definitions
    -     Directory aliases
    -     System event triggers
    Regards
    Azizollah

  • How do I know what are custome code deployed on my site for Migration from 2010 to 2013

    We have around 500 sites and several Webapplication. Now we want to migrate site from SharePoint 2010 to 2013
    We will use Metalogix tool for Migration. However we want to know which custom changes site Have , SO those WSP we can deployed on 2013, So that Site will work fine After Migration.
    SO question is there is any way where I can find what customization site have ?
    I want poweshell which will tell me these WSP have deployed on this Sitecollection , SO that only those I will deploy on 2013 ? ALso
    Suppose I have created Workflows through designer , is there any powershell which will tell me these workflow have deployed on particular site, so that I can check is those Migrated successfully or not.
    Please mark answer , if you think answer is helpful or correct.

    Hi,
    Please see the link below that will give you detailed steps to identify customizations
    Checklist for upgrade
    Cheers
    FrenchSpeaker - MCTS

  • HT3231 time machine backup for migration

    How do I use time machine for migration from a Macbook to Macbookair?

    See 'Trnasfer info from a Time Machine backup ..." - scroll down a bit to see it here:
    http://support.apple.com/kb/PH14245

  • Dynamic User,Role,Group rather than use jazn.xml

    Hi everyone
    For Jdev 11..
    can anybody tell me how to make application wich can make user,group,role dynamically...
    rather than use jazn.xml...
    I thought if i use jazn.xml for register user and group its very static...
    I cannot make it dinamycally....
    I read OPSS and I cannot found the idea behind it...
    thanks...

    Hi,
    You can achieve this by using a sql authentication provider. It gets the users and their roles & credentials from the db tables which you can configure in WLS. In JSF, you can create a creation form based on the table (which you configured for authentication), which can be used for the users to register.
    Check out this doc for more information.
    Regards,
    Arun

  • Overriding web.xml using Plan.xml

    Hi,
    I want to override certain values (MAX_ROW_FETCH_SIZE)  in web.xml using Plan.xml for a servlet deployed on weblogic server.
    My web.xml looks like this.
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5">
      <servlet>
        <servlet-name>trial</servlet-name>
        <servlet-class>oracle.apps.cmi.sv.fwk.webui.trial</servlet-class>
        <init-param>
          <param-name>MAX_ROW_FETCH_SIZE</param-name>
          <param-value>50</param-value>
        </init-param>
        <init-param>
          <param-name>JDBC_MAX_FETCH_SIZE</param-name>
          <param-value>20</param-value>
        </init-param>
      </servlet>
      <servlet-mapping>
        <servlet-name>trial</servlet-name>
        <url-pattern>/trial</url-pattern>
      </servlet-mapping>
    </web-app>
    My Plan.xml looks like this
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://xmlns.oracle.com/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd">
      <application-name>SPUF</application-name>
      <variable-definition>
        <variable>
          <name>SessionDescriptor_timeoutSecs_13708393894780</name>
          <value>3602</value>
        </variable>
        <variable>
          <name>MAX_ROW_FETCH_SIZE</name>
          <value>3</value>
        </variable>
        <variable>
          <name>JDBC_MAX_FETCH_SIZE</name>
          <value>2</value>
        </variable>       
      </variable-definition>
      <module-override>
        <module-name>SPUF.war</module-name>
        <module-type>war</module-type>
        <module-descriptor external="false">
          <root-element>weblogic-web-app</root-element>
          <uri>WEB-INF/weblogic.xml</uri>
          <variable-assignment>
            <name>SessionDescriptor_timeoutSecs_13708393894780</name>
            <xpath>/weblogic-web-app/session-descriptor/timeout-secs</xpath>
          </variable-assignment>
        </module-descriptor>
        <module-descriptor external="false">
          <root-element>web-app</root-element>
          <uri>WEB-INF/web.xml</uri>
          <variable-assignment>
            <name>MAX_ROW_FETCH_SIZE</name>
            <xpath>/web-app/servlet/init-param/[param-name="MAX_ROW_FETCH_SIZE"]/param-value</xpath>
            <operation>replace</operation>
          </variable-assignment>
          <variable-assignment>
            <name>JDBC_MAX_FETCH_SIZE</name>
            <xpath>/web-app/servlet/init-param/[param-name="JDBC_MAX_FETCH_SIZE"]/param-value</xpath>
            <operation>replace</operation>
           </variable-assignment>                     
        </module-descriptor>
        <module-descriptor external="true">
          <root-element>wldf-resource</root-element>
          <uri>META-INF/weblogic-diagnostics.xml</uri>
        </module-descriptor>
      </module-override>
      <config-root>/home/oracle/ebssdk2</config-root>
    </deployment-plan>
    I can see new value reflected for "Session TimeOut" for service configuration.
    However when I use service to query certain data while considering "MAX_ROW_FETCH_SIZE" parameter, It is still querying 50 rows (Value in web.xml) at a time instead of 3 (As defined in Plan.xml)
    I am using servlet init method to get init parameters in my java file.
    Can someone help me to overcome from this issue or have any suggestion?

    You could use Apache Ant and create 2 separate WAR files , one for development and one for production.
    Normally I don't create a WAR file for the development environment. WAR file is made only for production.
    This is how my Ant task runs currently.
    1) For the development environment the ant task runs only to compile Java classes and nothing else, web.xml is that for development environment.
    2) When the app is ready for production , I run Ant to copy all files from my dev folder to a temporary build folder - during this copy I filter out the .java files (since there's no longer a need for them in production) only class files are moved.
    3) Then I treat the above temporary folder as the source folder, and run the Jasper pre-compiler which significantly alters the web.xml file .
    But the good part is that my original development web.xml stays unaltered since it is in it's own folder.
    4) Then finally I run a WAR task on the processed contents of the temporary build folder which contains the modified web.xml
    This way each environment has it's own web.xml .

  • Designe for migration....

    Hi all!
    My head say that i do use oracle designer for migration by SQL SERVER2000 to Oracle9!
    I have study that it's much possible with migration workbench but he want it!
    Can you say me the different?And if is a good why designer?
    Thank a lot, in advance!
    Marie

    Hi,
    Did you get any answers for this? We are also facing problems while using the FM  BAPI_BUS2177_STAFFING_ADD
    When we call  BAPI_CPROJECTS_COMMIT_WORK it returns with an error. When tried to debug, found that system raises an event save_requested and then error occurs.
    Please let us know, if you resolved the issue and could upload staffing data.
    Thanks in advance.

  • Can you use an XML file to make Subclips for you?

    Hi everyone,
    I know this is a bit of a long-shot, but I am wondering if I can use an XML file(made after logging a few tapes, but before capture) to make subclips for me?
    Basically I have a painful project with 2 tapes i had to capture separately as 1 long individual clip each due to time-code breaks, but as i did first Log & Capture as usual (only to later find it wouldn't batch capture) i didn't want my hard work to go to waste!
    Hope I explained that clearly enough,
    Adam
    Message was edited by: Chocboy

    I'm assuming you captured using the non-controllable device setting and have the clip including TC breaks and blank areas etc.
    Try this:
    Load the clip into the Viewer and play it. Press M to set markers wherever you want them.
    If you want to give the marker a more decriptive name, press M a second time whilst the playhead is positioned on the marker. A dialog will open with text input fields. Or, click the marker in the Browser, then click the marker’s name to select it. You can now change the name.
    Drag in the Browser to select all the markers or click the first one, then shift click the last one.
    Choose Modify > Make Subclip. This will make all the subclips in one go and if you gave your markers new names, your subclips will use them.
    The subclips appear in addition to the original clip with the markers. You can rename the subclips, if you want. You can review the subclips, deleting any clips you might not need. If you do remove unused clips, you can use the Media Manager to remove your unused footage from disk, leaving the media for your remaining subclips alone.

  • Structure inDesign document and export as XML for use in the web

    Hello everyone,
    I just recently started using inDesign and I am fascinated by its possibilities! I use it for a project where a finished inDesign layout that is used for a printed publication is now supposed to be transformed for implementing it on a web site. My job is to export the inDesign document as an XML file. After massive reading the last weeks I'm quite familiar with the structuring and tagging in inDesign. Though there's some issues I do not understand. Your precious advice would be of highest meaning to me
    The programmer who will later use my XML output for the web-transformation needs the document structured in different levels like "Root > Chapter > Subchapter > Text passage / table". I already structured the document with tags like title, text passage, table, infobox,... but the structure is just linear, putting one item following to another.
    How can I structure the document with reoccuring tags that enable me to identify the exact position of an item in the document's structure? So that I can say for example "text passage X" is located in chapter 4, subchapter 1. This has to be done because the document is supposed to be updated later on. So maybe a chapter gets modified and has to be replaced, but this replacement is supposed to be displayed.
    I hope my problem becomes clear! That's my biggest issue for now. So for any help I'd be very thankful!

    Our print publications are created in InDesign CS5 for Mac then the text is exported to RTF files then sent to an outside company to be converted to our XML specifications for use by our website developers.  I would like to create a workflow in which our XML tags are included in the InDesign layouts and then export the XML from the layouts.
    Some more detail about what kind of formatting is necessary might be helpful.
    I know that IDML files contain the entire layout in XML format.  Is it a good idea to extract what we need from IDML, using the already-assigned tags?
    Well, if you want to export the whole document, it's the only reasonable approach.
    We use a workflow system such that each story is a seperate InCopy document, stored in ICML format (Basically a subset of IDML). Our web automation uses XSLT to convert each story into HTML for use on our web site; it also matches it up with external metadata so it knows what is a headline and what is not, etc.. It is not exactly hassle free, and every once in a while someone uses a new InDesign feature that breaks things (e.g., our XSLT has no support for paragraph numbering, so numbered paragraphs show up without their numbers).
    You could do the same thing with with IDML, you'd just have to pick out each story, but that's small potatoes compared to all the XSL work you're going to have to do.
    On the other hand, there may be better approaches if you're not going to export the whole document. For instance,  you could use scripting to export each story as an RTF file, and then you could convert the RTF files into HTML using other tools.

  • Sender file adapter - Can I use *.xml for the file name

    Hi Gurus,
    I have some interfaces where I need to pick the file from a directory. The name of the file will have Data<i>time stamp</i> as the naming convention. Can I use *.xml to pick up my files from this directory?
    The help.sap.com documentation says that we can use this naming convention.
    <b>
    &#9679;      File Name
    Specify the name of the file that you want to process. The name can contain placeholders (*, ? (placeholders for exactly one character)) so that you can select a list of files for processing.
    </b>
    I tried using *.xml for my file name in the communication channel, XI is not picking up this file.
    Please let me know if you have the solution.
    Thanks
    Kalyan

    Murthy,
    Thanks for the reply.
    I am using GuildFTP tool as my FTP server. In this tool, all the permissions were given for the file to pick up.
    The status of the file is good.
    Where in the file adapter configuration I have to select 'Read-only'?
    The file adapter is working perfect with the exact name of the file.
    Thanks
    Kalyan

Maybe you are looking for

  • Getting Asus ATI 4870 to work in my Mac Pro. Not working. please help!

    I read here on these boards that an ATI 4870 would work in an early model (in my case, 2006) Intel Mac Pro. I jumped in hastily and bought the Asus branded card: EAH4870 I connected it, and nothing... did not work. I do not think it is a Mac version

  • Iphoto created duplicates in seperate folder ?

    i had all of my photos in a folder 'digital camera photos' and put that folder in the 'pictures' folder, when i added/imported all the photos in the 'digital camera photos' to the iphoto library, a new folder was made in the 'pictures' folder which i

  • Compiler error: Code could not be generated

    When I tried to run the example.VI (attached) there was an error: Compiler error. Report this problem to NI Tech support copy cvt, csrc = 0X40 bad mode in _GenCopyCOnvertNumCode xc = 0X40 Could anyone help me in this regard., Thanks in advance Rajesh

  • Pattern tool background fill

    Is there a way that the background fill of a pattern can fill the whole pattern so that there aren't gaps like the above picture? So that it woudn't matter if you expanded the border there would always be a solid fill background?

  • Help me to schedule blank report

    my requirement is to schedule the report. if report does not give any results(no results) need to deliver empty(blank) spreadsheet. can anybody help me to get this done?