help with script - create the jdeveloper build script to build

Hello
I'm being created build script for my portal webcenter application. I use jdeveloper 11.1.1.5.

After reading some content, I am trying to use the simplest approach - it's creating build.xml thru jdeveloper.

I selects the project portal, and then select new > project buildfile. and it creates huge build.xml and build.properties for me.

It is this--

* <? XML version = "1.0" encoding = "windows-1252"? > *.
* <! - ant buildfile generated by Oracle JDeveloper - > *.
* <!-generated on April 30, 2013 12:37:38 - > *.
' * < name of project = 'Portal' default = "all" basedir = ". ' > *.
* < property = "build.properties" file / > *.
* < path id = "library. WebCenter.Content.Templates.Tag.Library"> *.
-----------------------
--------------------------
------------------
* < / path > *.
* < target name = "init" > *.
* < tstamp / > *.
* < mkdir dir = "${output.dir}" / > *.
* < / target > *.
* < target name = "all" description = "building the project."
function = "deploy, compile, copy" / >
* < target name = 'clean' description = 'Clean up the project' > *.
* < remove includeemptydirs = 'true' quiet = "true" > *.
"< * fileset dir =" ${output.dir} ' includes = "* / *" / > *.
* < / remove > *.
* < / target > *.
* < name target = "deploy" description = "Deployer JDeveloper profiles."
function = "init, compile" >
* < taskdef name = "ojdeploy."
ClassName = "Oracle.JDeveloper.deploy.ant.OJDeployAntTask"
URI = "oraclelib:OJDeployAntTask".
*classpath="${Oracle.JDeveloper.Ant.library}"/ > *.
* < xmlns:ora ora: ojdeploy = "oraclelib:OJDeployAntTask."
* Executable = "${Oracle.JDeveloper.ojdeploy.Path}" *.
*Ora:buildscript="${Oracle.JDeveloper.deploy.dir}/ojdeploy-build.xml"*
* ora:statuslog="${oracle.jdeveloper.deploy.dir}/ojdeploy-statuslog.xml" > *.
* < ora: deploy > *.
* < name of ora: parameter = "workspace."
*value="${Oracle.JDeveloper.workspace.path}"/ > *.
* < name of ora: parameter = "project."
*value="${Oracle.JDeveloper.project.name}"/ > *.
* < name of ora: parameter = "profile."
*value="${Oracle.JDeveloper.deploy.profile.name}"/ > *.
* < name of ora: parameter = "nocompile" value = "true" / >. *
* < name of ora: parameter = "outputfile."
*value="${Oracle.JDeveloper.deploy.outputfile}"/ > *.
* < / ora: deploy > *.
* < / ora: ojdeploy > *.
* < / target > *.
* < name target = "compile" description = "Java compile source files" depends = "init" > *.
* < javac destdir = "${output.dir}" classpathref = "classpath" * "
* debug = "${javac.debug}" nowarn = "${javac.nowarn}" * "
* deprecation = "${javac.deprecation} ' encoding ="Cp1252"source ="1.6"*"
* target = '1.6' > *.
* < path src = "src" / > *.
* < / javac > *.
* < / target > *.
* < target name = "copy" description = "copy files to the output directory."
* depends on = "init" > *.
* < patternset id = "copy.patterns" > *.
* < include name="**/*.gif"/ > *.
* < include name="**/*.jpg"/ > *.
* < include name="**/*.jpeg"/ > *.
* < include name="**/*.png"/ > *.
* < include name="**/*.properties"/ > *.
* < include name="**/*.xml"/ > *.
* < include name="**/*.ejx"/ > *.
* < include name="**/*.xcfg"/ > *.
* < include name="**/*.cpx"/ > *.
* < include name="**/*.dcx"/ > *.
* < include name="**/*.sva"/ > *.
* < include name="**/*.wsdl"/ > *.
* < include name="**/*.ini"/ > *.
* < include name="**/*.tld"/ > *.
* < include name="**/*.tag"/ > *.
* < include name="**/*.xlf"/ > *.
* < include name="**/*.xsl"/ > *.
* < include name="**/*.xsd"/ > *.
* < / patternset > *.
* < copy todir = "${output.dir}" > *.
* < fileset dir 'src' = > *.
* < patternset refid = "copy.patterns" / >. *
* < / fileset > *.
* < / copy > *.
* < / target > *.
* < / project > *.


