The sun-appserv-admin task doesn't support

Help! - this is driving me nuts! I am trying to build the bookstore example and get this error on asant steps that involve the admin-command-common target (such as "asant deploy-war").
I am running Studio Creator with SunAppServer8 under it. The command looks right. If I remove the passwordfile line from the admin-command-common target, I get the same error on another attribute in the command.
The password file exists where it should and contains valid information, including the correct password.
I have run this same bookstore example build on another workstation and it worked, but on that box, there was an instance of SunAppserver 7 (not under Studio Creator). That build was successful so I assume this is a configuration issue, but I don't know what it is. I am attaching the error and the listprops. If anyone knows what is wrong I sure would appreciate your help
Thanks!
Robert Hill
C:\j2eetutorial14\examples\web\bookstore1>asant deploy-war
Buildfile: build.xml
deploy-war:
admin_command_common:
[echo] Doing admin task deploy bookstore1.war
BUILD FAILED
file:C:/j2eetutorial14/examples/common/targets.xml:36: The <sun-appserv-admin> t
ask doesn't support the "passwordfile" attribute.
Total time: 1 second
C:\j2eetutorial14\examples\web\bookstore1>
C:\j2eetutorial14\examples\web\bookstore>asant listprops
Buildfile: build.xml
listprops:
[echo] Path information
[echo] j2ee.home = C:/Sun/Creator/SunAppServer8
[echo] j2ee.tutorial.home = C:/j2eetutorial14
[echo] j2ee.home = C:/Sun/Creator/SunAppServer8
[echo] env.Path = .;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Common Fil
es\Adaptec Shared\System;c:\Program Files\Microsoft SQL Server\90\Tools\Binn\;c:
\j2sdk1.4.2_06\bin;C:\Sun\Creator\SunAppServer8\bin;C:\j2sdk1.4.2_06
[echo] env.PATH = ${env.PATH}
[echo] Classpath information
[echo] classpath = C:\j2sdk1.4.2_06
[echo] Admin information
[echo] admin.password =
[echo] admin.password.file = C:/j2eetutorial14/examples/common/admin-passwo
rd.txt
[echo] admin.host = localhost
[echo] admin.user = admin
[echo] admin.port = 14848
[echo] https.port = 18181
[echo] Domain information
[echo] domain.resources = "domain.resources"
[echo] domain.resources.port = 18080
[echo] Database information
[echo] db.root = C:/Sun/Creator/SunAppServer8/pointbase
[echo] db.driver = com.pointbase.jdbc.jdbcUniversalDriver
[echo] db.host = localhost
[echo] db.port = 19092
[echo] db.sid = sun-appserv-samples
[echo] db.url = jdbc:pointbase:server://localhost:19092/sun-appserv-samples
[echo] db.user = pbpublic
[echo] db.pwd = pbpublic
[echo] url.prop = DatabaseName
[echo] ds.class = com.pointbase.jdbc.jdbcDataSource
[echo] db.jvmargs = -ms16m -mx32m
BUILD SUCCESSFUL
Total time: 1 second
C:\j2eetutorial14\examples\web\bookstore>
clipped from targets.xml
<target name="admin_command_common">
<echo message="Doing admin task ${admin.command}"/>
<sun-appserv-admin
command="${admin.command}"
user="${admin.user}"
passwordfile="${admin.password.file}"
host="${admin.host}"
port="${admin.port}"
asinstalldir="${j2ee.home}" />
</target>

Dude!
Try this.
change that target I was talkin about to
<target name="admin_command_common">
     <property file="${j2ee.home}/j2eetutorial14/examples/common/admin-password.txt"/>
<echo message="Doing admin task ${admin.command} with password"/>
<sun-appserv-admin
command="${admin.command}"
user="${admin.user}"
password="${AS_ADMIN_PASSWORD}"
host="${admin.host}"
port="${admin.port}"
/>
</target>
Reason?
well, the blinkin 'asinstalldir' attrib is ... optional!
The build succeeds and deploys the war.
C:\java\Sun\Appserver\j2eetutorial14\examples\web\bookstore1>asant deploy-war
Buildfile: build.xml
deploy-war:
admin_command_common:
[echo] Doing admin task deploy bookstore1.war with password
[sun-appserv-admin] Executing: deploy port 4848 host localhost --password ad
min123 --user admin bookstore1.war
[sun-appserv-admin] Command deploy executed successfully.
BUILD SUCCESSFUL
Total time: 7 seconds

