Deploying Jee5 App in Netweaver Application Server

Hi Everybody
How to deploy jee5 application on Netweaver Application Server without using Netweaver Developer Studio NWDS.
Thank You
Syed Saifuddin

Hi Prashil,
That blog is about deployment on Web AS 6.40. Here we are discussing the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/javaee5">AS Java EE 5 Edition</a>.
The document provided by Ivaylo is the right place to go when dealing with this topic.
@Syed,
Additionally, you can change the AS Java configuration in your NWDS preferences to point to the "server machine". Or, you can make use of the deployment scripts in the folder C:SAPJP1JC00j2eedeploymentscripts. See the readme.txt.
HTH!
Best regards,
Vladimir

Similar Messages

  • Data sources in deploying web app. to Oracle Application Server

    I am using simple web application - JSP with BC4J (JDeveloper 9.0.5.1).
    I want to configure my application to use Data Source instead of JDeveloper connection and deploy it to production database, so DB administrator will take care of username and password.
    First, I create a new application module configuration that uses a data source instead of a JDeveloper connection with BC config. name TestAppModuleWithDS.
    Then I modify my application client (DataBindings.cpx) to use the new configuration (TestAppModuleWithDS).
    After that I create deployment profile and deploy to application server connection and try to test it on standalone server, and on production server together with my DBA.
    But the application is not running, always displaying error messages...
    Please what is the procedure and how to set Config of ApplModule.
    It is working properly with embeded server, but on standalone server there is an error:
    java.lang.UnsupportedClassVersionError: oracle/jdeveloper/cm/ConnectionDescriptor (Unsupported major.minor version 48.0)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.OC4JSecureClassLoader.defineClassEntry(OC4JSecureClassLoader.java:172)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.defineClass(ContextClassLoader.java:1154)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.findClass(ContextClassLoader.java:390)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.loadClass(ContextClassLoader.java:138)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:271)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
         at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManager.java:165)
         at oracle.jbo.http.HttpContainer.findSessionCookie(HttpContainer.java:817)
         at oracle.jbo.html.jsp.datatags.ApplicationModuleTag.doStartTag(ApplicationModuleTag.java:169)
         at lastcoil.jspService(_testjsp.java:52)
         [SRC:/testjsp.jsp:11]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Unknown Source)
    Application module in testjsp.jsp (_testjsp.java) is:
    oracle.jbo.html.jsp.datatags.ApplicationModuleTag __jsp_taghandler_1=(oracle.jbo.html.jsp.datatags.ApplicationModuleTag)OracleJspRuntime.getTagHandler(pageContext,oracle.jbo.html.jsp.datatags.ApplicationModuleTag.class,"oracle.jbo.html.jsp.datatags.ApplicationModuleTag id configname releasemode");
    __jsp_taghandler_1.setParent(null);
    __jsp_taghandler_1.setId("TestAppModule");
    __jsp_taghandler_1.setConfigname("test.TestAppModule.TestAppModuleWithDS");
    __jsp_taghandler_1.setReleasemode("Stateful");
    __jsp_tag_starteval=__jsp_taghandler_1.doStartTag();
    if (OracleJspRuntime.checkStartTagEval(__jsp_tag_starteval))
    DataBindings.cpx is configured like this:
    ?xml version='1.0' encoding='windows-1252' ?>
    <JboProject
    id="DataBindings"
    xmlns="http://xmlns.oracle.com/adfm/application"
    version="9.0.5.15.88"
    SeparateXMLFiles="false"
    Package=""
    ClientType="JClient" >
    <Contents >
    <DataControl
    id="TestAppModule"
    SubType="DCBC4J"
    SupportsFindMode="true"
    SupportsTransactions="true"
    Package="test"
    FactoryClass="oracle.adf.model.bc4j.DataControlFactoryImpl"
    Configuration="TestAppModuleWithDS" >
    <Parameters >
    <Parameter
    name="Sync"
    value="Batch" >
    </Parameter>
    </Parameters>
    </DataControl>
    </Contents>
    </JboProject>
    D:\JDeveloper10\j2ee\home\config\data-sources.xml je:
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
    <data-sources>
         <!--
              An example/default DataSource that uses
              Oracle JDBC-driver to create the connections.
              This tag creates all the needed kinds
              of data-sources, transactional, pooled and EJB-aware sources.
              The source generally used in application code is the "EJB"
              one - it provides transactional safety and connection
              pooling. Oracle thin driver could be used as well,
              like below.
              url="jdbc:oracle:thin:@host:port:sid"
         -->
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="tiger"
              url="jdbc:oracle:thin:@localhost:5521:oracle"
              inactivity-timeout="30"
         />
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestAppModuleWithDS"
              location="jdbc/hmlCoreDS"
              xa-location="jdbc/xa/hmlXADS"
              ejb-location="jdbc/hmlDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="user1"
              password="psw1234"
              url="jdbc:oracle:thin:@server.com:1521:sidname"
              inactivity-timeout="30"
         />
    D:\HotStripMill Projects\bc4j\src\lastcoil\common\bc4j.xcfg
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="TestAppModuleWithDS">
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCDataSource>jdbc/hmlCoreDS</JDBCDataSource>
    <jbo.project>bc4j</jbo.project>
    <AppModuleJndiName>test.TestAppModule</AppModuleJndiName>
    <java.naming.factory.initial>oracle.jbo.common.JboInitialContextFactory</java.naming.factory.initial>
    <ApplicationName>test.TestAppModule</ApplicationName>
    </AppModuleConfig>
    </AppModuleConfigBag>
    <ConnectionDefinition name="hml">
    <ENTRY name="JDBC_PORT" value="1521"/>
    <ENTRY name="ConnectionType" value="JDBC"/>
    <ENTRY name="HOSTNAME" value="server.com"/>
    <ENTRY name="user" value="user1"/>
    <ENTRY name="ConnectionName" value="hml"/>
    <ENTRY name="SID" value="sidname"/>
    <ENTRY name="JdbcDriver" value="oracle.jdbc.driver.OracleDriver"/>
    <ENTRY name="password">{904}05437B2C11AE10318B521E7C6EE279666E</ENTRY>
    <ENTRY name="ORACLE_JDBC_TYPE" value="thin"/>
    <ENTRY name="DeployPassword" value="true"/>
    </ConnectionDefinition>
    </BC4JConfig>
    </data-sources>
    Thanks!

    iAS 1.0.x is StoneAge Technology (TM).
    Using the E-Business Suite you should look into the newer versions of the Application Server. I believe that 10.1.2.x supports the EBS, otherwise 9.04 should do the trick. Webservice support is much better in the newer versions. 1.0.x is from around 2000/2001 so the Webservice technology back than was "different" :-)
    cu
    Andreas

  • Installation Problem inSAP NetWeaver Application Server, Java EE 5 Edition

    Hi All,
    I have dowloaded the package from SDN but as I tried to Install it into my system,i got the following error;the log is like below:
    (Mar 1, 2007 4:54:56 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file D:\sapdb\JP1\log.txt for details.
    (Mar 1, 2007 4:54:56 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="Thu Mar 01 16:54:56 IST 2007 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile C:/DOCUME1/SAP/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="Thu Mar 01 16:54:56 IST 2007 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile C:/DOCUME1/SAP/LOCALS1/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:247)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    But the same package got installed on another system having the same system parameters.
    Pls guide.
    Thanks in advance

    Hi,
    welcome to SDN!
    To your problem: did you make sure the master password you set during installation is less than 9 charachters as discussed in the Installation Troubleshooting?
    P.S. I'm moving this thread to the forum dedicated to the SAP NetWeaver Application Server, Java EE 5 Edition.

  • SAP NetWeaver Application Server ABAP Trial Version for Linux

    Donde podría conseguir los paquetes de instalación del SAP NetWeaver Application Server ABAP Trial Versión para correrla en una Maquina Virtual con Linux.

    https://store.sap.com/sap/cpa/download/20/0000000218?tkt=6728195BC9A41D6FDC99371FC9BB49E9_20140521182535.4356890&sap-lan…

  • Error to install the SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Trial Version

    Hi,
    Can anybody help me?
    I'm try to install the SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Trial Version... and in the Running phase 11: Create sequence for the ABAP user, I had this error:
    What do have I to do solve this problem?
    ERROR      2014-07-13 14:24:19.395 [iaxxinscbk.cpp:244]
    CJS-00030  Assertion failed:    :    [3336] 14:23:42    ***Warning: Loadavg: Could not add processor time performance counter to query.
    com.sap.dbtech.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: Cannot connect to jdbc:sapdb://virtuawjms/NSP [Restart required].
    ERROR      2014-07-13 14:24:19.395
    CJSlibModule::writeError_impl()
    MUT-03025  Caught ESAPinstException in Modulecall: :    [3336]  14:23:42 ***Warning: Loadavg: Could not add processor time performance counter to query.
    com.sap.dbtech.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: Cannot connect to jdbc:sapdb://virtuawjms/NSP [Restart required].
    ERROR      2014-07-13 14:24:19.495 [sixxcstepexecute.cpp:988]
    FCO-00011  The step SdbCheckExistingSequence with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_ADA_DB|ind|ind|ind|ind|6|0|Sdb_Schema_Sequence|ind|ind|ind|ind|6|0|SdbCheckExistingSequence was executed with status ERROR ( Last error reported by the step :Assertion failed:    :    [3336] 14:23:42    ***Warning: Loadavg: Could not add processor time performance counter to query.
    com.sap.dbtech.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: Cannot connect to jdbc:sapdb://virtuawjms/NSP [Restart required].).
    INFO       2014-07-13 14:24:22.669 [synxcpath.cpp:815]
    CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Arquivos de programas\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\__instana_tmp.xml.
    WARNING    2014-07-13 14:24:24.752 [iaxxejshlp.cpp:150]
    Could not get property IDs of the JavaScript object.
    ERROR      2014-07-13 14:24:24.752 [iaxxejsctl.cpp:492]
    FJS-00010  Could not get value for property .

    Hi,
    Kindly follow SCN thread Sapinst error: No GUI server connected and try to restart the complete system.
    Regards,
    Gaurav

  • How to register a webserive in NetWeaver Application Server?

    Dear All,
    Can you please explain how to register a werbservice in Netweaver Application server?
    Gafar

    Mahesh,
    Thank you for your reply.
    I have gone through the sap note 63930. I need some more details to fix my problem.
    My application flow is as follows.
    1. There is a webservice in SAP XI.
    2.The webservice is calling from a Java Web application by  
        using Java JNDI lookup.
    While calling the XI through jndi lookup,
    I am getting an exception, NameNotFoundException. This is because of the non existing/Name mismatch of JNDI lookup on Web AS.
    My question is How and Where can we check the JNDI registry? I am not familiar with Visual Administrator. Can you please help me regarding this problem.
    Abdul Gafar

  • Problem accessing frontend for Trial:SAP NetWeaver Application Server ABAP 7.4 on SAP MaxDB

    Hi all,
    had to set up short timed a trial instance of SAP NetWeaver Application Server ABAP 7.4 on SAP MaxDB in Amazon Cloud
    Installtion was pretty straightforward but now if have the problem of accessing the frontend via RDP.
    Connecting via ssh works fine but when it comes to rdp it just says something like "rdp not activated or computer not reachable or down". Ping is also not working.
    The instance is created as public.
    Tried to reach it from my corporate network (ports opened), from home, from mobile broadband. Same result, ssh working, rdp not.
    Any ideas?
    thanks
    Ferdinand

    Hi Ferdinand,
    not every appliance in CAL comes with an Windows system that has the UI tools preinstalled. The system you are currently using comes with a Linux server only on which the NetWeaver ABAP and the MaxDB run. Here are a few hints which help to understand if RDP is available:
    1) take a look at the default "Access Point" configuration. If Port 3389 (RDP) is not opened by default, then there is probably no RDP available
    2) take a look at the number of virtual machines (instances) the solution details. If there is only one VM listed, it is the one with the server components (very likely not Windows).
    3) Check if the connect button on the "INSTANCES" screen lists RDP (the connect button becomes visible after the solution has been started). If there is no option for RDP, then it is not available.
    In a nutshell, for this particular solutions there is no Windows RDP available. Nevertheless, the user guides explains how to fetch and install SAPGUI to your client machine so that you are able to connect to the system.
    Thanks and Regards,
      Hannes
    Best Regards / Freundliche Grüße / 敬具 / 此致敬礼 / Поздрави
    Hannes Kuehnemund | Product Owner - SAP Cloud Appliance Library
    Vote in our latest poll here: http://cal.sap.com - Information on Instance Popup

  • SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Developer Version下载问题

    我在下载专区,下载SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Developer Version怎么无法下载,提示要证书,这个下载证书从哪里来??

    另外请看这篇文章,是关于安装过程的。http://scn.sap.com/community/abap/blog/2012/03/26/step-by-step-installation-guide-for-sap-netweaver-as-abap-702-sp6-32-bit-trial-version

  • SAP Netweaver Application Server ABAP Component

    Dear all,
    In my Company we are implementing GRC Risk Management and have read in SAP Installation guides
    that we have to install the SAP_ABA 7.01 (SP05) "SAP Netweaver Application Server ABAP Component"
    and were wondering if it is mandatory to make this upgrade or if there is another way to make
    the installation without this component.
    Thanks very much

    Hello Enzo,
      I hope that you are installing RM 3.0. For RM 3.0 you need the following:
    SAP_BASIS      701      SAPKB70103
    SAP_BW              701      SAPKW70103
    The Requirements for ABAP + Java is SAP NetWeaver 7.01 Support Package 3 or higher. This is Mandatory.
    You can find out more from the following guides available on SAP Service Market Place.
    Logon to SAP SMP -> Downloads -> Release and Upgrade Info -> Installation & Upgrade Guides ->  SAP BusinessObjects Governance, Risk, Compliance (GRC) ->  Risk Management -> Release 3.0 (click Release 2.0 if you are looking for RM2.0). -> Installation Guide. In this you should be able to get the prerequisite for the RM application.
    Hope it helps.
    Regards, Varun

  • SAP NetWeaver Application Server ABAP 7.03 64-bit Trial - License

    I have recently download the SAP NetWeaver Application Server ABAP 7.03 64-bit Trial version for use on Windows Server 2008R2.  I went to get a license key and noticed this was only a 90 day license.  Is it possible to extend the licensing out to longer than 90 days? 
    If so, could you please provide pricing options for that?  If not, can I continue to request 90 day licenses for use after each license term expires?  I'm new to SAP and ABAP and I'm trying to train for development and feel it will take more than the alotted 90 days.
    Thanks.

    Hi Ryan,
    You can renew your license every time you need at:
    SAP Sneak Preview License Key Request
    Best regards,
    Artur

  • SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA with ERP-System

    Hello,
    I have a running Instance of SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8.
    Here I have the minisap Licence of A4H.
    When I get the Licence of ERP - do I have a fully ERP System on HANA ?
    Or do I need a new Instance?

    Hi Julia,
    even if you or your company have an SAP license for ERP, you are legally not allowed to install the license key into the free offering it because you have accepted the terms and conditions of the trial/developer version.
    If you want to use your own licenses, you would need to switch to the BYOL model where you bring in the license. For that you would need to purchase the SAP Cloud Appliance Library subscription. You get more details here (CAL FAQ - Business related questions ). To purchase the SAP Cloud Appliance Library subscription you would need to select the "Unlock full library" link on the top right corner of the Subscriptions screen on http://cal.sap.com.
    Best Regards,
      Hannes

  • Download the SAP NetWeaver Application Server ABAP Trial 7:03 64-bit

    I can not download the SAP NetWeaver Application Server ABAP Trial 7:03 64-bit complete, the file size is 3,912 gb and I can only download 2 gb.
    How can I download the full file?
    thank you

    https://store.sap.com/sap/cpa/download/20/0000000218?tkt=6728195BC9A41D6FDC99371FC9BB49E9_20140521182535.4356890&sap-lan…

  • Share SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Trial Version

    Hi,
    Have any of you downloaded SAP NetWeaver Application Server ABAP 7.02 SP6 32-bit Trial Version (http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/80db43c2-9ee5-2d10-de8e-8547de363868)
    successfully?could you share it ?
    I failed to download it , i always get this message: Unfortunately there was a technical issue completing your download request. Please try again later.

    Hi Wang,
                Try with this:
                     http://www.mediafire.com/?v0zkwy9as198ddc
                In the txt you're going to find the links that need.
    Best Regards,

  • SAP NetWeaver Application Server ABAP 7.02 SP6 64-bit Developer Version

    When I downloaded the "SAP NetWeaver Application Server ABAP 7.02 SP6 64-bit Developer Version" I only got the Trial Version, so I have a license (from sap.com/minisap) that will expire. Where can I get the Developer Version license?

    The trial version is for you to test and evaluate the software. It will expire after 120 (30+90) days. I donu2019t think you can get a permanent license.

  • Download SAP Netweaver application server ABAP 7.02 SP6 32 Bit trail versio

    Hi All,
    I am using mac . i have noticed that in SDN we can download SAP Netweaver application server ABAP 7.02 SP6 32 Bit trail version.
    But all the details specified out there is only for windows os.Do we have options for mac here ??
    Thanks,
    Joe

    Since there does not exist any ABAP-Server Version for Mac (never has and most likely never will be) - only 64bit operating systems for suited for large server (WinXP-32 is one exception for Development purposes)
    The only option for you is some sort of virtual machine.
    best regards,
    Reinhard

Maybe you are looking for

  • Unable to search GAL on Lync 2013 Front End Pool through Lync 2013 client

    I'm in the beginning of a 2010 to 2013 migration and I'm currently testing co-existence functionality between pools.  I've noticed that users cannot search the GAL from their Lync client after being moved to the 2013 pool.  When trying to access the

  • NFL Mobile Stream Not Available

    Hi, so I'm paying for NFL Mobile from Verizon and when I try to access the Saints/Seahawks game's live stream on my phone (with 4/5 stars of signal), it is stating: "Stream unavailable The live stream you have attempted to open is not available" Is t

  • Can you stream video to a PB?

    I just got a PB - is there a way to stream video to a PB the way that you can with an iPad using Air Video?  Either on your LAN or over the net?

  • How to alter username

    how to alter username

  • How to install Rosetta on 10.6?

    I didn't choose Rosetta when I installed the 10.6, then as I install photoshop CS4, the system prompts the Rosetta is required to install. If I choose ok the Software Update pop-up and keeps searching but it seems will never find it(the status bar ne