Hot Deploy Error - Build your first Portal

The following is the error I got when I tried to hot deploy a portal in EBCC for
welogic 7.0:
"Not found" error occurred when connecting to server. Please go to Connection
Settings and check service names.
Any help on that will be greatly appreciated?
Thanks,
Rita

Rita,
Is you server running? This means that an HTTP 404 was returned when trying
to access the DataSyncServlet. Check your server name, port, application
name etc. under the Connection Settings.
If you want to verify the URL you can just hit it with a web browser. It
should look something like:
http://locahost:7501/p13nAppDataSync/DataSyncServlet (for an application
called 'p13n')
Sincerely,
Daniel Selman
"Rita" <[email protected]> wrote in message
news:3d3ef190$[email protected]..
>
The following is the error I got when I tried to hot deploy a portal inEBCC for
welogic 7.0:
"Not found" error occurred when connecting to server. Please go toConnection
Settings and check service names.
Any help on that will be greatly appreciated?
Thanks,
Rita

Similar Messages

  • Weblogic Portal 7.0 - Question on Build your first portal

    I have followed the instructions as defined at http://e-docs.bea.com/wlp/docs70/index.htm.
    When attempting to hot deploy using the EBCC tool I receive the following and
    error message - "Unable to add module: NewPortalWebApp to application descriptor
    for: portalApp"
    have also tried deploying using Weblogic Builder and receive the following error
    message
    weblogic.management.ApplicationException: No modules to prepare on portalServerfor
    application named NewPortalWebApp
    Any suggestions
    Thanks
    - Mike

    Mike,
    If I remember right, this is a symptom of not having Internet access to
    validate the application.xml document against its DTD (located on SUN's
    website). I believe there is a release note on this...
    Sincerely,
    Daniel Selman
    "Mike Mochan" <[email protected]> wrote in message
    news:[email protected]..
    >
    I have followed the instructions as defined athttp://e-docs.bea.com/wlp/docs70/index.htm.
    When attempting to hot deploy using the EBCC tool I receive the followingand
    error message - "Unable to add module: NewPortalWebApp to applicationdescriptor
    for: portalApp"
    have also tried deploying using Weblogic Builder and receive thefollowing error
    message
    weblogic.management.ApplicationException: No modules to prepare onportalServerfor
    application named NewPortalWebApp
    Any suggestions
    Thanks
    - Mike

  • Mapping LDAP Role in Building Your First Process with Oracle BPM 11g

    I'm working on "Building Your First Process with Oracle BPM 11g" I'm at the end of step where assigns user for the requester. The problem is in identity lookup, "Realm" is empty for Remote_WLServer.
    Servers are up and running. Demo user community has been loaded - I can see the list of users and groups in the administration server under myrealm. We haven't done much since SOA suite 11g installation. I'm probably the first one who uses this. I wonder we have a missing set up? Can you me what's missing? Appreciate your help in advance.

    I get this error message when I clicked gear icon.
    "Server exception is : Connection refused from server"
    Here is the result of testing Remove_WLServer connection. Does this cause the issue?
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    Testing HTTP Authentication ... success.
    2 of 9 tests successful.
    I have installed JDeveloper 9i, 10g, and 11g in my laptop. SOA is installed on linux.

  • Adobe muse (Tutorial) how to build your first website isn't right?

    hi there,
    I have a question i was trying to follow the tutorials from Katys bakery (how to build your first website in adobe muse )
    now im following it, ant some things aren't right, i think so.
    im from holland (so my english isn't that good, but good enough to read it, i hope so, or my english really sucks..
    My next question is: wil some one do te tutorial 2, and discus this project with me?
    i need to be sure if im wrong of the maker of the tutorial, It's just frustation u get, i want to learn something and i do only sometimes i can't get further and then im looking at the screen for a hour
    U can fint the tutorial here http://helpx.adobe.com/pdf/muse_reference.pdf
    Let me now soon
    tnx

    Please let us know if there is anything you need help with.
    Thanks,
    Sanjit

  • Error building my first EJB

    I am trying to build my first EJB. However, everytime I giev the "ant build" command, I get an erro saying "Validation Problems Were Found". This is the only error i get and Not any syntax errors. Does this have something to do with my remote, local and Home interfaces, the Bean Class or Client, OR is it my build. xml file that has some error in it.

    Looks like your ejb-jar.xml is not correct (check the element
    <enterprise-beans>). You may post this file so that I can take a look at it.
    --Sathish
    <Waqar Ahmad> wrote in message news:[email protected]...
    Thanks for replying. Here is the build.xml file and the error output that
    I get when I execute the ant command. My BEAN here is called
    <b>SecuirtyEJB.java</b> and all the files including this BEAN are in a
    foler named SecuritySystem. Now, here is the build.xml file:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <project name="ejb20-basic-SecuritySystem" default="all" basedir=".">
    <!-- set global properties for this build -->
    <property environment="env"/>
    <property file="../../../../../examples.properties"/>
    <property name="build.compiler" value="${compiler}"/>
    <property name="source" value="${basedir}"/>
    <property name="bean.ear" value="ejb20StatelessEar"/>
    <property name="dist" value="${source}/${bean.ear}"/>
    <property name="ejb.name" value="ejb20StatelessEjb"/>
    <property name="package"
    value="examples/ejb/ejb20/basic/SecuritySystem"/>
    <property name="ejb.client.jar"
    value="ejb20_basic_SecuritySystem_client.jar"/>
    <target name="all" depends="build, deploy"/>
    <target name="build" depends="clean,
    prepare.example,
    build.ear,
    compile.client"/>
    <target name="clean">
    <delete dir="${dist}" failonerror="false"/>
    <delete dir="${examples.build.dir}/${bean.ear}" failonerror="false"/>
    <delete dir="${client.classes.dir}/${package}" failonerror="false"/>
    <delete dir="${client.classes.dir}/${ejb.client.jar}"
    failonerror="false"/>
    </target>
    <!-- prepare directories for split directory deployment -->
    <target name="prepare.example"
    description="Prepare the example for compilation and deployment.">
    <mkdir dir="${dist}"/>
    <mkdir dir="${dist}/META-INF"/>
    <mkdir dir="${dist}/${ejb.name}"/>
    <mkdir dir="${dist}/${ejb.name}/${package}"/>
    <antcall target="copy.files"/>
    </target>
    <!-- copy files for split directory deployment -->
    <target name="copy.files"
    description="Copy example files to distribution structure.">
    <copy todir="${dist}/META-INF">
    <fileset dir="${source}">
    <include name="*application.xml"/>
    </fileset>
    </copy>
    <copy todir="${dist}/${ejb.name}/${package}">
    <fileset dir="${source}">
    <include name="*.java"/>
    <exclude name="Client.java"/>
    </fileset>
    </copy>
    <!-- rename bean to .ejb so that wlcompile
    can recognize its to be EJBGen'd -->
    <copy file="${source}/SecurityEJB.java"
    tofile="${dist}/${ejb.name}/${package}/SecurityEJB.ejb"/>
    </target>
    <!-- compile EAR for split directory deployment -->
    <target name="build.ear">
    <wlcompile srcdir="${dist}" destdir="${examples.build.dir}/${bean.ear}"
    includes="${ejb.name}">
    <ejbgen source="${sourceVersion}"/>
    <javac deprecation="${deprecation}" />
    <javac debug="${debug}" />
    </wlcompile>
    <wlappc source="${examples.build.dir}/${bean.ear}"
    debug="${debug}" deprecation="${deprecation}"/>
    </target>
    <!-- deploy split directory application -->
    <target name="deploy"
    description="Deploy ear to WebLogic on ${wls.hostname}:${wls.port}.">
    <wldeploy
    user="${wls.username}"
    password="${wls.password}"
    adminurl="t3://${wls.hostname}:${wls.port}"
    debug="true"
    action="deploy"
    source="${examples.build.dir}/${bean.ear}"
    failonerror="${failondeploy}"/>
    </target>
    <!-- package the application a J2EE formatted exploded ear -->
    <target name="package.exploded.ear">
    <wlpackage srcdir="${dist}" destdir="${examples.build.dir}/${bean.ear}"
    toDir="${dist}" />
    </target>
    <!-- compile example client -->
    <target name="compile.client" description="Compile client.">
    <!--
    http://bugs.bea.com/WebClarify/CREdit?CR=CR199960
    <move file="${user.dir}/${ejb.client.jar}"
    tofile="${client.classes.dir}/${ejb.client.jar}"
    failonerror="false"/>
    -->
    <copy file="${user.dir}/${ejb.client.jar}"
    tofile="${client.classes.dir}/${ejb.client.jar}"/>
    <delete file="${user.dir}/${ejb.client.jar}"/>
    <javac srcdir="${source}" destdir="${client.classes.dir}"
    deprecation="${deprecation}" debug="${debug}"
    classpath="${ex.classpath};${client.classes.dir}/${ejb.client.jar}"
    includes="Client.java"/>
    </target>
    <!-- Run the example -->
    <target name="run">
    <java classname="examples.ejb.ejb20.basic.SecuritySystem.Client"
    fork="yes" failonerror="true">
    <arg value="t3://${wls.hostname}:${wls.port}"/>
    <classpath>
    <pathelement
    path="${ex.classpath};${client.classes.dir}/${ejb.client.jar}"/>
    </classpath>
    </java>
    </target>
    </project>
    Here is the output that I am getting:
    build.ear:
    [ejbgen] EJBGen 9.0
    [ejbgen] Creating
    C:\bea\weblogic90\samples\server\examples\build\ejb20State
    lessEar\ejb20StatelessEjb\\ejb-jar.xml
    [ejbgen] Creating
    C:\bea\weblogic90\samples\server\examples\build\ejb20State
    lessEar\ejb20StatelessEjb\\weblogic-ejb-jar.xml
    [ejbgen] Creating
    C:\bea\weblogic90\samples\server\examples\build\ejb20State
    lessEar\ejb20StatelessEjb\ejbgen-build.xml
    [move] Moving 2 files to
    C:\bea\weblogic90\samples\server\examples\build\ej
    b20StatelessEar\ejb20StatelessEjb\META-INF
    [javac] Compiling 1 source file to
    C:\bea\weblogic90\samples\server\examples
    \build\ejb20StatelessEar\ejb20StatelessEjb
    [javac] Compiling 5 source files to
    C:\bea\weblogic90\samples\server\example
    s\build\ejb20StatelessEar\ejb20StatelessEjb
    [wlappc] <Oct 28, 2005 8:51:48 PM EDT> <Info> <J2EE> <BEA-160186>
    <Compiling
    EAR module 'ejb20StatelessEjb'>
    [wlappc] <Oct 28, 2005 8:51:49 PM EDT> <Error> <J2EE> <BEA-160187>
    <weblogic.
    appc failed to compile your application. Recompile with the -verbose
    option for
    more details. Please see the error message(s) below.>
    <b>BUILD FAILED</b>
    C:\bea\weblogic90\samples\server\examples\src\examples\ejb\ejb20\basic\SecurityS
    ystem\build.xml:68: weblogic.utils.compiler.ToolFailureException:
    <b>VALIDATION PROBLEMS WERE FOUND</b>
    C:\bea\weblogic90\samples\server\examples\src\examples\ejb\ejb20\basic\Securit
    ySystem\ejb20StatelessEar\ejb20StatelessEjb\META-INF\ejb-jar.xml:13:6:13:6:
    prob
    lem: cvc-complex-type.2.4c: Expected elements
    'session@http://java.sun.com/xml/n
    s/j2ee entity@http://java.sun.com/xml/ns/j2ee
    message-driven@http://java.sun.com
    /xml/ns/j2ee' before the end of the content in element
    enterprise-beans@http://j
    ava.sun.com/xml/ns/j2ee:<C:\bea\weblogic90\samples\server\examples\src\examples\
    ejb\ejb20\basic\SecuritySystem\ejb20StatelessEar\ejb20StatelessEjb/META-INF/ejb-
    jar.xml:13:6>
    Total time: 2 minutes 8 seconds
    C:\bea\weblogic90\samples\server\examples\src\examples\ejb\ejb20\basic\SecurityS
    ystem>
    This is the part of the output whee the error message appears and I think
    this is the one you want. Hope you can figure out what the problem is here
    coz as I said, this is my first EJB program. Thanks

  • Stateful session bean hot deployment error?

    Hi,
    i'm getting an exception ...
    1. Deploy a stateful session bean.
    2. Hit the server and create an instance, then remove it.
    3. Change Stateful session bean source compile and hot deploy it.
    4. Hit the server and try creating an instance...exception !!!!
    "IllegalArgumentException: Object is not an instance of declaring class"
    Please help!!!
    Naveen

    Hi Navin,
    Firstly could you let me know , what option did you set in Jdeveloper to perform hot deploy ??
    I would like to hot deploy Stateless Session beans on Embedded OC4J using JDeveloper.
    Bhavesh

  • Introduction to PhoneGap Build - Building your first app | Building Mobile Apps with PhoneGap Build | Adobe TV

    In this video you will learn how easy it is to build and update your first mobile app using web technologies with the Adobe PhoneGap Build cloud service and learn about two new great improvements to speed developer workflow!
    http://adobe.ly/18qDiVR

    I just installed the latest Edge Code but there's no PhoneGap build icon as seen in the video.  I don't see any way to turn this feature on.

  • Deployment error in .ear in portal project

    After starting admin server in workshop for weblogic, I am trying to publish the .ear portal project.
    But its giving the following error,
    weblogic.application.ModuleException: Exception preparing module: EJBModule(netuix.jar)Unable to deploy EJB: ProxyPagePersistenceManager from netuix.jar:
    Exception while attempting to deploy Security Policy: weblogic.security.service.ResourceCreationException: weblogic.security.spi.ResourceCreationException: [Security:090310]Failed to create resource
    Exception Stack Trace:
    java.lang.Exception: Exception received from deployment driver. See Error Log view for more detail.
    at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper$DeploymentProgressListener.watch(WlsJ2EEDeploymentHelper.java:1557)
    at com.bea.workshop.wls.core.server.internal.WlsJ2EEDeploymentHelper.deploy(WlsJ2EEDeploymentHelper.java:469)
    at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publishWeblogicModules(WeblogicServerBehaviour.java:1329)
    at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publishToServer(WeblogicServerBehaviour.java:787)
    at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publishOnce(WeblogicServerBehaviour.java:607)
    at com.bea.workshop.wls.core.server.internal.WeblogicServerBehaviour.publish(WeblogicServerBehaviour.java:503)
    at org.eclipse.wst.server.core.internal.Server.doPublish(Server.java:887)
    at org.eclipse.wst.server.core.internal.Server.publish(Server.java:874)
    at org.eclipse.wst.server.core.internal.PublishServerJob.run(PublishServerJob.java:72)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Caused by: weblogic.application.ModuleException: Exception preparing module: EJBModule(netuix.jar)
    Unable to deploy EJB: ProxyPagePersistenceManager from netuix.jar:
    Exception while attempting to deploy Security Policy: weblogic.security.service.ResourceCreationException: weblogic.security.spi.ResourceCreationException: [Security:090310]Failed to create resource
    at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:42)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16)
    at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:197)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:89)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
    at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: weblogic.ejb20.interfaces.PrincipalNotFoundException: Exception while attempting to deploy Security Policy: weblogic.security.service.ResourceCreationException: weblogic.security.spi.ResourceCreationException: [Security:090310]Failed to create resource
    at weblogic.ejb.container.internal.SecurityHelperWLS.deployPolicy(SecurityHelperWLS.java:357)
    at weblogic.ejb.container.internal.SecurityHelper.deployPolicy(SecurityHelper.java:306)
    at weblogic.ejb.container.internal.SecurityHelper.deployPolicy(SecurityHelper.java:294)
    at weblogic.ejb.container.internal.SecurityHelper.deployAllPolicies(SecurityHelper.java:249)
    at weblogic.ejb.container.internal.SecurityHelper.deployAllPolicies(SecurityHelper.java:228)
    at weblogic.ejb.container.internal.RuntimeHelper.deployAllPolicies(RuntimeHelper.java:249)
    at weblogic.ejb.container.deployer.EJBDeployer.deployAllPolicies(EJBDeployer.java:770)
    at weblogic.ejb.container.deployer.EJBDeployer.setupBeanInfos(EJBDeployer.java:934)
    at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:1188)
    at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:425)
    FYI, I am using Oracle Weblogic server v10.3 and pointbase DB.

    I was unable to resolve it....!!
    Just found a workaround...I didnt' used a EAR after that....
    But still this SAP note could help u out.....!!
    Deployement error in EAR DC
    Required note is :
    SAP Note Number: 1270242
    "None of the available containers recognized the components"

  • Trying to use "Building your first PHP-Based Web Application"

    I am trying to follow the tutorial that comes with Flash Builder 4.5 for PHP. At step 2, the instructions say:
    "In Flash Builder 4.5 for PHP, use the wizard called TestDrive . . ."
    I do not know where to find this wizard. It is not mentioned anywhere else in the tutorial. It is not in any of the downloadable files that I can find through searching. Is this an external file? Is it an indication that the previous installation of Zend or the import of the database didn't go as it should have?
    In trying to further follow the tutorial, the screen shots show an option to "Create project on local server," but I don't have this option when I create a new project for "Flex and PHP." I am on a Mac and the screen shot is for a PC. Is this the issue? Or is it because I can't find the wizard called "TestDrive"? Or some other reason?
    Any help would be greatly appreciated.

    I spoke to the document author at Zend who has updated the tutorial to correct the problem.  Please try this again and let us know if there are any remaining challenges.
    Thank you!
    Michael
    Zend Technologies

  • Building your first dynamic website – Part 1: Setting up the site and database by David Powers

    Hi all,
    I have just gone through this tutorial http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html and i have managed to get it to work but im trying to adapt it to a few pages with images and content but cant figure out how to add images to the page through pypmyadmin and mysql (im not sure if this is the correct place to look) and i was hoping that someone could shed some light on this for me please. Any help would be much appreciated.
    Kind regards
    Marcus

    This page isnt but i was using the "news" php page:
    this is the php at the top of the page:
    <?php require_once('Connections/check_mag.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_check_mag, $check_mag);
    $query_getArchives = "SELECT DISTINCT DATE_FORMAT(news.updated, '%M %Y') AS archive, DATE_FORMAT(news.updated, '%Y-%m') AS link FROM news ORDER BY news.updated DESC";
    $getArchives = mysql_query($query_getArchives, $check_mag) or die(mysql_error());
    $row_getArchives = mysql_fetch_assoc($getArchives);
    $totalRows_getArchives = mysql_num_rows($getArchives);
    mysql_select_db($database_check_mag, $check_mag);
    $query_getRecent = "SELECT news.post_id, news.title FROM news ORDER BY news.updated DESC LIMIT 10";
    $getRecent = mysql_query($query_getRecent, $check_mag) or die(mysql_error());
    $row_getRecent = mysql_fetch_assoc($getRecent);
    $totalRows_getRecent = mysql_num_rows($getRecent);
    mysql_select_db($database_check_mag, $check_mag);
    $query_getDisplay = "SELECT news.title, news.blog_entry,  DATE_FORMAT(news.updated, '%M %e, %Y') AS formatted FROM news ORDER BY news.updated DESC LIMIT 2";
    $getDisplay = mysql_query($query_getDisplay, $check_mag) or die(mysql_error());
    $row_getDisplay = mysql_fetch_assoc($getDisplay);
    $totalRows_getDisplay = mysql_num_rows($getDisplay);
    $var1_getDisplay2 = "-1";
    if (isset($_GET['archive'])) {
      $var1_getDisplay2 = $_GET['archive'];
      $query_getDisplay = sprintf("SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%%M %%e, %%Y') AS formatted FROM news WHERE DATE_FORMAT(news.updated, '%%Y-%%m') = %s ORDER BY news.updated DESC", GetSQLValueString($var1_getDisplay2, "text"));
    } elseif (isset($_GET['post_id'])) {
      $var2_getDisplay3 = $_GET['post_id'];
      $query_getDisplay = sprintf("SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%%M %%e, %%Y') AS formatted FROM news WHERE news.post_id = %s", GetSQLValueString($var2_getDisplay3, "int"));
    } else {
      $query_getDisplay = "SELECT news.title, news.blog_entry, DATE_FORMAT(news.updated, '%M %e, %Y') AS formatted FROM news ORDER BY news.updated DESC LIMIT 2";
    $getDisplay = mysql_query($query_getDisplay, $check_mag) or die(mysql_error());
    $row_getDisplay = mysql_fetch_assoc($getDisplay);
    $totalRows_getDisplay = mysql_num_rows($getDisplay);
    ?>
    this is the other code:
    <!-- START COL 1/3 -->
      <div class="col_1_5 archivesColor">
    <h2 class="silver">Archives</h2>
        <div class="line"></div>
        <ul>
          <?php do { ?>
            <li><a href="news.php?archive=<?php echo $row_getArchives['link']; ?>"><?php echo $row_getArchives['archive']; ?></a></li>
            <?php } while ($row_getArchives = mysql_fetch_assoc($getArchives)); ?>
        </ul>
        <div class="clear"></div>
        <div class="clear padding10"></div>
      </div>
      <!-- START COL 2/3 -->
      <div class="col_1_5 recentPostsColor">
        <h2 class="silver">Recent Posts</h2>
        <div class="line"></div>
        <ul>
          <?php do { ?>
            <li><a href="news.php?post_id=<?php echo $row_getRecent['post_id']; ?>"><?php echo $row_getRecent['title']; ?></a><div class="line"></div></li>
            <?php } while ($row_getRecent = mysql_fetch_assoc($getRecent)); ?>
        </ul>
      <div class="clear"></div>
        <div class="clear padding10"></div>
    </div>
    <!-- START COL 3/3 -->
    <div class="col_2_3 last blogPostsColor">
      <?php do { ?>
        <h2 class="pink"><?php echo $row_getDisplay['title']; ?></h2>
        <div class="line"></div>
        <p class="align_justify"><?php echo nl2br($row_getDisplay['blog_entry']); ?></p>
          <div class="line"></div>
        <p class="updated silver">Updated on
          <?php echo $row_getDisplay['formatted']; ?><div class="line"></div><div class="clear padding40"></div></p>
          </li>
        <?php } while ($row_getDisplay = mysql_fetch_assoc($getDisplay)); ?>
    </div>
    <div class="clear"></div>
        <div class="clear padding10"></div>
    </div>
    </div>
    </section>
    <!-- END CONTENT -->

  • Tutorial oracle:building your first JSP page

    version francaise: en espérant qu'il y est des francais...
    je suis débutant.
    j'ai un problème sur ce tutorial. Je n'ai pas de cadre rouge, lorsque je rajoute un composant (TextField par exemple). Je suppose que c'est une option que j'ai mal paramétrée. Si quelqu'un peut m'aider merci.
    ps: je me permet de poster en francais, c'est un conseil que l'on m'a donné sur un forum!

    http://www.oracle.com/technology/obe/obe1013jdev/index.htm

  • Getting Deploy Error when using the WebDynpro Compiler

    Hi,
    I have a VC application which uses the RFC from R/3.
    When i am using the Compiler as WEBDYNPRO, it is giving me Deploy Error as:
    WebDynpro Compiler:
    Portal request failed
    (Model properties Namespace and Vendor are not specified for source archieve generator)
    Also,
    I checked the Iview property in the Portal but i am unable to find this properties.
    Guide me when and where this Complier type is uesd..?
    Thanks & Regards,
    Dhruv Shah

    Hi,
    I am unable to find this properties.
    In the Model View i searched a lot.
    I have another question also.
    Do you know how to refresh the table from the RFC.
    Thanks& regards,
    Dhruv Shah

  • Obaccess.dll causes link error on hot deploy

    I'm doing web services development with AccessServerSDK 10G, Glassfish v3, on windows XP using Eclipse. It works fine except whenever I change my code and eclipse attempts to hot deploy the application, the following error occurs and the deploy bombs:
    "org.apache.catalina.LifecycleException: org.apache.catalina.LifecycleException: java.lang.UnsatisfiedLinkError: Native Library C:\NetPoint\AccessServerSDK\oblix\lib\obaccess.dll already loaded in another classloader"
    It seems that the obaccess.dll reloads without checking whether if it is already loaded. The only way to redeploy the application is to shutdown Glassfish and restart it for every change I make. It's impeding my progress.
    So far I've tried the following:
    --removing jobaccess.jar from inside my application and putting it into Glassfish_HOME/domain/domain1/lib; it didn't help.
    --put an ObConfig.shutdown before the ObConfig.initialize; it didn't help.
    --catching the exception and ignoring it, but then the application gets a null pointer exception when it runs.
    I can't find anyone else in cyberspace complaining about this problem. I hope it isn't an issue with Windows because we do all our development on our desktops, but I wouldn't be surprised.
    Anyone else having this problem or found a fix for it?

    Hi,
    I already faced with this problem on WLS11gR3 (10.3.4) and I try with all your workaround.
    The solution I found was to install on separate server chain in order to reboot the server instead of use Hot Deploy.
    We have also think to migrate the application to J2SE.
    It seam that it is not possible to remove Jni 'till jvm is up and running.
    Wile summer have you found any solution?

  • Obaccess.dll causes link error on hot deploys

    I'm doing web services development with AccessServerSDK, Glassfish v3, on windows XP using Eclipse. It works fine except whenever I change my code and eclipse attempts to hot deploy the application, the following error occurs and the deploy bombs:
    "org.apache.catalina.LifecycleException: org.apache.catalina.LifecycleException: java.lang.UnsatisfiedLinkError: Native Library C:\NetPoint\AccessServerSDK\oblix\lib\obaccess.dll already loaded in another classloader"
    It seems that the obaccess.dll reloads without checking whether if it is already loaded. The only way to redeploy the application is to shutdown Glassfish and restart it for every change I make. It's impeding my progress.
    So far I've tried the following:
    --removing jobaccess.jar from inside my application and putting it into Glassfish_HOME/domain/domain1/lib; it didn't help. 
    --put an ObConfig.shutdown before the ObConfig.initialize; it didn't help. 
    --catching the exception and ignoring it, but then the application gets a null pointer exception when it runs. 
    I can't find anyone else in cyberspace complaining about this problem. I hope it isn't an issue with Windows because we do all our development on our desktops, but I wouldn't be surprised.
    Anyone else having this problem or found a fix for it?

    Hi,
    I already faced with this problem on WLS11gR3 (10.3.4) and I try with all your workaround.
    The solution I found was to install on separate server chain in order to reboot the server instead of use Hot Deploy.
    We have also think to migrate the application to J2SE.
    It seam that it is not possible to remove Jni 'till jvm is up and running.
    Wile summer have you found any solution?

  • Labview 8.2.1 RT Build Deployment Error

    Hello,
    I am trying to build a simple RT application. However, I get an error stating that there is an "error in invoking the build engine.....check for broken VIs".
    However, I have created a simple application with just a string constant wired to a string indicator.
    I have attached a screen shot of my error.
    Any ideas?
    Thanks.
    Attachments:
    RT Build Deployment Error.JPG ‏99 KB

    Hi Somit,
    Thanks for posting on the discussion forums.  The most common solution to this error is to repair your LabVIEW installation.  If you are using Windows XP you can do this by going to Control Panel, then to Add/Remove Programs, selecting the National Instruments software tab, and then the Change/Remove button.  From the populated list of programs that opens in the new window you can perform a repair on your LabVIEW 8.2.1 (this may take a while and you will need the cds).  I hope this helps out.  Have a great day!
    Regards,
    Michael
    Applications Engineering
    National Instruments

Maybe you are looking for

  • Album view and Cover Flow problem

    Well, im going to get one of the new ipods soon and they have that Cover Flow feature which is pretty cool. Anyway i have a problem, when i try and sort them by album, i go to Album View and even if the album names are the same, they arnt in the same

  • Problem after sync my iPhone to mac.

    everytime now the itunes will say some of the items i purchased couldn't be transferred to my library coz i am not authorized to this computer. so i authorized this computer but, still i can't use my apps, every single one of them except the ones tha

  • Help! Time machine says my backup disk is too small

    I have a 500 gig back up disk for time machine back up and my hard drive on my imac is 500gigs but for some reason it is saying I don't have enough space on my back up disk for time machine to back up. how can that be if they are the same size.

  • Unable to update my nokia phone software

    unable to update my nokia 5800 xpressmusic software via pc/pc suite... And unable to download apps from ovi stor

  • How can i recover my deleted records

    Hello sir, I m from j.b.diamond,surat(india). I purchased your oracle 9i (9.0.2) version since last few month. Now a days I have one problem so please solve it.. I delete few records from my database and then commit it, is it possible to recover that