Similar Messages

  • Wlwbuild task doesn't support jrockit

    In an attempt to speed up our build, we have tried out using the JRockit JVM for
    ant. However, we were foiled by the wlwbuild task - it insists on invoking java
    with the argument -XX:-UseThreadPriorities, which is not supported by JRockit.
    We get:
    [wlwBuild] Unknown option or illegal argument: -XX:-UseThreadPriorities.
    [wlwBuild] Could not create the Java virtual machine.
    [wlwBuild] Please check for incorrect spelling or review documentation of start
    up options.
    BUILD FAILED
    file:C:/pfa_portal/src/PortalApplication/wlwbuild.xml:80: Java returned: 1
    at org.apache.tools.ant.taskdefs.Java.execute()V(Java.java:110)
    at workshop.core.WlwBuildTask.execute()V(WlwBuildTask.java:141)
    at org.apache.tools.ant.Task.perform()V(Task.java:341)
    at org.apache.tools.ant.Target.execute()V(Target.java:309)
    at org.apache.tools.ant.Target.performTasks()V(Target.java:336)
    at org.apache.tools.ant.Project.executeTarget(Ljava.lang.String;)V(Proje
    ct.java:1339)
    at org.apache.tools.ant.Project.executeTargets(Ljava.util.Vector;)V(Proj
    ect.java:1255)
    at org.apache.tools.ant.Main.runBuild(Ljava.lang.ClassLoader;)V(Main.jav
    a:609)
    at org.apache.tools.ant.Main.start([Ljava.lang.String;Ljava.util.Propert
    ies;Ljava.lang.ClassLoader;)V(Main.java:196)
    at org.apache.tools.ant.Main.main([Ljava.lang.String;)V(Main.java:235)
    Any suggestions would be most welcome. Should we try to override the ant java
    task to ignore the option? Or is there a simpler fix?

    Dude!
    Try this.
    change that target I was talkin about to
    <target name="admin_command_common">
         <property file="${j2ee.home}/j2eetutorial14/examples/common/admin-password.txt"/>
    <echo message="Doing admin task ${admin.command} with password"/>
    <sun-appserv-admin
    command="${admin.command}"
    user="${admin.user}"
    password="${AS_ADMIN_PASSWORD}"
    host="${admin.host}"
    port="${admin.port}"
    />
    </target>
    Reason?
    well, the blinkin 'asinstalldir' attrib is ... optional!
    The build succeeds and deploys the war.
    C:\java\Sun\Appserver\j2eetutorial14\examples\web\bookstore1>asant deploy-war
    Buildfile: build.xml
    deploy-war:
    admin_command_common:
    [echo] Doing admin task deploy bookstore1.war with password
    [sun-appserv-admin] Executing: deploy port 4848 host localhost --password ad
    min123 --user admin bookstore1.war
    [sun-appserv-admin] Command deploy executed successfully.
    BUILD SUCCESSFUL
    Total time: 7 seconds

  • Sun-appserv-deploy task fails

    Hi There,
    I am trying to deploy an EJB module into the Sun Application Server 8 using ANT scripts.
    The given below is the script, I use.
    <taskdef name="sun-appserv-deploy"
    classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.DeployTask">
    <classpath>
    <pathelement location="${appSerLib}/sun-appserv-ant.jar"/>
    </classpath>
    </taskdef>
    <target name="doDeploy">
    <sun-appserv-deploy file="${destDir}/${ejbJarName}" name="SampleEjb"
    force="true" type="ejb" verify="false" user="admin" password="#infy123"
    host="localhost" port="4848" generatermistubs="true" asinstalldir="${appServer}"/>
    </target>
    The build fails throwing the below error
    A Sun Java System Application Server 8 admin CLI class could not be found (com.sun.enterprise.cli.framework.InputsAndOutputs). Use the asinstalldir attribute, set the asinstall.dir property, or add the appropriate JARs to the classpath.
    See the script I have mentioned the asinstalldir attribute in the sun-appserv-deploy.
    Need help to resolve it.
    ..Thiruppathy.R

    Use the 'asant' command to run your script rather than 'ant'. This will set up the required environment variables to allow the task to execute.
    Cheers
    Spencer

  • The latest iPhone 4 update doesn't support bluetooth on my Mac with Lion

    The latest iPhone4 update doesn't support bluetooth on on my mac pro using Lion OSX 10.7.  Iphone will not recognize my connection and will not connect.

    Make sure you run indeed 10.7.2. If in doubt use  -> Software Update.
    Sign out of Mobile Me, move your MM account to iCloud, by visiting http://me.com/migrate .
    After that, launch the icloud system preference panel, in  -> System Settings and log in.

  • Always i have the same problem with MPG2. doesn't support

    anybody fixed this problem or I must change the serial numbers always again and again, and re-install ADOBE and the same problem came back after worked two or three weeks.

    sorry i confused , i mean encoder not encore. > ( some friends said you must update your Encore ).
    and i updated this encoder to the latest version as u see in this Pic
    and finally i lost MPEG 2,
    thank U for help.
    is it necessary to re-install all or wait till Adobe Fix this problem ?
    i think many people have the same problem . what is wrong with this MPEG 2 ?
    and why this format doesn't come with installing Adobe straightly ?
    thank you again...

  • I have a used Mac OSX 10.4.11 in good condition, but I have several concerns. The internet is slow, and doesn't support Google Chrome.  Also, when I create excel and word documents, people aren't able to open them on other computers.

    Is there a way to upgrade my Mac software without paying a fortune? My main concern is Word and Excel - I need people to be able to open these files as attachments for work purposes.  Thanks!

    The Snow Leopard 10.6 DVD should still be available at this time from Apple for $19.99. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775 to purchase it. It may still be in the Legacy Products list. The App Store which is required to download 10.7 Lion is part of the 10.6.6 update.
    If you wait to long and they no longer have any in stock you will have to buy it from eBay or Apple resellers that still have stock. But you will have to pay a premium since the DVDs are no longer being made. Snow Leopard DVDs are already over $100 on Amazon.
    http://www.ebay.com/sch/i.html?_nkw=10.6+snow+leopard&_sacat=0&_odkw=mac+os+10.6 &_osacat=0
    You can upgrade from 10.4 straight to 10.6 with no problems. Any program that runs under 10.4 should run under10.6. See this list for compatibility with 10.6: http://snowleopard.wikidot.com/  You might have to upgrade some drivers for printers, etc....
    And you will have to install Rosetta if you have any Power PC applications http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/   I recently upgraded an older MacBook (model 1,1) straight from 10.4 to 10.6.

  • Eclipse: Ant: sun-appserv-deploy, not working, help please.

    Hello,
    Trying to use Eclipse: Ant to deploy using the build.xml to localhost. I have the following target in my Ant build.xml file, but it's not picking up the <sun-appserv-deploy> tag.
    I have the following file is the Ant classpath:
    C:\Sun\studio5u1_se\appserver7\lib\ant\lib\jakarta-ant-1.4.1-optional.jar.
    I'm not asking for Eclipse configuration or Ant help, but what .jar file(s) do I need and where do they have to be for Ant to recognize the <sun-appserv-deploy> tag?

    The sun-appserv-deploy tasks are defined in the sun-appserv-ant.jar (which I think is in C:\Sun\studio5u1_se\appserver7\lib on your machine).
    Check the ant documentation for instructions on integrating tasks into your environment.
    vbk

  • How to get the Admin Task to Process Members from Member Sheet?

    Hey guys!
    I've been successful getting the Custom SSIS Admin Task to process a Dimension using a SQL staging table.  However, we have a few dimensions that are best managed in the Excel Member sheets.  When we have changes to these member sheets, is it possible to process the dimension using the SSIS Admin Task.  If so, how do I go about doing this?  What settings do I need to use within the task?
    I've tried using the "Scheduled Members Process" option (I honestly don't even know what this option does and I've found no documentation), but when this option is selected the task simply fails without any messages.  And I've tried putting the path directly to the Member Spreadsheet in the "SQL Source Table" box.  Using this method, the package returns a successful status code, but it's not really processing anyway.  It finishes in less than 2 seconds. 
    Thanks much!
    Sean

    I don't understand why you want to do this -- if you're maintaining some dimensions manually in the XLS member sheet, then you should process the changes manually too, using the Admin Console. No DTS is required, and you also get the benefits of validation & error messages right away.
    Having said that, if you feel it's necessary, you could set up a DTS package which uses the XLS member sheet, via an Excel connection manager, as a data source which is loaded into your custom dimension staging table. Then this staging table is the source of the admin dimension processing task.
    Beware, though, that this means every time you add or modify dimension properties, you will need to update the columns in both the Excel connection manager and the staging table. I've always found this to be a very frustratingly manual process in BI Dev Studio, to get the data fields to properly refresh. I usually end up deleting the source & destination data flow objects, just to get the new fields to show up. (Maybe there's a better way, but I haven't found it.)
    I always consider the dimension-processing decision on automation to be all or nothing for each dimension. If you're maintaining the dimension manually in the member sheet, use the admin console to process it.

  • AIA CRMOD Build error - antfetch doesn't support the "antfile" attribute

    Hi.
    I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
    antfetch doesn't support the "antfile" attribute
    The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
    Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
    Thanks.

    I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
    Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

  • CRMOD PIP Build Error - antfetch doesn't support the antfile attribute

    Hi.
    I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
    antfetch doesn't support the "antfile" attribute
    The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
    Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
    Thanks.

    I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
    Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

  • Using sun-appserv-deploy without asant

    Hello,
    I want to use the sun-appserv-deploy ant task without having to use asant.
    I've got the following taskdefs:
      <taskdef name="sun-appserv-deploy"
               classpathref="sunone.classpath"
               classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.DeployTask"
      />
      <taskdef name="sun-appserv-undeploy"
               classpathref="sunone.classpath"
               classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.UndeployTask"
      />
      <taskdef name="sun-appserv-admin"
               classpathref="sunone.classpath"
               classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.AdminTask"
      />Running the following target with these I get the following error:
    target:<target name="sunone-deploy">
        <sun-appserv-deploy
          precompilejsp="${sunone.precompilejsp}"
          verify="${sunone.verify}"
          upload="${sunone.upload}"
          force="${sunone.force}">
            <server
              host="${sunone.host}"
              port="${sunone.port}"
              user="${sunone.user}"
              password="${sunone.password}"
              instance="${sunone.instance}"
            />
          <component file="${component.file}"/>
        </sun-appserv-deploy>
      </target>error:build.xml:34: A Sun Java System Application Server 8 admin CLI class could not be found (com.s
    un.enterprise.cli.framework.InputsAndOutputs).  Use the asinstalldir attribute, set the asinstall.dir property, or add t
    he appropriate JARs to the classpath.So I've added the asinstalldir property to to the script as follows but I still get the error.
    <sun-appserv-deploy
          precompilejsp="${sunone.precompilejsp}"
          verify="${sunone.verify}"
          upload="${sunone.upload}"
          force="${sunone.force}"
          asinstalldir="${sunone.home}">

    Why don't you try out the other two suggestions in the error message? Setting the server classpath should work!

  • ClassCastException on Deploy to Sun Appserver 8.1 from Netbeans 4.1

    I am working with an academic group that has chosen to use the Netbeans 4.1/Sun Appserver 8.1 integrated combo. We are running a standard ejb app and a standard web app (java servlets, Struts flavor) that talks to the ejb app.
    But the Sun Appserver is incredibly unstable with regard to the web container. If the problem is really Sun's, I can't believe
    that they released something such as this. We get a ClassCastException related to jsp configuration everytime we
    'deploy' from Netbeans to the web container.
    And sometimes, the ejb container seems to just "disappear" from our runtime execution. In this situation, the web container gets no data from the ejb container, so that the form fields in the result html show up empty. Could the ClassCastException at deployment time be the problem? If not, what can we do to stabilize our deployment?
    I've posted the error with system info below. Any help or ideas would be much appreciated. Thank you in advance!
    [ o/s: Windows XP sp2 ]
    [ jdk: 1.4.02 ]
    [ Sun Appserver 8.1 ]
    [ Netbeans 4.1 with 'deploy' command running ]
    [ Netbeans deploying a standard ejb app and a standard web app, Struts
    1.2 flavor ]
    [ Error message: ]
    Redeploying
    C:\CMU\AdvancedProject\Develop�ment\se-2004-spring-pt-advance�d-team2\PETv3_Struts\dist\PETv�3_Struts.war
    java.lang.ClassCastException
    at
    org.netbeans.modules.j2ee.sun.�dd.impl.web.model_2_4_1.SunWeb�App.setJspConfig(SunWebApp.jav�a:850)
    at
    org.netbeans.modules.j2ee.sun.�dd.impl.web.SunWebAppProxy.set�JspConfig(SunWebAppProxy.java:�342)
    at
    org.netbeans.modules.j2ee.sun.�share.configBean.WebAppRoot$1.�getDDSnippet(WebAppRoot.java:3�01)
    at
    org.netbeans.modules.j2ee.sun.�share.configBean.Base.addToGra�phs(Base.java:625)
    at
    org.netbeans.modules.j2ee.sun.�share.configBean.SunONEDeploym�entConfiguration.saveDConfigBe�an(SunONEDeploymentConfigurati�on.java:349)
    at
    org.netbeans.modules.j2ee.sun.�share.configBean.SunONEDeploym�entConfiguration.save(SunONEDe�ploymentConfiguration.java:317�)
    at
    org.netbeans.modules.j2ee.depl�oyment.config.ConfigSupportImp�l.getDeploymentPlanFileForDist�ribution(ConfigSupportImpl.jav�a:248)
    at
    org.netbeans.modules.j2ee.depl�oyment.config.ConfigSupportImp�l.getConfigurationFile(ConfigS�upportImpl.java:224)
    at
    org.netbeans.modules.j2ee.depl�oyment.impl.projects.Deploymen�tTargetImpl.getConfigurationFi�le(DeploymentTargetImpl.java:1�80)
    at
    org.netbeans.modules.j2ee.depl�oyment.impl.TargetServer.deplo�y(TargetServer.java:615)
    at
    org.netbeans.modules.j2ee.depl�oyment.devmodules.api.Deployme�nt.deploy(Deployment.java:129)
    at org.netbeans.modules.j2ee.ant.�Deploy.execute(Deploy.java:62)
    at org.apache.tools.ant.UnknownEl�ement.execute(UnknownElement.j�ava:275)
    at org.apache.tools.ant.Task.perf�orm(Task.java:364)
    at org.apache.tools.ant.Target.ex�ecute(Target.java:341)
    at org.apache.tools.ant.Target.pe�rformTasks(Target.java:369)
    at org.apache.tools.ant.Project.e�xecuteTarget(Project.java:1214�)
    at org.apache.tools.ant.Project.e�xecuteTargets(Project.java:106�2)
    at
    org.apache.tools.ant.module.br�idge.impl.BridgeImpl.run(Bridg�eImpl.java:234)
    at
    org.apache.tools.ant.module.ru�n.TargetExecutor.run(TargetExe�cutor.java:242)
    at
    org.netbeans.core.execution.Ru�nClassThread.run(RunClassThrea�d.java:125)
    Start registering the project's server resources
    Finished registering server resources

    Thanks for your post!
    I have been meaning to reply to this for so long that I have forgotten the exact details of how we fixed this. However, the issue with the ejb container 'disappearing' at random times during application operation was resolved by doing something different in the ejb container. As I recall, the ejb code that we had when the problem existed should not have caused this kind of problem, but we found a work-around.
    The 'ClassCastException' on deploy was apparently due to a problem with the portability of Netbeans Java code. Space characters in file paths appear to have caused this problem.

  • Solaris 8 looks doesn't  support APIC for multi-PCI BUS system

    I am Phoenxi BIOS Egnieer
    We are testing with Brkdale System(ICH2)
    This chipset use PCI0/PCI1/PCI2 for PCI device
    With APIC enabled Solaris OS doesn't get the _PRT method on ASL PCI1/2
    So PCI slot Network Card Doesn't work on APIC envinment
    How Solaris supprt ACPI/APIC envernment
    Solaris copy and modify the intel ACPI CA ?
    Doesn any issue internally?
    Thnanks

    As far as i know the wl (proprietary broadcom driver) doesn't support monitor/injection.
    But the Mac80211 alternatives might. If they support the wifi chip in your MacBook.
    From experience with a friends MBP it didn't yet support his broadcom so had to use WL to get basic network connectivity and used an Dual-band(2.4Ghz/5Ghz) 2x2 11n/ac USB dongle for his monitor/injection needs.

  • Airport utility doesn't support my airport express

    I just noticed my Airport Express isn't showing up in the Airport Utility, i mean, it shows up but there's no light on, not green or orange, just no light at all. When i click on the icon in the Airport Utility, it says this version of Airport Utility (v.3.6.1) doesn't support this base station.  The Airport Express is quite old, i've had it for many years, not sure how long, probably first or second generation. It says it's model A1084, 2005.
    The Airport Express has always worked fine with my previous computer, MacBook, currently OS 10.6.8, and with my new computer MBP OS 10.8.5. I used it with AirTunes to play music through external speakers on the old computer.  With the new OS, it was using Air Play. The old Airport Express worked fine.  I got the new computer in November.  I was using a very old Airport Extreme as the router.  In late December, i got a new Time Capsule.  Software update was run and after the Time Capsule was installed, the Airport Express still played music. The green light lit up in Airport Utility.  I played music through the external speakers as recently as a couple of weeks ago, both in iTunes and on You Tube.
    I don't know why music is not playing through the external speakers now. The device shows up in Airport Utility but it appears dead and i get that message saying the the version of Airport Utility doesn't support the base station.  The green light is on, on the Airport Express. i have not updated the Airport Utility since late December when the Time Capsulre was installed. 
    The only thing that has happened recently, though i don't know why it would make any difference, is that a few days ago for the first time, i did a backup of my hard drive to the Time Capsule, using Time Machine. I had not done this before since i got the Time Capsule, it was the first time. Other than that, i haven't installed any new software and haven't done anything differently that i know of, although a few days ago, i clicked OK on a box in You Tube and my You Tube account now no longer has any of my favorites or playlists. It's the same account as far as i can tell, i didn't log out, it was still logged in when this happened. While that is a disaster, it doesn't seem related to my external speakers not playing all of a sudden.
    Is there anything i can try in order to fix this?  thanks

    The Airport Express is quite old, i've had it for many years, not sure how long, probably first or second generation. It says it's model A1084, 2005.
    This would be an 802.11g AirPort Express base station. There is only one generation of this version.
    When i click on the icon in the Airport Utility, it says this version of Airport Utility (v.3.6.1) doesn't support this base station.
    I'm not aware that Apple produced a v3.6.1. Did you mean v5.6.1 instead? If so this version is meant to administer these older 802.11g AirPorts on Macs running OS X Leopard or Snow Leopard. More precisely for versions 10.5.7 thru 10.6.8 ... so your MacBook should be able to run this version of the AirPort Utility.
    I played music through the external speakers as recently as a couple of weeks ago, both in iTunes and on You Tube.
    If you are streaming from YouTube, then you must be using a third-party solution like Rogue Amoeba's Airfoil. Is this correct?
    The only thing that has happened recently, though i don't know why it would make any difference, is that a few days ago for the first time, i did a backup of my hard drive to the Time Capsule, using Time Machine.
    You're right. That should have not made any difference as far as streaming goes.

  • How to create Seperate Containers in Sun AppServer 8.1 2005Q2?

    Hi !
    We are currently in the middle of a server migration - from Oracle AppServer to the Sun AppServer 8.1. In Oracle it was possible to create seperate containers which had the same i-net address and same port(Called OC4J Instances). These containers were able to start and stop seperatly.(The reason for this is that we have many applications running and if some problems arise we don't need to stop the whole Container/Server)
    I tried different solutions:
    - create a new domain --> Port has to be not the same
    - create an instance --> Port has to be not the same
    - create a virtual server --> domain name has to change
    i also thought about a special config for http listners
    but didn't get to a point jet.
    pls help me -- i'm sure it is possible
    greetings
    maty

    Hi Maty,
    To anwer you questions from previous posting:
    1. Yes you have to deploy all of your apps on all instances known to the loadbalancer. This is becasue all of the request comming to the load balancer can be routed to any of these instances.
    2. To insure that you don't run two different versions of you application in the cluster you can quiese single appserver instance or any given application before update. See following doc for more info.
    http://docs.sun.com/source/819-0216/ha_as_overview.html#wp1046921
    One additional note: To upgrade you application in Sun AS8.1 you don't need to shut it down as it supporst dynamic application deployment. This may be all you need... that is If you don't want any of the High availability features that LB gives you .
    Regards,
    /Oleg

Maybe you are looking for

  • Can't install ipod to mac

    hi i have downloaded the iPod13.smi form here. I install it in the iPod software 1.3 updater. It told me to "plug in an i Pod to upate it" when i plug it the i pod show the do not disconnect, and the button "uptdate" and "restore" are both already se

  • J2ME on cell phones questions

    Hi, I'm in the process of picking a project and wanted to see how doable it is. The project involves a cell phone and a Java program to use Bluetooth. This is real unknown territory for me so my questions are very simple. First does J2ME have package

  • Laser power levels

    everytime I try and burn a playlist in i-tunes i get the error message tht the laser power level could not be calibrated for this media. I have tried many different brands of cd-r disks, verbatim, maxell, tdk... one of the tdk worked on the first dis

  • Azure Sql Reporting Service external Image

    We are working on Sql Azure Reporting Services, we have a situation where we need to display client logo on report. We are passing Image path (URL) as parameter to the report which works fine on normal windows server reporting services, but when we m

  • Whenever i minimize and maximize my Jframe it becomes Blank

    I actually have a Jframe. I am creating a new JFrame above that.When i minimize the Parent Jframe,Both must get minimized. But that is not happening.And when it is maximized the parent jframe becomes Blank Message was edited by: safdsad