UDP vs TCP (hands-on experience required)

Dearest colleagues,
I've done a few hours of research learning what I can about TCP vs UDP. I could still use some input from those of you who have used both in real-world, scaleable, distributed, commercial, and successful projects.
I have a new position at a new company. My part of this project consists of 3 types of distributed Java server programs: desktop client, data server, and controller server. Thousands of desktop clients will be periodically transferring "megs" of data to several data servers. The (singular) controller will persist metadata into a database, and also coordinate data transfer between the desktop clients and the data servers.
TCP seems appropriate for all "control" and metadata communications between all these components. Everyone talks to the controller for everything, except for the periodic transfer of the "actual" data. The desktop clients send that data directly to the appropriate data server using either UDP or TCP.
One key project requirement is the ability to provide network throttling control, so as not to saturate the client's LAN or WAN. This product mustn't disrupt the client's real-time network data (like VoiP and video conferencing). I expect the controller server to manage this.
Someone with more seniority than me at this company has suggested TFTP (which uses UDP) as the best protocol for the data transfer protocol. This person also claims that UDP allows larger packet sizes and less protocol overhead, resulting in greater data transfer rates than TCP.
I have a number of concerns and questions:
1) Can't the packet sizes be set for both UDP and TCP? If so, can't one equal both (in terms of average overhead) just by adjusting the packet sizes?
2) I realize that one needs to accomodate UDP droppage in order to compare throughput with TCP. In a LAN environment is it reasonable to assume that droppage would be minimal or zero? )Otherwise wouldn't it be a LAN problem someone would be fixing?)
3) If #2 above allows me to assume minimal UDP droppage, does the underlying packet protocol overhead difference give UDP a substantial throughput advantage? If so, how much (roughly)?
4) I believe UDP packets are treated as "high priority" but "low reliability". For my application, doesn't that mean that UDP is more likely to cause problems by competing for VoiP and VidCon bandwith?
5) What about trying to write my servers to allow for either UDP or TCP to be
used for data transfer? If you have done this, would you recommend for or against it? Why?
6) If you had to recommend just one book for me for right now (given this project), which would it be:
6a) Java Distributed Computing (O'Reilly) by Jim Farley
6b) Internetworking with TCP/IP by Doug Comer's
6c) Unix Network Programming by Richard Stevens
Being the New Kid on the Block at this company, I need to know all I can as I navigate the politics with this more senior person. I'm no newbie - I've been programming professionally for 27 years, the last 6 in Java including networking, sockets, JDBC, etc.
Thank you very much for your assistance.

