App-V Server : Changing Package Name through Powershell.

Hi,
Is it possible to change the package name through powershell ?
Here is the sequence i tried which didn't work...
 $package=Get-AppvServerPackage -PackageID ""
 $package.name="<new name>"
 Set-AppvServerPackage -AppvServerPackage $package
And also the version set to all the packages is set to 0.0.0.1 , Is there any other place where they save the version of software or they don't deal with software version ?
Any help on this would be great...
Thanks,
Sumit.

I doubt that you can modify the package name 'afterwards'. If the package name really is a concern (users usually don't see that), it should be modified using the Sequencer or Application Virtualization Explorer.
Falko
Twitter
@kirk_tn   |   Blog
kirxblog   |   Web
kirx.org   |   Fireside
appvbook.com

Similar Messages

  • Change package name of RFC Model in NWDS

    Hi All,
    Is there a way to change Package Name of Adaptive RFC model in NWDS? I can do that by deleting the existing model and creating a new one, but is there a way to achive it without deleting the model?
    Thanks in advance,
    Pravin

    i dont think there z any other way out...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10465350-b4f5-2910-61ba-a58282b3b6df
    page 5

  • App-V Server : Changing Connection Group Name through powershell.

    Hi,
    Is it possible to change the name of existing Connection group through powershell  ?
    I've tried using Set-AppvServerConnectionGroup but i was unable to change the name of existing group.
    Thanks,
    Sumit.

    Do this:
    $group = Get-AppvServerConnectionGroup -Name "Connection Group A"
    $group.name = "Connection Group B"
    Set-AppvServerConnectionGroup $group
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Changing Package Name of an AIR apk

    Hi. I have created an AIR app that is currently in the market. To update the app, obviously I must keep the same package name. My first version's were packaged using Eclipse with the ADT plugin.
    Now to use AIR 3.0 Native Extensions (ANE) which were not available when I first developed the app, I currently must create my APK using AIR's command line tools. Unfortunately, these command line tools force you to have a package name that starts with the word "air". For example, I need the package name "com.example". AIR creates the package name as "air.com.example".
    So now, I cannot update my app in the market since the package name has changed. Adobe has this horrific article to help you rename and remove the "air" in the package. I'm not a great programmer so this has really stumped me.
    http://kb2.adobe.com/cps/875/cpsid_87562.html
    Apparently this info is out of date or incorrect in a few areas.
    I have completely stumbled at step 12 which uses apkbuilder:
    apkbuilder final.apk -u -z resources.arsc -f classes.dex
    I am getting this error message:
    THIS TOOL IS DEPRECATED. See --help for more information.
    java.io.FileNotFoundException: resources.arsc does not exist
    I have used step 10 to create the new resources.arsc file. It clearly DOES exist and in the correct location. I tried using apkbuilder with other resources.arsc files taken from other projects. I still get the same error message.
    Maybe there is another way to do this using another tool like like apkTool. http://code.google.com/p/android-apktool/
    I tried this but then couldn't get jarsigner to sign the apk properly.
    Is there a chance in hell of this working? There doesn't seem to be much about this topic on the internet. If anyone is interested in this, I have a zip file with a sample AIR apk, windows bat files for all the command line work, and all the needed utilities so they don't need to be downloaded. To get started you just need to change my path.bat to fit your system. And you need notepad++ (or an equivalent) to batch automate renaming the package name across several files.
    http://bradwallacedesign.com/dktimer/renameApkProject.zip
    Thanks so much!

    If the DisplayObject is on the timeline then its name cannot
    be modified, but the name property of dynamically created
    DisplayObjects can be changed. (DisplayObject.name:String
    read/write).

  • Planning App Web Server changed.

    Hello gurús!
    I´m in a big issue. In my org, we have 3 physical servers with 3 servers installed: Essbase, Shared Services and Planning. The problem is that we cloned that servers to virtual machines to duplicate these servers. We want to reconfigure that virtualized servers to work like that physical servers. Essbase and Shared Services was reconfigured succefully, but planning had problems with Web Logic licence. For that, we decided to change app web server from web logic to apache tomcat 5. After that, we reconfigure planning using the same instance, data sources and application that were in the source physical server. But it doesn´t work, because planning does not connect with apllications, and Workspace doesn´t not work properly. It only listen at port 45000 and did not at 19000 (like in physical server). Also, workspace cannot connect with planning (if we want to create a planning application it throws these errors: "Invalid or not find module configuration", "Required application module HyperionPlanning.planning is not configured. Please contact your administrator.", "Comunication Error".
    Also, when I start workspace from Start->Programs->Hyperion.... In server console it throws a that Warning: "Please initialize the log4j System Properly". This maybe the reason because planning and workspace doesnt write any logs?
    Thanks for your time floks.
    Best regards,
    Fabián

    What did you do to clone, use a P2V vm conversion? What about hostnames and dns names ? Personally I don't believe trying to clone is a good idea.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Changing package structure through scripts

    Hi ,
    I have a project with huge number of files(around 2 thousand).
    I want to change the package structure of my source files.Previously no consistent approach is followed.so i want to correct that now.
    I can map each file to a new package structure.
    example: mypackage\common\sample.java = app\comon\Using this input i want to correct oackage and releated imports in my java files.Can any one help me write the best one
    or even if anyone can point to anything of this sort written earlier it would be of great help to me.
    Thanks in advance.

    ..And I am not looking for a simple search replace
    option...
    as it is very difficult for me to test this project.
    So, I am looking for a reliable way of changing
    package and import statements in the depending filesThis would still be a simple search and replace just with "package " and "import " in front of the package name to search for. But you would still have problems whenever the following is used:
    a.b.c.d.F bogus = new a.nb.c.d.F();As a matter of fact, simple search and replace (as long as it is done on the entire package name and not just parts of it) is probably your best bet, if you do not want to go the IDE way. There would probably still be a few mistakes, but there shouldn't be many (if your mapping is reliable). The other problem is would be if classes in one package are to be split into multiple packages, then have fun with any script you write to do it.

  • Change package name of a form

    Hi,
    I want to change the package name of a Form in se71 from $TMP to a company package name. I would like to know the step by step process and direct answer please!
    Points will be rewarded!
    Thanks!

    Hi there,
    I believe the only solution for your issue is to open the form in the change mode,
    then click on the File--> Save As and then give some name and assign the package,,
    then you can always delete the previous form save in $tmp.
    Let me know if you need further help.
    Thanks-

  • 10.5 server changes host name when changed to be member of 10.4 OD Master

    Hi,
    I have a Xserve with 10.4.11. This is my working OD master hostname: AAA, FQDN: AAA.domain, realm DOMAIN. Now I have a PowerMac G5, hostname BBB, FQDN BBB.domain, where I install 10.5 server.
    When it comes up as stand alone, the hostname is BBB (FQDN BBB.domain), but when I then connect it (as domain member) to my OD master, it promts me to say that "AAA" is a used hostname and that it changes hostname to" AAA (2)".
    In my DNS it is still identified as BBB.domain, and it is bind to the realm as BBB.
    Why does it act like this?
    Subsequently I can't get kerberos to work and SMB does not want to be a member of the domain (always get back to standalone instead of becoming member of the domain).

    Here comes a bit more on this one. I waited and maybe this had to do with having a OD master in Tiger and the OD member on Leopard. But now both are in Leopard. And things are the same.
    I have thou been studying the Console after some tips. And I'm changing the host name in Server Admin/Network to BBB (what it should be). And it seems to work fine. Name of the server changes where supposed to (what I can see). And in Console I can se that the administration tool changes host name in a variety of places.
    And now I wait.
    If I do nothing (the network is pretty small), nothing happens. But after a while, I login with for example Remote desktop the followingapears in Console:
    +Jan 3 12:58:02 emil mDNSResponder[30]: User updated Computer Name from AAA (2) to AAA+
    +Jan 3 12:58:02 emil mDNSResponder[30]: afpovertcp.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: ssh.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: sftp-ssh.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: servermgr.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: rfb.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: ldap.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: net-assistant.udp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: adisk.tcp. service renamed from "AAA (2)" to "AAA"+
    +Jan 3 12:58:02 emil mDNSResponder[30]: User updated Local Hostname from AAA-2 to AAA+
    +Jan 3 12:58:03 emil mDNSResponder[30]: Local Hostname AAA.local already in use; will try AAA-2.local instead+
    +Jan 3 12:58:03 emil mDNSResponder[30]: afpovertcp.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: ssh.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: sftp-ssh.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: servermgr.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: rfb.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: ldap.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: net-assistant.udp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: adisk.tcp. service renamed from "AAA" to "AAA (2)"+
    +Jan 3 12:58:03 emil mDNSResponder[30]: User updated Computer Name from AAA to AAA (2)+
    +Jan 3 12:58:03 emil mDNSResponder[30]: User updated Local Hostname from AAA to AAA-2+
    +Jan 3 12:58:03 emil mDNSResponder[30]: mDNS_SetFQDN - hostname unchanged+
    "AAA (2) to AAA" may as well be "BBB to AAA". But I'm very surprised over that the logg claims that "User updated Computer name..." For all I know, I haven't. And note in the middle here that the mDNSResponder changes to AAA (which indeed is used - it's the OD master!!!), discovers that the name is in use, and then changes to "AAA (2)".
    But why does it at all initiate a change from AAA to "AAA (2)"?
    Why can't I call the server BBB?

  • Getting single "generic" WLS 4.5.1 app to serve multiple DNS names, including SSL

    Hi everybody,
    I am trying to figure out a strategy to enable a single web application
    based on WLS 4.5.1 (SP13) running on Linux to serve multiple DNS
    names, with some specific pages to be transmitted using SSL.
    While the JSP pages differ in colouring and screen layout (but not in
    logic),
    the entire EJB business logic is identical for all DNS names. So are the
    servlets.
    The application data to be presented to the user can easily be mapped,
    and presently (with the application responding to a single DNS name)
    it is cached using a JNDI tree. To minimize coding effort, and
    to continue utilizing the present caching concept, only expanding it to
    support
    multiple similar "virtual" applications, I would prefer to
    continue using a single WLS instance when making the application "generic".
    But as a consequence of this, I could only present a single SSL certificate
    to the user if I had WLS answer internet HTTP requests directly.
    What would you think should be done to get the browsers
    "display the closed padlock while in the order form" for multiple DNS names
    served by this same application instance?
    One approach might be to put Apache in front of WLS, and configure it
    to serve multiple virtual hosts (one for each DNS name to be served,
    encoding the differences between the request URLs somehow in the ServerPath
    directive, and providing a separate SSL certificate for each of those
    virtual
    hosts).
    Does this make sense to you? Any experience in this area? Which Apache
    and WL modules should I be using - which combination
    of mod_proxy, mod_ssl (by Apache), mod_wl, mod_wl_ssl[_raven] ?
    Any input would be greatly appreciated! Thanks in advance!
    Ruben
    [A minor add-on question is: Is the situation truly different with
    WLS 6.0? I understand it supports virtual hosting on its own. Can multiple
    (web) applications running under a single common WLS "umbrella" server
    instance share the same application data? I would expect so - is this true?]

    Ruben, I can't help you with the specifics of the configuration but your
    general strategy seems correct to me. WLS does not handle multiple certs
    and one must front it with a Web server if multiple certs are required.
    Neil Smithline
    WLS Security Team
    BEA Systems
    "Ruben-B Reincke" <[email protected]> wrote in message
    news:[email protected]...
    Hi everybody,
    I am trying to figure out a strategy to enable a single web application
    based on WLS 4.5.1 (SP13) running on Linux to serve multiple DNS
    names, with some specific pages to be transmitted using SSL.
    While the JSP pages differ in colouring and screen layout (but not in
    logic),
    the entire EJB business logic is identical for all DNS names. So are the
    servlets.
    The application data to be presented to the user can easily be mapped,
    and presently (with the application responding to a single DNS name)
    it is cached using a JNDI tree. To minimize coding effort, and
    to continue utilizing the present caching concept, only expanding it to
    support
    multiple similar "virtual" applications, I would prefer to
    continue using a single WLS instance when making the application"generic".
    >
    But as a consequence of this, I could only present a single SSLcertificate
    to the user if I had WLS answer internet HTTP requests directly.
    What would you think should be done to get the browsers
    "display the closed padlock while in the order form" for multiple DNSnames
    served by this same application instance?
    One approach might be to put Apache in front of WLS, and configure it
    to serve multiple virtual hosts (one for each DNS name to be served,
    encoding the differences between the request URLs somehow in theServerPath
    directive, and providing a separate SSL certificate for each of those
    virtual
    hosts).
    Does this make sense to you? Any experience in this area? Which Apache
    and WL modules should I be using - which combination
    of mod_proxy, mod_ssl (by Apache), mod_wl, mod_wl_ssl[_raven] ?
    Any input would be greatly appreciated! Thanks in advance!
    Ruben
    [A minor add-on question is: Is the situation truly different with
    WLS 6.0? I understand it supports virtual hosting on its own. Can multiple
    (web) applications running under a single common WLS "umbrella" server
    instance share the same application data? I would expect so - is this
    true?

  • Error while adding the app in the sharepoint(2013) page through powershell script

    Hi,
        I have created one powershell script to uninstall and install the sharepoint 2013 apps. The code is working fine, but after adding the app in the page I am getting the error "
    Internet Explorer can not display the webpage".
    If I am deploying the app through Visual Studio, its getting deployed successfully and I am getting an option to trust the app.And I am able to add it in the page. But this permission is not coming when I am installing the app using power shell.
    Please let me know whether to do any modifications to the power shell script.
    Thanks.
    Pradeep

    Hi,
       We are using sharepoint hosted app.
    Below is the script to uninstall and install the app.
    cls
    Add-PSSnapin Microsoft.SharePoint.PowerShell –ea SilentlyContinue
    # uninstall the app
    Write-Host "uninstallation of app"
    $InstalledSPApps = Get-SPAppInstance -Web "http://mySharepointSite.xyz.com"
    $appToUninstall = $InstalledSPApps | where {$_.Title -eq 'myCustomSharepointApp'}
    if ($appToUninstall -ne $null)
        Uninstall-SPAppInstance -Identity $appToUninstall ;
        Write-Host "uninstalled successfully"
    # Import-SPAppPackage
    Write-Host "Import the app"
    pause
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::RemoteObjectModel);
    $myspapp = Import-SPAppPackage -Path "D:\SharePoint 2013\AppsSolution\myCustomSharepointApp.app" -Site "http://mySharepointSite.xyz.com" -Source $sourceApp ;
    Write-Host "Enter to install the app"
    pause
    $app = Install-SPApp -Web "http://mySharepointSite.xyz.com" -Identity $myspapp;
    $AppName = $app.Title;
    Write-Host "app '$AppName' registered"
    pause
    $appInstance = Get-SPAppInstance -Web "http://mySharepointSite.xyz.com" | where-object {$_.Title -eq $AppName};
    $counter = 1;
    $maximum = 150;
    $sleeptime = 2;
    Write-Host -ForegroundColor White "Please wait..." -NoNewline;
    pause
    while (($appInstance.Status -eq ([Microsoft.SharePoint.Administration.SPAppInstanceStatus]::Installing)) -and ($counter -lt $maximum))
        Write-Host "." -NoNewline;
        sleep $sleeptime;
        $counter++;
        $appInstance = Get-SPAppInstance -Web "http://mySharepointSite.xyz.com" | where-object {$_.Title -eq $AppName}
    pause
    if ($appInstance.Status -eq [Microsoft.SharePoint.Administration.SPAppInstanceStatus]::Installed)
        Write-Host "The App was successfully installed.";
        $appUrl = $appInstance.AppWebFullUrl;
        Write-Host -ForegroundColor White "The App is available at '$appUrl'.";

  • Cannot Update App-V 5.0 SP3 DB Server 'the specified name already in use'

    We planned to update our App-V  server from App-V 5.0 SP1 to App-V 5.0 SP3
    2 Servers (Both are Management Servers and Publishing Servers) with a remote SQL (2008 R2)
    we verified that all the registry keys exists according to the the
    Technet Document
    when we ran the setup file on the server we chose to install all of the roles and we got to the error:
    the specified name is already in use. you must provide a unique name database name
    The DB is already exist! we just want to update it to SP3 as well...
    So we installed all the roles but Management Server DB and the installation completed successfully,
    but now we still have a problem as the server can't connect to the DB (probably because it hasn't been updated)
    now we get this error:
    there were problems interacting with the database on the server. The error was: Invalid culomn name 'PackageOptional'.
    Invalid culomn name 'VersionOptional'
    we ran the setup with a domain admin that has full admin priviledges either on the App-V Servers and the SQL.
    we can't run the setup.exe on the SQL Server itself as it hosts many other DBs and doesn't have .Net Framework 4.5.1... besides the fact the DBAs don't really want to do it.
    we tried to backup the DB, attach it on a local SQL (under the App-V Server) , changed the registry keys to direct to the local DB and we got the same errors when we tried to run the upgrade!
    how come the documentation doesn't have anything about updating the DB?
    another question I couldn't figure out. can I use App-V Server 5.0 SP3 with App-V Client 5.0 SP2 HF4?
    anyway - please help!
    thanks!!
    Tamir Levy

    One more thing, I know how to expand the DB Scripts and run them manually on the SQL Server,
    but from my understanding, it is only to create new DBs and not to update the DB Tables...
    anyhow, I don't think the DB update should be such a complex and unfriendly method, especially when I took the DB and put it on a local SQL! this should be updated with a simple "Next , Next" Setup...
    Thanks
    Tamir Levy
    At the current time, there is some contradictory information available on technet.  On one side, the Planning for High Availability document describes how
    to extract the database scripts and run them against a SQL host so you don't have to run the EXE directly on the SQL host (yes, this does upgrade the tables too, not just create new ones, apparently the order to execute them is wrong).  On the other side,
    the App-V 5.0 SP3 Support Configurations indicates that any installation where you do not run the EXE on the SQL server is unsupported.
    As an enterprise customer who has SQL in a failover cluster, this confuses me.  I cannot run the installer on the SQL server (like you, and many other enterprise customers).  And even if I could, it doesn't mean the database would exist on the
    SQL server that it was run against, as the database can failover and nodes could be rebuilt!
    In regards to versions, when I said SP2 it was actually SP1.  You are correct, there were no server upgrades for SP2.
    Please be aware, I did not get the instructions to edit the database from Microsoft.  I provided them the steps I performed to get the application to work and I'm sharing them.  I am still waiting to hear back from them to see if this will be a
    supported path or not.  The setup was written to be executed directly on the SQL box, which is an unrealistic expectation for enterprise customers.  Even previous versions had to be extracted and applied via SQL scripts!
    The command above, from Alan, is part of the database scripts.  If you extract the scripts using /layout and /layoutdir (as described in Planning for High Availability),
    you will see a script called UpdateTables.sql.  This is a part of the script, not the whole thing.  There is more logic in this script that is required to get your publishing server up and running:
    It deletes all the daat from SchemaVersion then inserts a value of 2 into it.  If this doesn't happen, you'll get weird errors when trying to receive publishing information.
    If you can wait a few days for the upgrade, I would recommend that.  I expect some more documentation from Microsoft to come out and clear some of this up.

  • Will a jni header accept a package name with "." in between

    My java class for native function call is included in a package with name like "xxx.yyy.zzz"
    So when I edit the jni class in header file generated to include the package name ,it shows error.
    Is it possible to write jni class for a native function defined in java class which such package name?

    My java class is like this.
    package aaa.bbb.ccc;
    public class Sample{
         static {
              try {
                   System.loadLibrary("WMSMS");
              } catch (UnsatisfiedLinkError e) {
                   System.err.println("WMSMS.dll failed to load. \n" + e);
                   System.exit(1);
         final static native int SendSMS(boolean a, boolean b, String SMSC,String phno, String msg);
         public static int sendSMS(String phoneno, String message){
              int msent = SendSMS(false,true,"",phoneno,message);
              return msent;
    }The header file generated has function like:
    JNIEXPORT jint JNICALL  Java_Sample_SendSMS
      (JNIEnv *, jclass, jboolean, jboolean, jstring, jstring, jstring);So I changed it to
    JNIEXPORT jint JNICALL Java_aaa.bbb.ccc_WMSMS_SendSMS
      (JNIEnv *, jclass, jboolean, jboolean, jstring, jstring, jstring);But then the cpp code showed errors on compiling.
    I dont want to change package name ,since all other classes of the project are included in it and we use this format to easily distinguish the packages (for more clarity) .
    Otherwise using a simple package name works fine and i m able to call the cpp dll with the jni.

  • Changing the BC4J package name?

    Hi All
    I created New Business Components Package for a project as xxxx.oracle.apps.pji.projperf.reporting.server.
    Now i need to change the name from xxxx to yyyy as
    yyyy.oracle.apps.pji.projperf.reporting.server.
    Please let me know how can i change the name of the package.
    Its urgent.
    Thanks

    Create your new BC4J package yyyy.oracle.apps.pji.projperf.reporting.server
    Now right click on each of the view objects in xxxx.oracle.apps.pji.projperf.reporting.server and select "Move package", choose your new BC4J package.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I need to remove "air." from package name. I'm get a Layout xml error when repackaging android app..

    So, i'm doing this on my own app. I made an update for an older app that was build using Native Android. But this time, i used Adobe AIR... The catch is Adobe likes to append a "air." to the front of your package name without asking you. So basically I can't upload my update because it has a new package name is now "air.com.mycompany.myapp" rather than the original "com.mycompany.myapp"
    Basically I'm going through this guide..
    http://helpx.adobe.com/air/kb/opt-out-air-application-analytics.html
    I followed all the steps, made all the adjustments to the androidmanifest.xml like it asks.
    But after going along with the above guide, with no issues when i get to the step that says
    "Run the following command to create the resource file for the updated AndroidManifest.xml:"
    I run this..
        "/Users/brybam/Documents/eclipse/android-sdk-mac_x86/platform-tools/aapt" package -f -M AndroidManifest.xml -F resources.arsc -I "/Users/brybam/Documents/eclipse/android-sdk-mac_x86/platforms/android-8/android.jar" -S ./res
    But I keep getting the same error regarding the xml files in res/layout
        ./res/layout/expandable_chooser_row.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/expandable_multiple_chooser_row.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/main.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/multiple_file_selection_panel.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/ssl_certificate_warning.xml:1: error: Error parsing XML: not well-formed (invalid token)
    The guide doesn't say anything about these xml files, and im not sure what to do with these or how to handle them.
    If i go into the res/layout folder, and just delete these (i know they're necessary. But i just deleted them as a test, to get through the rest of the guide...)
    I was able to get through the rest of the steps in the guide fine, make an apk, and put it on my phone...only to find out the app will crash the moment you try to run it. Probably because i deleted the layout xml files...But i cant get the command i need to run above to accept them!
    So, earlier in the guide they have me use thing thing called the "AXMLPrinter2.jar" to make the AndroidManifest.xml readable so i can edit it.
    I run something like this:
        java -jar "/Users/brybam/Desktop/repackage/AXMLPrinter2.jar" AndroidManifest.xml > AndroidManifest.xml.bk
    This makes a new file "AndroidManifest.xml.bk" and i can edit that.
    So, I was thinking with all of these layout xml files, maybe I could run this "AXMLPrinter2.jar" on them and then edit them. Because right now if you open them they're not human readable, and its hard for me to work on them if they're not...
    I tried this thinking i could do the same thing...
        java -jar "/Users/brybam/Desktop/repackage/AXMLPrinter2.jar" main.xml > main.xml.bk
    Just get a blank file and a console erorr when trying to use the AXMLPrinter2.jar on the layout xml files...
        java.lang.ArrayIndexOutOfBoundsException: 67
                  at android.content.res.StringBlock.getShort(StringBlock.java:231)
                  at android.content.res.StringBlock.getString(StringBlock.java:91)
                  at android.content.res.AXmlResourceParser.getName(AXmlResourceParser.java:140)
                  at test.AXMLPrinter.main(AXMLPrinter.java:56)
    So, I think my whole issue is based around these XML files not being converted to human readable before i try and re-package....
    EDIT:::
    Ok, so I found a site that talks about the error I'm getting but it's in chinese, and even after translating the page...I'm still not well versed with terminal and this stuff to get it.
    It reads:
    "Error.
    Final conclusion:
    In minSdkVersion <= 7, AXMLPrinter2.jar can normally decompile xml file
    Greater than 7 can not be normal decompile xml file (AndroidManifest.xml except)
    Give way to share a batch decompile xml file:
    First, create a *. Txt file
    Stresses inside the content authoring
    for / r layout%% a in (*. xml) do @ java-jar AXMLPrinter2.jar "%% a" >> "%% a". txt
    Then this txt file extension into bat form, and this BAT the file and AXMLPrinter2.jar on the same directory will be decompiled xml into the layout directory
    Decompilation results can be generated by executing the bat file multiple xml files."
    - http://hi.baidu.com/ghcghc/item/ecbaa1ce997cb225a0b50ac2
    Maybe someone with more know-how could explain what they're explaining? I get that he's saying the issue im seeing appears when you're using minSdK <=7 but I need to use minSdk 8. Does anyone understand this work around? And how I might go about it on a Mac with terminal?
    I wish adobe would make it easy to remove the "air." from the package name. If they want to convert old Native devs to AIR devs...the transition needs to be seamless. But now I'm about to have to go back to Native because I can't update an app I already have out on the market with an air app.

    Hello~
         I also tried to remove "air." package name in air application. And i encounter the same problem.
         I do not find any solution to decode the xml inside res folder by AXMLPrinter2.jar. And those xml inside is compressed which is unreadable.
         However, what you can do is copying the structure of res folder. And go to your air sdk file path -  adobeair-sdk-folder/lib/android/lib/resources/
         Replace those file exists in your res folder. And copy "values" folder to your res folder.
         Hope this solve your problem~

  • Error During install Exchange 2013 through Powershell on Server 2012 "Mailbox role: Client Access service"

    Dear all
    During install Exchange 2013 through Powershell on Server 2012 I got this error in Mailbox role: Client Access service :
    The following error was generated when "$error.Clear();
    $BEVdirIdentity = $RoleNetBIOSName + "\OWA (Exchange Back End)";
    new-OwaVirtualDirectory -Role Mailbox -WebSiteName "Exchange Back End" -DomainController $RoleDomainController
    set-OwaVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
    " was run: "An error occurred while creating the IIS virtual directory 'IIS://MONAMBX2.mona.local/W3SVC/2/ROOT/o
    wa' on 'MONAMBX2'.".
    The following error was generated when "$error.Clear();
    $BEVdirIdentity = $RoleNetBIOSName + "\OWA (Exchange Back End)";
    new-OwaVirtualDirectory -Role Mailbox -WebSiteName "Exchange Back End" -DomainController $RoleDomainController
    set-OwaVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
    " was run: "The operation couldn't be performed because object 'MONAMBX2\OWA (Exchange Back End)' couldn't be fo
    und on 'MonaDc1.mona.local'.".
    Any advice please !!

    I can't answer your question but I had a similar issue when I was trying to move our mailbox database off the C: drive.  Our environment still has an Exchange 2007 server in it and when I was trying to move the database on the 2013 server, I would get
    error messages saying the database does not exist.  It seemed like it was trying to move the database on the 2007 server from the similar error messages that I was getting.  To get around it, I deleted the database and created a new one on the drive
    where we wanted it.
    I discovered this when I was configuring the Antispam settings.  I deleted our 2007 settings, added them to the 2013 shell, the settings appeared on our 2007 server.  The shell on 2013 was making changes to 2007.
    I'm not sure if there is a "Get|Set or New" command that I/we should be using when this happens.  Or maybe my issues will be fixed if I just remove the Exchange 2007 server?  I'm not ready to do that yet because I can't configure the spam filtering
    on 2013 yet with its shell not being able to make the changes that we need.
    I don't know if your environment is in coexistence mode like mine.
    Hopefully someone else out there has an answer or can tell us when/how the shell can make the appropriate changes to the 2013 server.  Does this happen after the 2007 server is removed?

Maybe you are looking for

  • Print report directly from URL

    i have SSRS report where i have prompt to enter to get data. once the data is populated i would like to print directly from the print option rather saving to pdf and print. My page settings format is setup to 9X11 size. with this i can save and print

  • Can an external disk be configured as "no execute?"

    ---> How can I configure OS X so that it does not attempt to execute the applications on my auxilliary backup disk? <----- I would like to be able to configure the backup disk so that when it is mounted it is available for backups and browsing, yet w

  • Wireless Woes

    Many months back I got a Netgear WGR614 V6 wireless router. For a while it did the job but I noticed as soon as I left the room with the router in, the signal would degrade. By the time I got to the garden area (2 rooms away) and signal was dead. Aft

  • Save or Remember a PerformancePoint page in its current state?

    Hi Experts, Is there any way to allow users to save a dashboard page? My client not only wants to have their last filter selections be remembered, but also any modifications that were made to the analytic charts or grids as well. When the user re-ope

  • PUBLISH ERROR!! "widget2_markup.html." ---what does this mean?!

    so for a coupe f days i have been trying to publish my website but every time i try this annoying thing comes up and i don't know how to get rid of it!!! PLEASE PLEASE help me!!!!