now when I run that build.xml file, here is my output:

* Buildfile: C:\JDeveloper\mywork\buildTest\Portal\build.xml*

* init: *.

* compile: *.

* deploy: *.
* [ora: ojdeploy]-file build-*.
* [ora: ojdeploy] <? XML version = "1.0" standalone = 'Yes'? ". > *.
* [ora: ojdeploy] < ojdeploy-construction > *.
* [ora: ojdeploy] < deployment > *.
* [ora: ojdeploy] < name of the parameter = "workspace" value="C:\JDeveloper\mywork\buildTest\buildTest.jws"/ > *.
* [ora: ojdeploy] < the name of the parameter = value 'project' = 'Portal' / > *.
* [ora: ojdeploy] < name of the parameter = value "profile" = "*" / > *.
* [ora: ojdeploy] < the name of the parameter = "nocompile" value = "true" / >. *
* [ora: ojdeploy] < name of the parameter = "outputfile" value="C:\JDeveloper\mywork\buildTest\Portal\deploy\${profile.name}"/ > *.
* [ora: ojdeploy] < / deploy > *.
* [ora: ojdeploy] < default > *.
* [ora: ojdeploy] < name of the parameter "buildfile' value="/C:/JDeveloper/mywork/buildTest/Portal/deploy/ojdeploy-build.xml"/ = > *.
* [ora: ojdeploy] < name of the parameter 'statuslogfile' value="C:\JDeveloper\mywork\buildTest\Portal\deploy/ojdeploy-statuslog.xml"/ = > *.
* [ora: ojdeploy] < / defaults > *.
* [ora: ojdeploy] < / ojdeploy-construction > *.
* [ora: ojdeploy]-*.
* [ora: ojdeploy] 30 April 2013 15:48:06 oracle.bali.xml.gui.jdev.JDevXmlContext _setProjectAndAttachDetach *.
* [ora: ojdeploy] INFO: open defense in the Portal.jpr project in the creation of XmlContext (web.xml) *.
* [ora: ojdeploy] 30 April 2013 15:48:06 oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger willPrepare *.
* [ora: ojdeploy] INFO:-deployment began. ----*
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:06 oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger printTargetPlatform *.
* [ora: ojdeploy] INFO: target platform is (Weblogic 10.3). *
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:07 oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger willPrepare *.
* [ora: ojdeploy] INFO:-deployment began. ----*
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:07 oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger printTargetPlatform *.
* [ora: ojdeploy] INFO: target platform is (Weblogic 10.3). *
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:07 oracle.jdevimpl.deploy.common.ProfileDependencyAnalyzer deployImpl *.
* [ora: ojdeploy] INFO: runs the analysis of dependence... *.
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:08 oracle.jdevimpl.deploy.common.ModulePackagerImpl deployProfiles *.
* [ora: ojdeploy] INFO: deployment of 3 profiles... *.
* [ora: ojdeploy] *.
* [ora: ojdeploy] 30 April 2013 15:48:15 oracle.adfdtinternal.model.portlet.mds.PortletMarPlugin exportPortletMds *.
* [ora: ojdeploy] INFO: perform a complete export of the producers to: [C:\JDeveloper\mywork\buildTest\.mdsExport].*
* [ora: ojdeploy] 30 April 2013 15:48:15 oracle.adfdtinternal.model.portlet.mds.PortletMarPlugin exportPortletMds *.
* [ora: ojdeploy] INFO: export of portlet metadata and customizations.*
* [ora: ojdeploy] *.
* [oracle.mds* ora: ojdeploy] 30 April 2013 15:48:16
* [ora: ojdeploy] NOTIFICATION: the export operation started.*
* [oracle.mds* ora: ojdeploy] 30 April 2013 15:48:16
* [ora: ojdeploy] NOTIFICATION: export is complete. Total number of documents successfully processed: 0, total number of documents failed: 0.*
* [oracle.mds* ora: ojdeploy] 30 April 2013 15:48:39
* [ora: ojdeploy] NOTIFICATION: the export operation started.*
* [oracle.mds* ora: ojdeploy] 30 April 2013 15:48:39
* [ora: ojdeploy] NOTIFICATION: export is complete. Total number of documents successfully treated: 23, total number of documents failed: 0.*
* [ora: ojdeploy] 30 April 2013 15:48:39 oracle.mds.internal.dt.packaging.MDSMarDeployer logFileWritten *.
* [ora: ojdeploy] INFO: written MAR file to file:/C:/JDeveloper/mywork/buildTest/deploy/AutoGeneratedMar.mar*
* [ora: ojdeploy] 30 April 2013 15:48:52 oracle.mds.internal.dt.packaging.WarPackagingListener prepared *.
* [ora: ojdeploy] WARNING: WARNING: integration of view ADF with MDS not configured to 'Portal.jpr', JSPX, JSFF files or their customizations to MAR will be ignored when running. Enable setting customizations seeded under the view of the ADF option in the project properties to configure even MDS
* [ora: ojdeploy] 30 April 2013 15:49:03 oracle.jdevimpl.deploy.war.WarDeployer writeWarFile *.
* [ora: ojdeploy] INFO: Application Module Web wrote to file:/C:/JDeveloper/mywork/buildTest/Portal/deploy/buildTest_webapp1.war*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace ' / oracle/adf/share/prefs is mapped to deploy metadata-store-use 'WebCenterFileMetadataStore' target in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/cycle of life/importexport" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/lock" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/rc ' is mapped to deploy target the metadata store use"WebCenterFileMetadataStore"in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace ' / persdef' maps to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace ' / shared/oracle/wcps ' is mapped to deploy metadata-store-use 'WebCenterFileMetadataStore' target in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace ' / ' xliffBundles is mapped to deploy metadata-store-use 'WebCenterFileMetadataStore' target in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/research/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/framework/scope/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/page/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace ' / ' pageDefs is mapped to deploy metadata-store-use 'WebCenterFileMetadataStore' target in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/adf/portlet" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/adf/portletappscope" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/doclib/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/security/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/siteresources/shared" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:24 oracle.mds.internal.dt.packaging.EarPackagingListener generateConfigForMAR *.
* [ora: ojdeploy] INFO: Info: Namespace "/ oracle/webcenter/quicklinks/scopedMD" is mapped to deploy target the metadata store use "WebCenterFileMetadataStore" in the ADF - config.xml but no namespace metadata is included in the MAR.*
* [ora: ojdeploy] 30 April 2013 15:49:30 oracle.jdevimpl.deploy.ear.ApplicationAssembler logFileWritten *.
* [ora: ojdeploy] INFO: Application Module Enterprise wrote to file:/C:/JDeveloper/mywork/buildTest/deploy/buildTest_webapp1.ear*
* [completed oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger ora: ojdeploy] 30 April 2013 15:49:30 *.
* [ora: ojdeploy] INFO: time for deployment: 1 minute, 23 seconds *.
* [ora: ojdeploy] *.
* [completed oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger ora: ojdeploy] 30 April 2013 15:49:30 *.
* [ora: ojdeploy] INFO:-deployment is complete. ----*
* [ora: ojdeploy] *.
* [completed oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger ora: ojdeploy] 30 April 2013 15:49:30 *.
* [ora: ojdeploy] INFO: time for deployment: 1 minute, 23 seconds *.
* [ora: ojdeploy] *.
* [completed oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl$ DeployConsoleLogger ora: ojdeploy] 30 April 2013 15:49:30 *.
* [ora: ojdeploy] INFO:-deployment is complete. ----*
* [ora: ojdeploy] *.
* [ora: ojdeploy] summary status written to /C:/JDeveloper/mywork/buildTest/Portal/deploy/ojdeploy-statuslog.xml*

