EJB and Tools

Hi there,
3 questions here:
First, does CMP can call stored procedure from a database? or BMP only? or both? Please show me some codes on whichever.
Secondly, can a session bean call a stored procedure? Any codes?
Last, does there any tools or IDE that have source codes control and works with WebLogic servers?
Thanks a lot
Neo

Some further explanation please...
1. What does these method doing inside my EJBean?
- ejbPassivate()As the name suggest this method helps in passivation... i.e. persistence of ejb state.
The container invokes this method on an instance when the container decides to disassociate
the instance from an entity object identity, and to put the instance back into the pool of avail-able
instances. The ejbPassivate() method gives the instance the chance to release any
resources that should not be held while the instance is in the pool. (These resources typically
had been allocated during the ejbActivate() method.)
For session beans in advanced cases, a session object�s conversational state may contain open resources, such as open sockets and open database cursors. A container cannot retain such open resources when a session bean instance is passivated. A developer of such a session bean must close and open the resources in the ejbPassivate and ejbActivate notifications.
- setSessionContext(SessionContext ctx), since my
my codes in the Remote interface does not call this
method which also passes a parameter ctx?setSessiontContext is invoked by container and the ctx required by it is supplied by container. Thus u dont require to pass ctx parameter.
The bean�s container calls the setSessionContext method to associate a session bean instance
with its context maintained by the container. Typically, a session bean instance retains its session context as part of its conversational state.
The context supplied by the container helps you to identify the poperties in deployment descriptor...i.e. your next question..
- Where does this referred in the EJBean ->
-> cntx.lookup("java:comp/env/jdbc/mydatabase");
where that i can see the reference to?
You can refer these statements any where u need to access database. Suppose you need to fire a procedure after you have created a record. You can write these statments in ejbPostCreate method.
2. Inside my ejb-jar.xml file, which is a deployment
descriptor, what are these tags meant?
- <env-entry>, <env-entry-name>, <env-entry-type>,
e>, <env-entry-value>
env-entry stands for environment entries. These are like env. variables which u need to access at runtime.
Each env-entry element describes a single environment entry. The env-entry element consists of
an optional description of the environment entry, the environment entry name relative to the
java:comp/env context, the expected Java type of the environment entry value (i.e., the type of the
object returned from the JNDI lookup method), and an optional environment entry value.
An environment entry is scoped to the enterprise bean whose declaration contains the env-entry ele-ment.
This means that the environment entry is inaccessible from other enterprise beans at runtime, and
that other enterprise beans may define env-entry elements with the same env-entry-name with-out
causing a name conflict.
The environment entry values may be one of the following Java types: String, Character, Inte-ger,
Boolean, Double, Byte, Short, Long, and Float.
If the Bean Provider provides a value for an environment entry using the env-entry-value ele-ment,
the value can be changed later by the Application Assembler or Deployer. The value must be a
string that is valid for the constructor of the specified type that takes a single String parameter, or for
java.lang.Character, a single character.
For example:
<env-entry>
<description>Return the developer of the bean</description>
<env-entry-name>author</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>Neo</env-entry-value>
</env-entry>
Here description tag is optional.
<env-entry-name> specifies the property name, which in our case is author.
<env-entry-type> specifiest the data type of property, i.e String
<env-entry-value>The value for the property i.e Neo
You can imagine this as a java statement like
String author = Neo; //Return the developer of the bean.
TQ
NeoHope this explanation was helpful to u
abhishek