Dearest colleagues,
I've done a few hours of research learning what I can
about TCP vs UDP. I could still use some input from
those of you who have used both in real-world,
scaleable, distributed, commercial, and successful
projects.
I have a new position at a new company. My part of
this project consists of 3 types of distributed Java
server programs: desktop client, data server, and
controller server. Thousands of desktop clients will
be periodically transferring "megs" of data to
several data servers. The (singular) controller will
persist metadata into a database, and also coordinate
data transfer between the desktop clients and the
data servers.
TCP seems appropriate for all "control" and metadata
communications between all these components.
Everyone talks to the controller for everything,
, except for the periodic transfer of the "actual"
data. The desktop clients send that data directly to
the appropriate data server using either UDP or TCP.Key feature of TCP is connection orianted and reliablity. If you need long sessions with high reliability TCP is the way to go.
(Long sessions means the client do multiple transaction through same session)
But reliablity of TCP comes at a cost. (Less bandwith efficiency) but of course if you need to transfer data I say TCP is better.
But if you want your clients need to work in unreliable network links (Onse that breakes down often) TCP might cause problems since you have to re establish the connection every time there is a problem.
Also if the sessions are short then UDP is better becouse if you Use TCP for very short sessions Connection establishment and closing can take more time that the actual data transfer.
But if you use UDP you must deal with the unreliability.
One key project requirement is the ability to provide
network throttling control, so as not to saturate the
client's LAN or WAN. This product mustn't disrupt
the client's real-time network data (like VoiP and
video conferencing). I expect the controller server
to manage this.It is true that TCP add more owerhead than UDP but in most cases compaired to the amount of data you transfer through network that is nothing.
Key to save the bandwith is to designe a efficint communication protocol which minimize the amount of data that you have to transfer.
Also you can Implement input/output streams which can limit the number of bytes that can be written or read through them. (Even though that got nothing to do with networking that will give you full control over the bandwidth usage by the programs)
Someone with more seniority than me at this company
has suggested TFTP (which uses UDP) as the best
protocol for the data transfer protocol. This person
also claims that UDP allows larger packet sizes and
less protocol overhead, resulting in greater data
transfer rates than TCP.TFTP is good for transfering small files through networrks since there is less overhead but when it comes to large amounts of data there is no much difference.
But TFTP have a advantage over ureliable networks.
(If the networks fails TCP connection fails, but in UDP a network faliour is just a loss of several datagrams which the programs anyways should be able to handle)
I have a number of concerns and questions:
1) Can't the packet sizes be set for both UDP and
TCP? If so, can't one equal both (in terms of
average overhead) just by adjusting the packet
sizes?In tcp packet size is not a big issue since data are transfered through stream. Once the streams are open you can keep them opena as long as you want and send as many bytes as you want.
2) I realize that one needs to accomodate UDP
droppage in order to compare throughput with TCP. In
a LAN environment is it reasonable to assume that
droppage would be minimal or zero? )Otherwise
wouldn't it be a LAN problem someone would be
fixing?)Even though UPD is said to be unreliable if the programs are written well. In a LAN UDP is almost as areliable as TCP(This is depend on the reliability of LAN)
Thats why it says when you write UDP applications you must test them in slow unreliable Wan links.
3) If #2 above allows me to assume minimal UDP
droppage, does the underlying packet protocol
overhead difference give UDP a substantial throughput
advantage? If so, how much (roughly)?It depends
Ex:-
Lts assume UDB header is 25 bytes and TCP heade is 50 for simplicity
If your data size is 10 byte.
lets say UDP adds overhead of 5 bytes
now the efficiency is 10/(10+25) = 0.38
If TCP adds 10 overhead bytes
now the efficiency is 10/(10+50) = 0.16
lets doa the same calculation for 1000 bytes
UDP
1000/(1000 + 25) = 0.97
TCP
1000/(1000+ 50) = 0.95
So it depends on your application and data volume
4) I believe UDP packets are treated as "high
priority" but "low reliability". For my application,
doesn't that mean that UDP is more likely to cause
problems by competing for VoiP and VidCon bandwith?No Priority is set on IP level so it can be applied to both TCP and UDP
5) What about trying to write my servers to allow
for either UDP or TCP to be
used for data transfer? If you have done this, would
you recommend for or against it? Why?For data transfer I recomend TCP becouse reliability is important.
If you use UDP you have to handle reliability (Lots of programming)
6) If you had to recommend just one book for me for
right now (given this project), which would it be:
6a) Java Distributed Computing (O'Reilly) by Jim
Farley
6b) Internetworking with TCP/IP by Doug Comer's
6c) Unix Network Programming by Richard Stevens
Being the New Kid on the Block at this company, I
need to know all I can as I navigate the politics
with this more senior person. I'm no newbie - I've
been programming professionally for 27 years, the
last 6 in Java including networking, sockets, JDBC,
etc.
Thank you very much for your assistance.