* copy: *.

* all: *.

* SUCCESSFUL BUILD. *
Total time: 12 minutes 1 second *.



However when I check the deployments in the console, I don't see my deployed application.
I see no error as well output.

can anyone suggest where I'm wrong?

Thank you.

Happy that you do your research :-)

Yep, wlst is the best option for a generation automated. Using wlst provides options to configure your MDS application. I should have one of my python deploy scripts somewhere. For this, I'm going to watch tonight.

Tags: Fusion Middleware

Similar Questions

  • How to use the TRUNC function with dates in the expression builder in OBIEE.

    Hello
    How to use the TRUNC function with dates in the expression builder in OBIEE.
    TRUNC (SYSDATE, 'MM') returns 1 July 2010"where sysdate is July 15, 2010 ' in SQL. I need to use the same in the expression builder in the logical layer mdb column.


    Thanks in advance

    Use it instead:
    TIMESTAMPADD (SQL_TSI_DAY, (DAYOFMONTH (CURRENT_DATE) *-1) + 1, CURRENT_DATE)

  • Help with script distributed switches Reporting

    Hello everyone, my name is Sebastian and I have a question for the VMware community.

    I need to know what network card physical and ESX are connected to a distributed switch. I've found that for Virtual Switch: Re: help with vSwitch reporting script. I would do the same thing with DvSwitch.

    Any idea?

    Thank you very much in advance for your help.

    Kind regards

    Sébastien.

    Take a look at 1. Re: get NIC host assigned to a dvSwitch  

  • Help with script Reporting vSwitch

    Hi, looking for a little help to report on the vSwitches.

    The script I've tried to write is shown below, but of course I messed up that it returns only the host names and my column headings.

    Any help really appreciated and pointers where I was wrong.

    Thank you

    Dan

    $vSwitchRep = @)
    $vmhosts = get-VMHost | Name sort
    ForEach ($vmhost to $vmhosts)
    {
    $vSwitchObj = "" | Select the host name, vSwitch, vmnic, TotalPorts, PortsAvailable, MTU
    $vSwitchObj.HostName = $vmhost. Name

    ForEach ($vswitch in $vmhost. VirtualSwitch)
    {
    $vSwitchObj.vSwitch = $vmhost. VirtualSwitch.Name
    $nic = «»
    ForEach ($vmnic in $vmhost. VirtualSwitch.nic)
    {
    $nic += $vmnic
    }
    $vSwitchObj.vmnic = $vmnic
    $vSwitchObj.TotalPorts = $vmhost. VirtualSwitch.NumPorts
    $vSwitchObj.PortsAvailable = $vmhost. VirtualSwitch.NumPortsAvailable
    $vSwitchObj.MTU = $vmhost. VirtualSwitch.Mtu
    $vSwitchRep += $vSwitchObj
    }
    }
    $vSwitchRep

    You're right, it was an error for the vmnic.

    Try this way

    $vSwitchRep = @()
    $vmhosts = Get-VMHost | Sort Nameforeach($vmhost in $vmhosts)
    {
        foreach($vswitch in (Get-VirtualSwitch -VMHost $vmhost))
        {
            $vSwitchObj = "" | Select HostName, vSwitch, vmnic, TotalPorts, PortsAvailable, MTU        $vSwitchObj.HostName = $vmhost.Name
            $vSwitchObj.vSwitch = $vswitch.Name
            $vSwitchObj.vmnic = [string]::Join(',',$vswitch.nic)
            $vSwitchObj.TotalPorts = $vswitch.NumPorts
            $vSwitchObj.PortsAvailable = $vswitch.NumPortsAvailable
            $vSwitchObj.MTU = $vswitch.Mtu
            $vSwitchRep += $vSwitchObj    }
    }
    $vSwitchRep
    
  • Help with script snowfall...

    Someone has a link to a script of snow falling which works in AS3? I wish that one of the good ones with the snow that falls in random patterns. It must be transparent, but so that it will fall on a bottom.

    I found some in regard to heavy snowfall, but apparently his AS2 and apparently AS2 and AS3 work together on as well as a monkey and a soccer ball to mate.

    It seems at least the code could cross between the two, but I don't think.

    Thanks in advance.

    Try the following link: http://www.adobe.com/devnet/flash/quickstart/external_files_as3/

    It's an article entitled 'Work with symbols and the Document class' contains a working example of snowfall in AS3

  • help with authorization of the ADE?

    Hello

    I downloaded ON my PC and I need to allow it. Now, my computer asks me if I want to replace the AdobeID by the new. I get confused, because OF is not yet on my computer, but I don't allow my ereader with my AdobeID.

    The question is, if the email address remains the same, but password changes, I will always be able to read the books I already have on the ereader? I bought via the ereader, whereas they were not on my computer before.

    When asking you TO 'replace' means replace the anonymous account which is currently my pc or can I replace what I had before on the ereader as well? Because if I have to replace the AdobeID on my ereader as well, then I won't be able to read ebooks that I put on the ereader.

    Thanks in advance!

    Kind regards

    Denise

    Many people seems to think that the use of Digital Editions with an ereader is

    'plug and play '.  It is not because there is a good amount of technology

    lurking in the background.  No offense, Denise, but I should put a

    view around the answers to your questions.

    EPublications are consistent with the Digital Millennium Copyright Act of 2000 (DMCA

    for short), which sets out the way they are managed.  There are

    restrictions on copying and printing of ebooks and these restrictions may be

    fixed by the authors, distributors and publishers using digital rights management

    (DRM).  At the same time, as Digital Editions library management systems

    need to build these restrictions to their programs.  In addition, ereader

    manufacturers can choose some options to integrate into their equipment.

    Some ereaders can be used without their registration with the manufacturer.

    But their capacities are limited.  Some, like the Kindle and

    iPads/iPods/iPhones, are related to a certain ebookseller (Amazon or Apple).

    All PC library management systems can access ebook sources without being

    recorded.  However, as you have discovered, some will impose limits

    on you if you do not save.

    ADE - registered or not - creates a small file of ID for each ebook and that

    contains information about the user.  So, you are right in saying that, if

    you use a different ID, you won't be able to read ebooks that you

    downloaded with (or without) a different ID.

    Your ereader also contains information on registration - if you are registered

    then the ID you used is embedded in its file ID and is associated

    with all of the ebooks that are downloaded/copied on it.

    All that being said:

    ADE is flexible enough, you've discovered.  You can allow it with a

    ID and then change it when you want.  However, because of the DMCA, it won't

    allow you to read electronic books other than those to this ID.  One solution is

    the other is to set up an Adobe ID which is independent of your email

    address (you can do even if the suggested format is an e-mail

    address) and use it.  If you change your email, you do not assign your

    eBooks.  However, for the moment, whatever ID you use must match

    the one that you used to download the ebooks.

    I can't tell you exactly what to do with your ereader, but the very idea

    apply.  You must register, and using the same ID that you did for ADE

    greatly simplifies things.

    I hope this helps!

    =================

  • problem of traffic flow with tunnel created the network with a tunnel to a VPN concentrator

    Hi, I worked with Cisco and the seller for 2 weeks on this.II am hoping that what we are witnessing will ring a Bell with someone.

    Some basic information:

    I work at a seller who needs from one site to the other tunnel.  There are currently 1 site to another with the seller using a Juniper SSG, which works without incident in my system.  I'm transitioning to routers Cisco 2811 and put in place a new tunnel with the seller for the 2800 uses a different public ip address in my address range.  So my network has 2 tunnels with the provider that uses a Cisco VPN concentrator.  The hosts behind the tunnel use 20x.x.x.x public IP addresses.

    My Cisco router will create a tunnel, but I can't not to hosts on the network of the provider through the Cisco 2811, but I can't get through the tunnel of Juniper.  The seller sees my packages and provider host meets them and sends them to the tunnel.  They never reach the external interface on my Cisco router.

    I'm from the external interface so that my endpoint and the peers are the same IP address.  (note, I tried to do a static NAT and have an address of tunnel and my different host to the same result.)  Cisco has confirmed that I do have 2 addresses different and this configuration was a success with the creation of another successful tunnels toa different network.)

    I tested this configuration on a network of transit area before moving the router to the production network and my Cisco 2811 has managed to create the tunnel and ping the inside host.  Once we moved the router at camp, we can no longer ping on the host behind the seller tunnel.   The seller assured me that the tunnel setting is exactly the same, and he sees his host to send traffic to the tunnel.  The seller seems well versed with the VPN concentrator and manages connections for many customers successfully.

    The seller has a second VPN concentrator on a separate network and I can connect to this VPN concentrator with success of the Cisco 2811 who is having problems with the hub, which has also a tunnel with Gin.

    Here is what we have done so far:

    (1) confirm the config with the help of Cisco 2811.  The tunnel is up.  SH cyrpto ipa wristwatch tunnel upward.
    (2) turn on Nat - T side of the tunnel VPN landscapers
    (3) confirm that the traffic flows properly a tunnel on another network (which would indicate that the Cisco config is ok)
    (4) successfully, tunnel and reach a different configuration hosting
    (5) to confirm all the settings of tunnel with the seller
    (6) the seller confirmed that his side host has no way and that it points to the default gateway
    (7) to rebuild the tunnel from scratch
    8) confirm with our ISP that no way divert traffic elsewhere.  My gateway lSP sees my directly connected external address.
    (9) confirm that the ACL matches with the seller
    (10) I can't get the Juniper because he is in production and in constant use

    Is there a known issue with the help of a VPN concentrator to connect to 2 tunnels on the same 28 network range?

    Options or ideas are welcome.  I had countless sessions with Cisco webex, but do not have access to the hub of the seller.  I can forward suggestions.

    Here's a code

    crypto ISAKMP policy 1
    BA 3des
    md5 hash
    preshared authentication
    Group 2
    !
    crypto ISAKMP policy 2
    BA 3des
    preshared authentication
    Group 2

    Crypto ipsec transform-set mytrans aes - esp esp-sha-hmac

    Crypto-map dynamic dynmap 30
    Set transform-set RIGHT

    ISAKMP crypto key address No.-xauth

    interface FastEthernet0/0
    Description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-FE $ 0/0
    IP 255.255.255.240
    IP access-group 107 to
    IP access-group out 106
    NAT outside IP
    IP virtual-reassembly
    route IP cache flow
    automatic duplex
    automatic speed
    crypto mymap map

    logging of access lists (applied outside to get an idea of what will happen.  No esp traffic happens, he has never hits)

    allowed access list 106 esp host host newspaper
    106 ip access list allow a whole
    allowed access list 107 esp host host Journal
    access-list 107 permit ip host host Journal

    access-list 107 permit ip host host Journal
    107 ip access list allow a whole

    Crypto isa HS her
    IPv4 Crypto ISAKMP Security Association
    status of DST CBC State conn-id slot
      QM_IDLE ASSETS 0 1010

    "Mymap" ipsec-isakmp crypto map 1
    Peer =.
    Extend the 116 IP access list
    access - list 116 permit ip host host (which is a public IP address))
    Current counterpart:
    Life safety association: 4608000 kilobytes / 2800 seconds
    PFS (Y/N): N
    Transform sets = {}
    myTrans,
    }

    OK - so I have messed around the lab for 20 minutes and came up with the below (ip are IP test:-)

    (4) ip nat pool crypto-nat 10.1.1.1 10.1.1.1 prefix length 30 <> it comes to the new address of NAT

    !
    (1) ip nat inside source list 102 interface FastEthernet0/0 overload <> it comes to the interface by default NAT

    !
    IP nat inside source map route overload of crypto-nat of crypto-nat pool <> it is the policy of the NAT function

    !

    (6) access-list 101 permit ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> defines the IP source and destination traffic

    !

    (2) access-list 102 deny ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> does not NAT the normal communication

    (3) access-list 102 deny ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> does not re - NAT NAT

    (1) access-list 102 permit ip 172.16.1.0 0.0.0.255 any <> allows everyone else to use the IP Address of the interface for NAT

    !

    (5) crypto-nat route-map permit 5 <> condition for the specific required NAT
    corresponds to the IP 101 <> game of traffic source and destination IP must be NAT'td

    (7) access list 103 permit ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> crypto acl

    Then, how the works above, when a package with the what IP 172.16.1.0/24 source wants to leave the router to connect to google, say the source will change to IP interface (1).  When 172.16.1.0/24 wants to talk to172.16.2.0/24, it does not get translated (2).  When the remote end traffic equaled the following clause of NAT - the already NAT'td IP will not be affected again (3) when a host 172.16.1.0/24 wants to communicate with 172.16.2.20/24 we need a NAT NAT specific pool is required (4).  We must define a method of specific traffic to apply the NAT with a roadmap (5) which applies only when the specific traffic (6), then simply define the interesting traffic to the VPN to initiate and enable comms (7) corresponding

  • With regard to the JDeveloper 11.1.1.5 to 11.1.1.7 upgrade

    Hi all

    I need help to upgrade my current JDeveloper 11.1.1.5 to 11.1.1.7 using techniques of patching or similar. Is there a reference documentation on which I can do?

    I tried to install 11.1.1.7 on top of existing Middleware/Oracle Directory directly, but he tied me the error.

    On Oracle Site.png

    Is there a way I can upgrade without having to uninstall 11.1.1.5 and remove anything?

    Thank you.

    A new install of JDeveloper must be created. Applications can be migrated but not installation.

    Install JDev 11.1.1.7 in a new directory.

    Upgrade requests 11.1.1.5 to 11.1.1.7.

  • Need help with activation of the CC training plan

    Hey, I made a purchase order for a comprehensive cloud was created for students and teachers two weeks ago.

    1.5 week ago , made the payment but I do not have any new informations and I still can not use any application.

    Track version was released. CC cannont find my subsrciption associated with my Adobe ID

    Last email that I received said I'll be getting another within 24 hours, still no response.

    Order No. AD001694082EDPL

    Support information can not help with this problem.

    Customer support Adobe please help!

    Hi gregnawrat,

    My apologies for the delay in response.

    I just checked your account and found that you have tried to make the payment by Paypal, Paypal however rejected the transaction.

    Please check with them and place a new order, this order is not yet confirmed.

    I hope this helps!

  • Help with ESX inside the workstation

    If I use a processor of AMD Phenom X 6 1090 t. with a motherboard Asus m4n68t-m and 8 GB of RAM. I loaded Windows 2008 R2 with VMware Workstation 7.1 on it. I installed ESX 4.0u2 very well an am trying to install a virtual machine. Every time I have create the virtual computer and power on I just get a black screen and nothing happens. Anyone know what is happening and how I could solve this problem?

    Thank you.

    Hi Eric,.

    Please follow the attached document.  This procedure is a soft to install esx 4.0 successfully on pre-installed.

    If you find this or any other answer useful please consider giving points by checking the CORRECT answer or relatively USEFUL *.

    Jadapa RHCE, MCSA

    http://linuxgurus.WordPress.com

  • Help with fonts on the Web site

    Hi guys,.

    I'm having a little problem with a Web site, the soloution is probably very simple but cant for the life of find out me.

    Welcome to the 1st Winnington Scouts

    Please choose your topic below.

    In my code html above is under the "main" div and css for h1 is calibri fonts and it shows it in dreamweaver. Whenever I use the mode live view, or preview in the browser, or downloaded as it is now the police back to times new roman and color black.

    Below is the link to the site.

    http://winningtonscouts.hostei.com/

    Any help with this would be great

    Solved the problem

    There were some thugs in the stylesheet coding

  • HELP with animation for the buttons (I tried to search for days for solution)

    Hellooo

    I tried to watch the discussions here for a solution, but I can not find... can someone help me please?

    I design a website in flash8... now, I created a few buttons and I want that when I click the button stars will fly on their part and there will be a sound... I have already created the animation of the separately-star and it's in the library, I also sound file... I just don't remember how put everything together... can someone please remind me what to do step by step so When I press the button that the stars will fly directly from the button and the sound will play? pleaseeeeeeeee, it's very very important to me... I'd be grateful < 3

    in your library, double-click your button.  Select the image down, and in the properties panel, select your sound and assign its sync to the event.  then drag your animation to your library on the stage.

  • Need help with auto-fill the fields

    Hello

    I need help with a form that has multiple pages.  I have some areas I are duplicated in my document.  How I got these fields auto fill throughout the form/paper? For example, I'm going to fname lname, address, telephone, etc... How can I get these fields automatically on the other pages of the form?  Is this possible?  Any suggestions are welcome.

    Thank you in advance.

    If it's just a fill operation then make sure the fields have the same name. Then set the binding to the global level and all the fields with the same name will get the same value.

    Paul

  • Help with script from beginner to the data store and hard drives

    Hello

    I am quite new to scripting, and recently, I created a monstrosity below.

    The problem is with the results. I have no idea why in the results I get the name of the virtual machine and its data store over and over again until all disks are highlighted.

    Any help will be very very much appreciated.

    The script:

    $raport = @)

    Foreach ($i in (Get-Content "Y:\vms.txt"))

    {

    $rekord = «»

    $vm = get-vm-name '$i '.

    $dysk1 = $vm | Get-hard drive | where {$_.} Name - eq 'Disk 1'}

    $datastore1 = $dysk1.filename.split("]") [0].split("[") [1]

    $disks = $vm | Get-hard drive

    {foreach ($disk in $disks)

    $hd = «»

    $disksize = ($disk. CapacityGB)

    $hd += $disksize

    {$rekord += $vm.name + ";" + $datastore1 + ";" + $hd}

    $raport += $rekord

    }

    $raport | out-file 'Y:\dyski.csv '.

    The results in csv:

    VM1Name; datastoreName; 60; VM1Name:datastoreName; 50; VM1Name; datastoreName; 40

    VM2Name; datastoreName; 45; VM2Name; datastoreName; 40

    The results of dream in csv:

    VM1Name; datastoreName; 60; 50 40

    VM2Name; datastoreName; 45 40

    etc.

    Try like this

    $raport = @)

    Foreach ($i in (Get-Content "Y:\vms.txt"))

    {

    $rekord = «»

    $vm = get-vm-name '$i '.

    $disk = $vm | Get-hard drive

    $datastore = ($disk | where {$_.}) Name - eq "disk 1" hard}).filename.split ("]") [0].split("[") [1].

    $rekord = "$($vm.)". The name); $($datastore); $(($disk | sélectionnez-ExpandProperty CapacityGB)-join ' |') »

    $raport += $rekord

    }

    $raport | out-file 'Y:\dyski.csv '.

  • Help with script to change the network name.

    Hello

    I made a small script to help me rename the label of network on a portgroup and then correct the label of network on all the virtual machines with this label.

    I came across the problem that it could not update on the virtual machines network label because the portgroup did not exist (this must be because it does not wait for the first order at the end?). I fixed that by doing a line with: "Start-Sleep-seconds 10.

    The script works, but I don't like the solution with 10 sec sleep because it could go wrong if the portgroup takes more than 10 seconds to create (unlikly).

    I tried different things, for example "Wait-task" but without success.

    any ideas?

    $esxi = Read-host "enter the IP address of the host."

    $portgroup_old = Read-host "Enter the name of the portgroup you wish to rename.

    $portgroup_new = Read-host "enter the new name of the portgroup.

    Get-VMHost-name $esxi | Get-VirtualPortGroup-name $portgroup_old | Game-VirtualPortGroup-name $portgroup_new

    Start-Sleep - seconds 10

    Get-VMHost-name $esxi | Get - VM | Get-NetworkAdapter | Where {$_.NetworkName - eq $portgroup_old} | Together-NetworkAdapter - NetworkName $portgroup_new - confirm: $false

    Unfortunately, with groups of standard port vSwitch, that's what you're stuck with.

    You could try a loop 'while' like this instead:

    Get-VMHost-name $esxi | Get-VirtualPortGroup-name $portgroup_old | Game-VirtualPortGroup-name $portgroup_new

    While (Get-VMHost-name $esxi |) Get - VM | Get-NetworkAdapter | Where {$_.NetworkName - eq $portgroup_old})

    {Get-VMHost-name $esxi |} Get - VM | Get-NetworkAdapter | Where {$_.NetworkName - eq $portgroup_old} | {Set-NetworkAdapter - NetworkName $portgroup_new - confirm: $false}

Maybe you are looking for

  • HP ENVY 360: FlexNet Connect continuous error state

    I recently bought a laptop HP ENVY 360 and apparently, there's an application installed (via HP) called FlexNet who supposedly examines your system for updates and maintains the current system.  The system is constantly accumulate errors throughout t

  • R 033tx: Web Cam Driver (HP R 033tx)

    Hello Recently I bought Hp R 033tx laptop, I found all the official drivers of your official site except the driver for the webcam, Please send me the link for the driver for the web cam HP R033tx...

  • Want 4520: Format size photos before mobile printing?

    Just got my brand new HP Envy 4520 spankine yesterday, had set up, connected wireless, etc. This morning tried sending pictures to print from my iPhone - cool way. Works. Fabulously. Except that each photo comes in full page (8.5 x 11) without border

  • By playing. Files of type MOD

    Hello. I have a JVC's HD camcorder and copied records it into my laptop and be successful in reading the file but no sound. I don't have the disk that came with the camera. Can anyone help please?

  • Reference Dell place 11 Pro - load and power Question

    I have an i5 Vpro coming 11 Pro.  I also have the mobile keyboard. When I use them together power seems to draw everything first on the tablet.  I say mostly because the battery level drops faster than the mobile keyboard.  I searched the postings he