Similar Messages

  • Starting up j2ee and EJB deployment tool on Windows 98

    I will start off this question with an apology if it is too stupid,
    basic, or placed in the wrong group. I am relatively new to the world
    of Java and even newer to the world of Server-side Java and EJBs.
    However, I am plugging away.
    I am using my trusty 4 year old system with Windows 98 second edition
    to dabble with Server-side Java and EJB applications. I am using
    Tomcat 4.0 as my server. When I try and start the j2ee server or the
    EJB deployment tool I get the following scrolling messages:
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Syntax error
    Syntax error
    Syntax error
    Out of environment space
    Bad command or file name
    I have tried to adjust the memory settings in the DOS window with no
    success. My question has three parts:
    1) Can these applications be run using Windows 98 and if so what are
    the exact DOS window memory settings for this?
    2) Where exactly can I find the documentation that specifies this?
    (please be specific as possible as I have read the readme.txt files
    supplied with j2ee)
    3) Should this and similar questions be posted in another
    group/section?
    I truly appreciate anyone's help with this.
    Sincerely,
    Tim

    You're going to have a lot of pain unless you upgrade to Windows 2000 or XP.
    In the mean time, set your environment size much larger (google for "Out of
    environment space") and use WinOne from http://www.cia.com.au/luke/ ...
    that's how I scraped by on Windows 98 for a while.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Tim" <[email protected]> wrote in message
    news:[email protected]..
    I will start off this question with an apology if it is too stupid,
    basic, or placed in the wrong group. I am relatively new to the world
    of Java and even newer to the world of Server-side Java and EJBs.
    However, I am plugging away.
    I am using my trusty 4 year old system with Windows 98 second edition
    to dabble with Server-side Java and EJB applications. I am using
    Tomcat 4.0 as my server. When I try and start the j2ee server or the
    EJB deployment tool I get the following scrolling messages:
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Syntax error
    Syntax error
    Syntax error
    Out of environment space
    Bad command or file name
    I have tried to adjust the memory settings in the DOS window with no
    success. My question has three parts:
    1) Can these applications be run using Windows 98 and if so what are
    the exact DOS window memory settings for this?
    2) Where exactly can I find the documentation that specifies this?
    (please be specific as possible as I have read the readme.txt files
    supplied with j2ee)
    3) Should this and similar questions be posted in another
    group/section?
    I truly appreciate anyone's help with this.
    Sincerely,
    Tim

  • I made a change to my EJB, and went to re-deploy onto the OAS, and got an error.

    I successfully deployed an EJB, and tested it, which it worked. Now, if I want to make a modification to that EJB, I need to redeploy it onto the OAS server, JDeveloper gives me an exception when deploying:
    java.io.FileNotFoundException: D:\orant\ows\4.0\..\apps\ejb\HiWorld\_client.jar
    at java.lang.Throwable.<init>(Compiled Code)
    at java.io.FileNotFoundException.<init>(Compiled Code)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:69)
    at sun.tools.jar.Main.run(Main.java:76)
    at sun.tools.jar.Main.main(Main.java:524)
    at oracle.oas.tools.util.JarGenerator.createJar(Compiled Code)
    at oracle.oas.tools.util.CreateJars.main(Compiled Code)
    Creation of client jar for D:\\orant\\ows\\upload\\544HiWorldSource.jar failed!
    What do I need to do to redeploy an EJB onto the OAS? Do I need to shut down the OAS server in order to redeploy?
    Thanks!

    You could either restart/bounce your OAS or turn the FILECACHING=OFF in the svadmin.cfg file in OAS
    raghu

  • GUI  EJB deployment tool

    Hi,
    Are there any open source/free GUI EJB deployment tool available which will work for major application servers ?
    (I am aware that non-GUI xdoclet + ANT is a powerful combination. But I am just starting on learning EJB , so at the moment I want to use a GUI)
    Thanks in advance
    Ratheesh

    The J2EE Component Wizard is a swing application, that creates ant build-files and source code with XDoclet tags. At this moment only the XDoclet tags of the JBoss will be supported.
    http://www.j2eeguru.net/index.html

  • Choice of EJB testing tools

    Who can help with choice of EJB testing tools? (Cactus, JUnitEE etc)
    Any benefits and weak spots?

    Cactus would be a good choice since it is more focused on Integration Unit Testing and it extends JUnit.
    $ Carol.

  • Problem with EJB and JMS - Failed to obtain/create connection

    hello ejb and jms programmers,
    My problem is my topic MDB keep on retrieving the same message when there is a database connection failure. Maybe somebody could help me how to prevent to retrieve the same data?
    Given:
    - I purposedly turn off the pointbase database because im testing my error handling.
    - Im using SJSAS 8 as my application server.
    - My message Driven Bean of topic type.
    - Im using CMP for my entity bean
    Here is the scenario of whats happening - step by step:
    1. A separate application publishes a message to JMS queue server
    2. My MDB retrieves this message and do some processing then inserts a record (transaction history) in my database
    3. But my db is turned off or down
    4. My MDB sends a successful processing reply to the JMS queue server
    5. Then i noticed that my server.log keeps on growing so when i opened it, the record was not inserted and printed the stacktrace below "RAR5117 : Failed to obtain/create connection. Reason : javax.transaction.SystemException" (complete stacktrace below)
    6. I understand the cause of the stacktrace is because the DB is turned off. But what i dont understand is that my MDB keeps on reading the same message. Since my MDB is of topic type, isnt a topic MDB supposedly reads a message only once???
    So my questions are:
    1. how do i handle insert database error?
    2. how can i stop my MDB from processing the same message?
    3. any better suggestions?
    Thank you in advance :)
    leigh
    *** more complete stack trace ***
    [#|2005-01-09T15:35:57.097+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=17;|JTS5041: The resource manager is doing work outside a global transaction
    javax.transaction.xa.XAException
         at com.pointbase.xa.xaException.getXAException(Unknown Source)
         at com.pointbase.xa.xaConnectionResource.start(Unknown Source)
         at com.sun.gjc.spi.XAResourceImpl.start(XAResourceImpl.java:162)
    [#|2005-01-09T15:35:57.167+0800|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5027:Unexpected exception in resource pooling
    javax.transaction.SystemException
         at com.sun.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:185)
         at com.sun.enterprise.distributedtx.J2EETransaction.enlistResource(J2EETransaction.java:360)
         at com.sun.enterprise.distributedtx.J2EETransactionManagerImpl.enlistResource(J2EETransactionManagerImpl.java:303)
         at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:115)
    [#|2005-01-09T15:35:57.177+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5117 : Failed to obtain/create connection. Reason : javax.transaction.SystemException|#]
    [#|2005-01-09T15:35:57.227+0800|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=17;|RAR5114 : Error allocating connection : [Error in allocating a connection. Cause: javax.transaction.SystemException]|#]
    [#|2005-01-09T15:35:57.237+0800|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=17;|EJB5071: Some remote or transactional roll back exception occurred
    com.sun.jdo.api.persistence.support.JDODataStoreException: JDO77006: SQL exception: state = null, error code = 0.
    NestedException: java.sql.SQLException: Error in allocating a connection. Cause: javax.transaction.SystemException
    FailedObjectArray: [[email protected]5ac]
         at com.sun.jdo.spi.persistence.support.sqlstore.impl.TransactionImpl.getConnectionInternal(TransactionImpl.java:1444)
         at com.sun.jdo.spi.persistence.support.sqlstore.impl.TransactionImpl.getConnection(TransactionImpl.java:1339)

    Hi annie,
    Wherever you are handling database transactions,
    you'd not be able to create a Connection if database
    is closed (I think you mentioned turning off the
    database) then at this condition, you should
    certainly throw a System level exception and stop all
    processing with some meaningful flow to indicate a
    failure (like display message on UI). Even
    network problems are handled by exceptions... so I
    don't see a reason why you didn't wrap it in the
    first place.
    Anyway, try handling specific exceptions rather than
    the general Exception... this will give you a better
    idea of what to do in case of an exception.Yes i know this. I am practicing this in my non-j2ee server applications. But the j2ee app im making, i just pass the db url in the descriptor and the app server automatically creates the connection for my app. So where would i put exception handling?
    2. how can i stop my MDB from processing the same
    message?Guaranteed delivery is not supposed to stop
    processing. It will continue to process the message
    after certain intervals till the message is
    delivered. You shouldn't deliver it at all, if you
    are able to detect that the database is off
    The problem here is that my MDB automatically retrieves the message from the JMS queue server. Im not the one retrieving the messages manually.
    My assumed behavior of topic MDB is once the a certain MDB retrieves a message it will not retrieve the same message anymore.
    thank you in advance.
    leigh

  • Can EJB and BC exist at the same time in one project?

    having to use ADF's BC and EJB to access data in both way due to the special requirements, but I am always getting the deployment failure.
    can Ejbs and BC components exist at the same time in one project?

    thanks for your reply.
    I considered to separate the BC and EJB as the separate project. I just use the EJB component to implement the dynamic tree menu, whether a little make a mountain out of a molehill if you as a separate project.

  • Satellite A300-1N9 - Where can I download Windows 7 drivers and tools?

    Welcome
    At the outset I want to thank you for any help or steer me to an idea about the drivers for this model, for a moment I will describe what exactly it.
    I bought this laptop with Vista I got him a CD with the system and on this record were already drivers and add-ons to your laptop or other cool things such as Toshiba drivers for camera, Bluetooth, Synaptics, dvd software, and a program or driver I do not know exactly what it is, but such a cool thing that allows you to set the lights on the whole panel, including a laptop with the word "Satellite". Everything fits nicely, but only with Vista that I got on the board from Toshiba.
    Now, I went on Windows 7 As for the fundamental drivers that have them from the manufacturer Toshiba eg driver webcam or mouse. But the more I depend on these great things that I had under Vista, even though that panel backlighting laptop.
    Does anyone have any idea on this that all additives in the CD that I got, where it is Vista, you can somehow extract these extras, or is a site where you can download it all, or a list of these additives to Win match 7
    Thanks in advance again for any help.
    Yours
    wolfmark

    Hi
    First of all you can download all drivers and tools from the Toshiba website:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Download Drivers
    For the illumination buttons and illuminated Satellite you have to install Toshiba Value Added Package. It activates also all functions on the FN keys.
    As far as I know the illumination can also be turned on/off in BIOS. Check this!!!
    The webcam driver is also listed on the Toshiba page and touchpad driver to enable virtual scrolling.
    I hope I could help you a little bit! :)
    Bye

  • Recovery and Tools partition problem

    Hi;
    My Elitebook 8460p recover and tool partition deleted I want to recover my hard drive factory default but i can't find any rescue DVD.
    Please help me..

    Welcome to the HP Forum!
    mgs_mgs wrote:
    Hi;
    My Elitebook 8460p recover and tool partition deleted I want to recover my hard drive factory default but i can't find any rescue DVD.
    Please help me..
    That is indeed unfortunate. You will need to order a recovery disk set from HP or an HP Partnet. Here is how to order a recovery disk set.
    Kind regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • I do not know if I hit a botton or what but the top of the tool bar where the bookmarks and tools tabs are is gone. How do I get it back?

    Bookmarks and tools tabs are gone???

    If your Menu Bar, all Toolbars, <u>'''''and Tabs'''''</u> are gone, you are probably in Full Screen Mode. Tap F11 one time to turn Full Screen Mode on or off.
    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M
    <u>''Windows'' Method 2.</u> Press and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar.
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''You'''</u> ~~red:<u>'''MAY'''</u>~~ <u>'''need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Start > Program Files, find and click Adobe Reader to open, click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Third party setup and config softs, utils and tools.

    Hello everyone,
    I found, as expected, a lot of If-Then-ElseIfs in setting up servers, sure there's the worksheets, hords of PDF and Docs, video trainings, but what's more interactive?
    Example: For FileMaker Pro, there are third party softwares like WiM's Analyzer which gives new insights to FMP.
    Where are compared sets of soft, utils and tools for Mac OS X Server Tiger and/or Leopard?
    I searched out but still feel I haven't found the "Why did I not get this in the first place" list of things.

    Maybe my question is too general or the answers already on the web.
    My best wish is to find a software in which that I could drag and drop computers, airports, other switches and OSes and click on it to configure in order to design networks, server and clients, Mac, Win and friends.
    The Visio cousin somehow.
    I received Leopard server today. Oh joy!

  • How do I change the size of file menu's and tool icons in Photoshop' opening page.

    How do I increase or change the size of file menu's and tool icons on the opening page/worksheet of Photoshop? The File Menu drop down commands read properly at a comfortable size. I am not sure how I accomplished this, but everything I have tried has no effect on the other page items.

    Hello, you can change most of Photoshop's interface text by going to preferences>interface>UI font size.
    For the size of the top menus and the whole interface, there is no function to do that for the moment. I suggest to vote on this thread: http://feedback.photoshop.com/photoshop_family/topics/problem_with_hi_res_monitors

  • Indesign cs6 menu and tool bar disappear between windows using mission control in mountain lion

    heres 2  screen grabs before and after. while navigating between 'spaces' using mission control in mountain lion. issue -  the menu and tools bars disappear - not all of them just parts of them. to get back i hit 'tab' button twice which hides and shows tools. very annoying - does anyone know of a fix or is this another bug which i have to live with. im using a macpro june 2012/running 10.8.4 and 2 screens - left for artboard - right for all tool windows.

    thanks steve - yes that works as does using the tab key - all well....until i move to another 'space' and then come back again.
    for example: my setup is like this - no2 space has indesign project. no3 space has photoshop. so im working on a page within indesign and i need to edit an image- i double click the pic and it opens in photoshop on the other 'space' save the file and go back to indesign to update pic and find menu/tools all over the place - so hit tab twice back to normal -  until i 'move' out of that space into another - photoshop/ mail/ whatever - as i toggle between spaces the indesign menu will always be 'corrupt' for a better word. hope that makes sense.

  • WLS 8.1 two domains with EJB and webapp deployed has JVM conflicts?

    Test configuration environment:
    Windows 2003 server installed with weblogic 8.1 server and oracle 9i.
    This weblogic server have two domains, one is for EJB deployment, the other is a webapp that implements accessing to oracle through EJB.
    The issue is when we tested a method provided by the EJB that uses double to calculate some total value, the result was correct. But when we tested it using webapp that was deployed on the same server of EJB, it's result was negative or zero.
    I think the reason is that the JVM which both EJB and webapp used for calculation was the same and may made some conflicts when they run at the same time.
    Any suggestion would be greatly appreciated.
    Thank you in advance!
    Shuaibing
    Message was edited by:
    linuxapple

    This morning I deployed that webapp to the Domain that deployed the EJB, The results of calculating in webapp's jsp was correct.
    Any one be kind enough to tell me what the calling JVM differences between single domain(deployed by EJB and webapp) and two domains (deployed EJB and webapp separately)?

  • What's happening to my menu and tool items?

    After updating Acrobat Pro to Acrobat Pro DC yesterday I've had some issues regarding my menu and tool items being saved. I work in design/print so like to have things set up for what I use the most.
    I added and deleted tools to the right hand side bar and then added items to the top menu bar via the View > Show/Hide > Toolbar Items > (File, Edit, Page Nav, etc) method.
    Have fired up Acrobat today and now they've gone - it's back to the default settings. In addition, my preferred Save as Optimised PDF settings have defaulted too.
    I noticed this happened during a recent upgrade to Pro X, it was a pain to reset but at least things were back to how I like it.
    Am I missing something?
    Mac OSX Yosemite 10.10.2 with all software up to date.

    Hey markc60921144,michaelo51621764markc60921144
    I am really sorry as I misunderstood the query.
    This should not have happened as those settings should have been saved.
    Could you please try installing Acrobat DC again and check.
    Regards,
    Anubha

Maybe you are looking for

  • Images Won't Display in One Folder

    I am using Lightroom 2.4 with Vista Ultimate (Service Pack 2) 64-bit.  My drivers are up to date and I am not aware of having changed any settings lately. I have one folder (out of many dozens) with 72 photos (out of 19,000) that will not display the

  • Powerbook g4 case

    hi, i need to change my powerbook g4 1ghz dvi case, both top and bottom sides, where can i find a place to buy this parts? i am not sure if it's allowed to answer to this on the forum but don't know what to do .

  • Employees' photo cann't be showed in portal MSS. Can anybody help me?

    Our portal system met one urgent problem in MSS for providing employee's photo from ECC6.0 system to portal. It is like that: some of our portal mss accounts, who are department managers, can not see their employees' photos in the portal page through

  • Iphone 5 is showing usb to itunes on the screen

    iphone 5 is showing usb to itunes on the screen

  • Smooth render/new to after effects plz help

    Hey everyone, Hope you guys can help me out. Im so fed up with my situation. I have older 720 x 576 video avi clips that I wanna use. I use the same source fps to render it, same size(best settings) and after it's rendered, the video doesn't look tha