Similar Messages

  • Hands on course requirement

    Good day,
    If I have completed 10g Administration I and II. Can I take the 10g RAC course to fulfill the hands on course requirement? even though the prerequisites for this course are:
    10g New Features for Administrators and
    10g Administration Workshop 1 Release 2

    user616051 wrote:
    Good day,
    If I have completed 10g Administration I and II. Can I take the 10g RAC course to fulfill the hands on course requirement? even though the prerequisites for this course are:
    10g New Features for Administrators and
    10g Administration Workshop 1 Release 2If you have passed 1z0-042 and 1z0-043 then my understanding is the 10g or even the 11g will fulfull the course requirement. (1 did 1z0-042+1z0-043+11gRAC to get my 10g OCP).
    The training course prerequisites indicate the level of experience the candidate should have to appreciate the training course. If yu've passed those exams and are a experienced DBA then you should have no problems (though you'll have to get your head arround RAC sequences and learn to think RAC on the course and you'll know the difference between a database and an instance for sure ;-) )
    (I think its good that the range of handes on courses for DBA admin OCP allows the candidate to choose either to pick a course that helps them prepare for the exam or to pick a topic that extends their knowledge if they understand the core exam topics well (and/or have passed the exam)).
    You've probably found this already, but authorative information is here : [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=244#3]

  • UDP vs TCP

    Hi,
    i want to create a very easy multiplayer shooter. At first view, it seems to be easy to program but:
    Positions of the players are transfered frequently by UDP. It is not fatal if one UDP package is missing ( the next one will come within milliseconds).
    But what if a player shoots? If the UDP package which transfers the shoot is missing, it would be fatal.
    Is it posible to use TCP for shots? Or is UDP still OK? Or do i have to use that shitty, hard reliable UDP?
    By the way, what's the difference of TCP and reliable UDP. why is TCP still used although there is a faster RUDP?
    thx,
    chr

    Fachmann wrote:
    Is it posible to use TCP for shots? Or is UDP still OK? Or do i have to use that shitty, hard reliable UDP?You could use UDP, but define your protocol to require a acknowledgement if the package is important (i.e. it contains a "shoot" information). Then you could retransmit if the package if you don't get a response soon enough.
    In fact you'd be implementing a (partially) reliable protocol on top of UDP.
    You could use a TCP connection for this. I don't know if it would be easier, 'though.
    By the way, what's the difference of TCP and reliable UDP. why is TCP still used although there is a faster RUDP? I ask differently: What were the reasons RUDP was developed? I've never seen it in actual use and it seems to be a niche protocol.

  • Hand on Course Required

    Well i want to ask a question regarding Hand on course requirement, i have some doubt please clear someone?
    1. If a person already working in real life in oracle database then this guy need any hand on course?
    2. I recently completed my ocp in oracle 9i dba but oracle not issue me my certificate then i enquire they told me you need to complete hand on course after that....
    3. I call my exam center where i completed my all exam the person told me boss you need to complete a module in oracle authorised center then i told him sir i am working in oracle 9i last 2 year so why i need a training after that he told me it is rule, i want ask all ocp or who are preparing for ocp exam it is necessary?
    4. After that this guy give me reference of an institute and clearly told me please mention my name to that center if you will go there for training, guys you also thinking the same yes this guy have a fix comission for providing a student for training, if not so why he call me more then 3 or 4 times?
    5. then i call the institute for training perpose and they told me at least 25000/ you need to pay for any one module i am socked?
    6. i prepare my all exam through my friend he is senior DBA in IBM and have more then 6 year experience so the institute faculty is better then the 6 year experience working friend?
    7. i think it is nothing oracle doing business and indirectly redusing there education value the reason if anyone your friend ask you about the oracle certification so what you suggest him dear this certification is only for rich person not for you because you can not afford that much amount for hand on course forget about if someone your friend help you to prepare for examination?
    i think oracle realy need to think about it, if i am wrong please correct me?
    thanks,

    user4898234 wrote:
    Well i want to ask a question regarding Hand on course requirement, i have some doubt please clear someone?
    1. If a person already working in real life in oracle database then this guy need any hand on course?Well, HOC is NOT at all related to this that you are working or non=working. I know so so many who are working from many years and still come up and tell me that with hot backups, datafiles get freezed. The HOC was designed in 2002(if I am correct in memory) to make sure that the person who would be an OCP, he should know the right and correct thins and to maintain the quality in training, it was made must to attend a course. So it doesn't matter whether you are working or not. OCM is meant for mostly working dbas' and it does have a very strict requirement for 2 advanced courses attendance before you can even send money for the exam registration.
    >
    2. I recently completed my ocp in oracle 9i dba but oracle not issue me my certificate then i enquire they told me you need to complete hand on course after that....They are correct. Any one passing ocp examz after September 2002 needs to do that.
    3. I call my exam center where i completed my all exam the person told me boss you need to complete a module in oracle authorised center then i told him sir i am working in oracle 9i last 2 year so why i need a training after that he told me it is rule, i want ask all ocp or who are preparing for ocp exam it is necessary?It doesnt matter what you think, its already there since last 7 years and there was a small note that was published in 2002 on Oracle's website explaiining the reasons for it. You may want to read the note available now.
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=99
    Once again, it doesn't matter that you are working or not. Its a rule to make sure that all the ocp has at least some level of quality training before they become OCP and I have seen that helped a lot. There were so so so many dbas in 8i timings. With this requirement introduced, only serious candidates now think about OCP.
    >
    4. After that this guy give me reference of an institute and clearly told me please mention my name to that center if you will go there for training, guys you also thinking the same yes this guy have a fix comission for providing a student for training, if not so why he call me more then 3 or 4 times?
    Don't get caught up in all these things. Don't you get calls for life insurance or free add on cell numbers too many times? Sales guys have to do all this. They are paid to do all this. Ignore all this and try to get enrolled.
    5. then i call the institute for training perpose and they told me at least 25000/ you need to pay for any one module i am socked?So you mean 25k is HIGH? Well, did you have a look at the pricing of OU for the same courses? Check this out,
    http://education.oracle.co.uk/html/oracle/1080544US/SCHED_MP.htm
    A coffee given at Starbucks is of a certain price and a coffee given at a local coffee shop is of a certain price. That's all! You need to pay the price where ever you go if you want to drink coffee. So be it Starbucks or some local shop!
    >
    6. i prepare my all exam through my friend he is senior DBA in IBM and have more then 6 year experience so the institute faculty is better then the 6 year experience working friend?I wont say anything about the company or about the friend. But I can tell you one experience where I had a guy in my class with 12 years of experience and he didn't know how buffer cache works? He argued with me for about an hour that LRU list and LRU mechanism are same and work areas is a term that I just made to "impress" them. It really doesn't any kind of rule that if you are working you are bound to know everything. Yes,hand on experience always helps but any one with any N years of experience doesn't mean that for sure shot, he/she knows it all. I have seen it happening time and time again unfortunately. You may work for just 2/3 years and know a lot more than 10 years old guy as it all would depend on where you work. Don't judge people from N number of years of experience alone.
    7. i think it is nothing oracle doing business and indirectly redusing there education value the reason if anyone your friend ask you about the oracle certification so what you suggest him dear this certification is only for rich person not for you because you can not afford that much amount for hand on course forget about if someone your friend help you to prepare for examination?
    And why you think that your friend would be knowing it all? I can guarantee this there would be at least 10 things in teh dba books offered by OU that he must have not read. Its a too big statement but I guess, you should have got my point. To stop people getting certified by having trainig from a single computer having old software with some one who gives a training after his job , oracle made all this conditions. Its not about being rich and poor. Its about being getting real and good training which is often missed in these kind of "friendly " trainings.
    i think oracle realy need to think about it, if i am wrong please correct me?You are completely wrong( I am not from Oracle) .
    You may want to read what Oracle's Director Certification has to say about this,
    http://blogs.oracle.com/certification/2009/07/oracle_certification_and_the_h_1.html
    http://blogs.oracle.com/certification/2009/07/oracle_certification_and_the_h.html
    HTH
    Aman....
    thanks,

  • How to forward UDP on TCP?

    Hey everyone,
    I'm behind a firewall that blocks all UDP (torrents, games...) requests.
    I usually ssh to my server and forward all the trafic to it using a transparent
    proxy application (sshuttle). I saw that openvpn handles UDP as well (sshuttle doesn't).
    I read the documentation of openvpn but I didn't understand which flags to use
    and which not to. Actually I suck at networking and I'm not even sure if the title of the question
    is correct (would explain why I couldn't find anything on the forum/online).
    So could you please help me out? and sorry for any mistake I did.
    Thanks

    OpenVPN, has two operating mode: tun and tap. Tun just tunnels IP traffic (UDP and TCP), while Tap acts like a real ethernet cable. To achieve this, OpenVPN has to make a network connection with the remote server. To do so, you have two choices again: UDP and TCP.
    What you want is probably tun+tcp, which will make the UDP traffic going into OpenVPN to be transmitted over the TCP connection and go out of the server as UDP.
    The config options are
    proto tcp
    dev tap
    The wiki entry (https://wiki.archlinux.org/index.php/Op … ll_OpenVPN) should work fine for you. Just don't forget to use "proto tcp" in both server and client configs. The default setup should be perfectly fine for you.
    As noted by brain0, tunelling UDP over TCP will cause higher latency on UDP. It should work fine for torrents, but the latency will be something 1.5x the latency from you and the server  + the latency between the server and the final destination of the UDP traffic. Gaming on that might be painful.

  • Oracle 9i Hands-On Course Requirement

    Hello all,
    I have finished all 4 exams for Oracle 91 OCP DBA certification and I need to take the Oracle 9i Hands-On Course Requirement. From what I understand from oracle website you have to attend a class from a list of approved courses at oracle university or oracle authorized center or an oracle partner and then
    1) the institute where you attended the course sends information about your attendance to Oracle. And oracle in turn verifies attendance.
    2) How long does it take for Oracle to verify that I attended that course if not taken at OU and
    3) How long does it take for Oracle to send me the final OCP certificate?
    4) Oracle website also mentions that a candidate needs to submit a form online and take a test at the prometric website.
    5) Is there a cost effective way of taking this course?
    I am trying to locate centers in US within New York City that offer the Oracle OCP Hands-On Course Requirement for Oracle 9i certification OCP DBA. I am specifically looking for an Oracle authorized center or partner in NY (as a cheaper option). I have been looking for hours on the oracle website and I am unable to find any specific information. I can only see oracle university locations or oracle partners who do not provide training
    for individuals. At this point I am quite frustrated and I would really appreciate any help.
    I want to quickly take the course and get my OCP certificate. Since I am planning to visit India, I thought of taking the course there as it would be lot cheaper ($200 Vs $750 for an online course in US). I talked to an institute in India and they tell me that I need to enroll for a course and then on completion they willvsend oracle all my details. There are no exams for the course. It will take a month for them to receive the certificate for the course and then I can apply for the OCP certificate to Oracle. (So are we talking about 2 months here for the certificate?)
    However when I spoke to a customer care rep at oracle uni, they gave me a complete different picture. They tell me that I need to enroll in a class which might be a max of 5 days and then I can get my OCP certificate within a week. I also need to give an exam for the course
    that I take.
    I am confused and I am unable to find any oracle authorized centers or partners in US in New York so I can call and confirm. If you have any information regarding this with the correct sequence, I would greatly appreciate it.
    Thanks in advance!
    Purvi.

    Hello Neil and 355099,
    Both your links are helpful and i was able to find the centers. I had earlier looked at the courses and schedules and assumed that the same offered by and Oracle partner or authorized center might be less money. Anyways in case some one wants to take the course outside US here's the link - http://www.oracle.com/education/partners/partners.html#5
    Thanks again,
    Purvi.

  • Oracle Certification and the Hands-On Course Requirement (Part 1)

    Some good info for many of you who are working on an Oracle certification: "Oracle Certification and the Hands-On Course Requirement" http://bit.ly/P1yyh

    Neha,
    One item that may be helpful for you is the Hands On Course Form Tutorial http://www.oracle.com/global/us/education/certification/pdfs/hands.pdf.
    ->How many Questions they ask in Hands on Course ?
    Different forms have a different number of questions depending on the path and number of courses that are approved to count toward the certification
    ->"when did you take it" , should I answer in duration or the Start date of batch or end date of batch ?
    You should provide the course start date
    ->What is "Course Facility Name"?
    The name of the facility where you took your course
    ->will i be asked to provide the order number which i get from oracle while registering the exam at oracle ?
    You will need your course enrollment number. This should be in the documentation that you received when you registered for the course
    ->is it correct Course Title - Oracle 9i DBA Fundamental II ?
    You should find your course title on your course completion certificate. There will be a list of courses to choose from on the "test"/form.
    ->I dont receive any certificate from SQL STAR , But will be getting after 3-4 weeks, in the mean time i wish to fill HOC ?Can i Do it ?
    Yes you can do it, you'll just need to be sure that you have all the information that is required >Course title, Course enrollment number, training location.
    ->Please give more questions which can be asked in it , whether it is known or not ?
    You will also need your Prometric ID.
    Regards,
    Brandye Barrington
    Certification Forum Moderator
    Certification Program Manager

  • Oracle Certification and the Hands-On Course Requirement" (Part 2)

    Part 2 to Tuesday's post now online: "Oracle Certification and the Hands-On Course Requirement" (Part 2)" http://bit.ly/L9ID8

    Neha,
    One item that may be helpful for you is the Hands On Course Form Tutorial http://www.oracle.com/global/us/education/certification/pdfs/hands.pdf.
    ->How many Questions they ask in Hands on Course ?
    Different forms have a different number of questions depending on the path and number of courses that are approved to count toward the certification
    ->"when did you take it" , should I answer in duration or the Start date of batch or end date of batch ?
    You should provide the course start date
    ->What is "Course Facility Name"?
    The name of the facility where you took your course
    ->will i be asked to provide the order number which i get from oracle while registering the exam at oracle ?
    You will need your course enrollment number. This should be in the documentation that you received when you registered for the course
    ->is it correct Course Title - Oracle 9i DBA Fundamental II ?
    You should find your course title on your course completion certificate. There will be a list of courses to choose from on the "test"/form.
    ->I dont receive any certificate from SQL STAR , But will be getting after 3-4 weeks, in the mean time i wish to fill HOC ?Can i Do it ?
    Yes you can do it, you'll just need to be sure that you have all the information that is required >Course title, Course enrollment number, training location.
    ->Please give more questions which can be asked in it , whether it is known or not ?
    You will also need your Prometric ID.
    Regards,
    Brandye Barrington
    Certification Forum Moderator
    Certification Program Manager

  • Hands-On Course Requirement: Applicability

    Do Oracle Partners need to meet the hands-on course requirement? http://bit.ly/aGhDSn

    The direct link for the pdf is http://www.oracle.com/global/us/education/certification/pdfs/hands.pdf.
    Re: The Hands On Course Requirement Form

  • OCP 9i "Hands on Course Requirement"

    I work and live in the New York, Manhattan area.
    I have inquired to several computer schools about the
    OCP 9i "Hands on Course Requirement". They appear to
    have little or no ideas about what I am talking about.
    Can anyone point me to a reputable or at least knowledgeable training facility in the Tri-State area???
    Please send to my e-mail at [email protected] since I have been told by the IT department that the E-mail servers are going to going through some "Maintenance Updates"
    Thanks,
    Tommy

    Hello Neil and 355099,
    Both your links are helpful and i was able to find the centers. I had earlier looked at the courses and schedules and assumed that the same offered by and Oracle partner or authorized center might be less money. Anyways in case some one wants to take the course outside US here's the link - http://www.oracle.com/education/partners/partners.html#5
    Thanks again,
    Purvi.

  • UDP and TCP ports

    Hi:
    I have a question. As we know, scanning TCP ports is a lot eaiser than UDP ports because active UDP ports don't respond and there are other reasons as well.
    try{
    Socket soc= new Scoket(address, portnumber);
    catch(Throwable e){ System.out.println(e)}
    look at the code above, it can only tell you active TCP ports for the Throwable e tells you nothing about UDP ports. An active UDP port doesn' respond to the connection call "soc". Therefore it will throw an exception(connection refused) after trying to connect an active UDP port. This exception is just like those of closed TCP ports.
    What i am saying is that active UDP ports will be treated the same as closed TCP ports. They are hidden in closed TCP ports. How do i sift them out? Any solutions?

    I am basically trying to determine how many UDP and TCP ports on a machine are open. Open TCP ports are easy to see. But UDP ports are tricky. Can you please tell me more in detail using a datagram socket?

  • BEFW11S4 UDP AND TCP PORT opening

    How do i open UDP AND TCP ports specifically TCP ports: 80, 6667, 28910, 29900, 29920
    UDP ports: 4321, 27900 Its for a networkable game i need to open these ports to play it.

    Ok But when i try disabling the numbers in the forwarding field i run out of spaces in the field to be able to disable them Is there an advanced firewall settings that i dont know about? I put in all of the range forwarding and put the range forwarding start for example 80 originally (TCP ports: 80, 6667, 28910, 29900, 29920
    UDP ports: 4321, 27900) The ones i try to disable i run out of fields to disable them in the forwarding for example there are 10 slots for disabling and Im trying to disable them on two numbers 192.168.1.101. and 192.168.1.100 So i need to disable them for both ip numbers I got 10 fields to enter it into them and 10 x 2 is more than the numbers..... You get me?? and on top of that i dont know if what i did was enough Linksys doesnt want to help me without paying 30 dollars so im just thinking i should buy a new router....... i mean they charge 39 dollars for a new router and they want me to pay 39 dollars for tech support it just doesnt make any sense........

  • Hands-on experience with WebLogic

    I have been told to learn WebLogic. However, we do not have it installed on our system. I can read blogs and tutorials, but I was wondering if there is some way I can get some hands-on experience with WebLogic.
    A few months ago, I was told to learn about Application Express (apex), without it being installed on our system. I got an online account with oracle.com where I could practice apex. Is there a similar thing where I can learn WebLogic without it being installed on our system?
    Thanks, Wayne

    I hope going thru blogs, parallel practice various things in Oracle Weblogic will give you hands-on experience. Go thru following links it might help you to gain rough cuts for your destiny....
    1. http://bhavanishekhar.googlepages.com/weblogic
    2. http://sites.google.com/site/weblogicadminsite/
    3. http://wlstbyexamples.blogspot.com/
    Enjoy !! Learning Oracle WebLogic
    Regards
    Pavan

  • How to get hands-on experience with WebLogic

    I am a developer for a governmental agency. I have been told to become familiar with Oracle WebLogic. I am looking for a way to get hands-on experience.
    We do not as of yet have WebLogic Server installed, so Workshop for WebLogic is not an option. What do you suggest for a way to get hands on experience with this whole area?
    Thanks, Wayne

    I hope going thru blogs, parallel practice various things in Oracle Weblogic will give you hands-on experience. Go thru following links it might help you to gain rough cuts for your destiny....
    1. http://bhavanishekhar.googlepages.com/weblogic
    2. http://sites.google.com/site/weblogicadminsite/
    3. http://wlstbyexamples.blogspot.com/
    Enjoy !! Learning Oracle WebLogic
    Regards
    Pavan

  • Hands on Experience on Portals

    Hi All,
    Does anybody have hands on experience on Portals.
    I have few issues working with portals.I am new to this tool.
    Thanks and Regards
    Dola

    Hi,
    I have an issue in saving the variable(commodity) as my fovourities in the SAP Netweaver portal.
    If I go to a report in the portal and select the a particular varaible(commodity) as a portal favourite and try to save it as my favourities.It is not getting saved.
    Is there any way to save the variable in the favourities so that it would be easy to view the report based on that particular variable???
    Could you please help me out of this.
    Thanks and Regards
    Dola

Maybe you are looking for

  • Message no. MSITEM024 - List contains no data

    Hi everybody, I am facing a strange issue in FBL1N. Just today, when FBL1N is run the above message comes up. The Trade Creditors (Reconciliation) a/c is lint item managed. There are data. At the bottom it is displayed as xxxxx items selected, but no

  • How to set a row as default row in adf table

    Hi, I have a requirement: when page is launched there are multiple records with different status displayed on the page and i had to make the first record with Status = XXX as default selected row in adf table. How to code it? Thanks! Susan

  • Oracle.mds.core.ConcurrentMOChangeException: MDS-00165

    Hi people, I'm using Webcenter 11.1.1.4 in my WLS embedded, when I enable to preserve the customizations across applications runs I get the error when I navegate in my portal: oracle.adf.share.prefs.PreferencesRuntimeException: oracle.mds.core.Concur

  • When down loading new version i keep getting MSVCR80.dll not found and I now have no  itunes

    I have just up dated my i tunes and whenever i try to start it i get this essage : MSVCR80.dll not found and itunes refuses to open. i have tried re-installing etc but nothing works. Any ideas? muzz

  • Security Update 2007-004 - Won't restart since updating

    Like many of you out there I too am having problems with the latest update. (I'm writing this from another computer.) I downloaded the update and restarted my computer. All my start up items crash, finder won't launch, no menu bar at the top of scree