Only one usage of each socket address is no normally permitted....

I am getting the below error?
In logs the below error is showing:
java.lang.Exception: Socket bind failed: [730048] Only one usage of each socket address (protocol/network address/port) is normally permitted.
Could you please give some idea to sort out the below issue.
Thanks in Advance.
Hi All,
I m new to JSF, spring and Hibernate web application. I have done a web project using JSF, Hibernate and Spring. We have to maintain the Data records which is stored in mysql db. Now there are different table is there such as example Employee Details and Company Details. So we created two seperate application o tomacat, For both Application we use same functionality except the JSP FILE Name and table name (Which is changed according to Application).
In the employee.hbm.xml
I changed the table name.
Now while running the application on the tomcat server, only one application is running at a time. if we start running the Employee Application, then Company Application is giving the below error,
Error:
The Company is not Available
Error in Log:
The resourse is already in used/busy. or JNDI error.
Could you please help us, how to overcome the error,
Is it not possible to run both the application on different browsers.
Thanks in advance.
Saratha.

Saratha wrote:
I am getting the below error?
In logs the below error is showing:
java.lang.Exception: Socket bind failed: [730048] Only one usage of each socket address (protocol/network address/port) is normally permitted.
Could you please give some idea to sort out the below issue.
Thanks in Advance.The port is already in use by another process. Apparently you've another process (the same or another kind of application server) running at the same port.
This problem is completely unrelated to JSF.
Hi All,
I m new to JSF, spring and Hibernate web application. I have done a web project using JSF, Hibernate and Spring. We have to maintain the Data records which is stored in mysql db. Now there are different table is there such as example Employee Details and Company Details. So we created two seperate application o tomacat, For both Application we use same functionality except the JSP FILE Name and table name (Which is changed according to Application).
In the employee.hbm.xml
I changed the table name.
Now while running the application on the tomcat server, only one application is running at a time. if we start running the Employee Application, then Company Application is giving the below error,
Error:
The Company is not Available
Error in Log:
The resourse is already in used/busy. or JNDI error.
Could you please help us, how to overcome the error,
Is it not possible to run both the application on different browsers.
Thanks in advance.
Saratha.What is this? Why have you copypasted the question of your another topic? [http://forums.sun.com/thread.jspa?threadID=5332093]

Similar Messages

  • How to resolve error 'The DPMRA service terminated with service-specific error Only one usage of each socket address (protocol/network address/port) is normally permitted'

    One of my exchange 2010 servers dpm agent is give the following error when the dpmra service attempts to start.
    The DPMRA service terminated with service-specific error Only one usage of each socket address (protocol/network address/port) is normally permitted..
    I have tried uninstalling/reinstalling the agent but this does not resolve the issue
    Any help would be greatly appreciated.
    Thanks
    William Hickson

    Hi
    Something has probably changed on the protected server side that affects the DPM agent. In some cases the DCOM configuration could change. Look at this blogpost and verify your DPMRA DCOM object.
    http://robertanddpm.blogspot.com/2010/08/dpm-ra-rights.html
    If this doesn't do the trick try reinstall the agent.
    Best Regards
    Robert Hedblom
    MVP DPM
    Check out my DPM blog @ http://robertanddpm.blogspot.com

  • I have several groups on my Mac Address Book and would like to sync only one group to each IOS5 device (each device getting a different group).   Is this possible?

    I have several groups on my Mac Address Book and would like to sync only one group to each IOS5 device (each device getting a different group) via iCloud.   Is this possible?    If so, how is it done?
    Thanks in advance,,,,,

    Can we control syncing at all? I can't seem to make a Local/On My Mac group in Address Book.

  • Get only one row for each kind of a column

    hi there!
    i have a little problem.
    I have a table with 10 columns. One of them has repeated values. My goal is to get all the rows with this column only one time for each values that it has.
    Ex:
    Col1 Col2 Col3
    A A A
    B B B
    C A C
    D C D
    Column 2 has repeated values. My goal is to get:
    A A A
    B B B
    D C D
    Only one time each value of column 2.
    Thanks guys! ;)

    SQL>  CREATE TABLE Tbl (col1 VARCHAR2(1),col2 VARCHAR2(1),col3 VARCHAR2(1));
    Table created.
    SQL> INSERT INTO Tbl VALUES ('A','A','A');
    1 row created.
    SQL>              INSERT INTO Tbl VALUES ('B','B','B');
    1 row created.
    SQL>              INSERT INTO Tbl VALUES ('C','A','C');
    1 row created.
    SQL>              INSERT INTO Tbl VALUES ('D','C','D');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> SELECT * FROM tbl t1
      2  WHERE
      3  rowid=(SELECT min(rowid)
      4         FROM tbl t2
      5         WHERE t1.col2=t2.col2);
    C C C
    A A A
    B B B
    D C D
    SQL> SELECT * FROM tbl t1
      2  WHERE
      3  rowid=(SELECT max(rowid)
      4         FROM tbl t2
      5         WHERE t1.col2=t2.col2);
    C C C
    B B B
    C A C
    D C DEdited by: Saubhik on Aug 3, 2010 1:31 AM

  • How do I program a NI 6602 card to send trigger pulses, one at each output port, triggered by an input trigger signal, using only one counter for each output port?

    Hello,
    I have managed to program a NI 6602 card in LabView to send pulses on three different output ports, one pulse on each output port (with individually chosen delays) for each input trigger pulse coming on a separate input port. It is the DAQmx Create Channel (CO-Pulse Generation-Time)-VI that I have used for this, see attached code. However, this VI controls both pulse delay and pulse width, and therefore uses two counters for each output port (although you only specify one counter in the VI input signals), as I understand.
    In my application though, I only need to have the delay chosen, the pulse width can be arbitrarily short, and thus I should only need one counter for each output port. How do I accomplish to program this in LabView?
    Best regards,
    Claes
    Attachments:
    Configure Side Camera Flash 1 Triggering.vi ‏47 KB

    Well you're welcome to do that--it will work just fine as long as you are configuring a start trigger.
    <rant>
    However, personally I really don't like putting multiple counter outputs in the same task.  I have seen so many people assume that the counter outputs would be synchronized due to having them in the same task when this is not the case (you need to configure a start trigger in order to synchronize the counter outputs even if they are in the same task).  This is the only case I can think of where multiple channels in a DAQmx task are not automatically synchronized.
    As an example:
    Running this on my PCIe X Series gives a measured 2 edge separation of 1 ms + {7.78 us - 10.11 us}.  This would likely be much worse on a bus with more latency (e.g. USB).
    The resulting output is close enough to what you might expect that it might go unnoticed, but really these counter outputs are not synchronized and it would be easy to glance at the code and not even think twice about it.  For the small amount of extra work on my end to create a separate task for each counter, it really clears up some ambiguity about what the counters are actually doing.  For me it's worth it.
    So again, for your case there really isn't a problem with having the counters in the same task since you are using an external start trigger anyway.  I have just gotten in the habit of avoiding doing this.
    </rant>
    Best Regards,
    John Passiak

  • Do you copyemail from a PC running windows live mail? I have attempted to use Thunderbird and was successful in converting the live mail files to Mbox format but when I tried to import these files to the Mac only one message from each file was shown.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

  • Importing only one copy of each photo from iPhoto?

    Hi all,
    I'm using Aperture 1.5.2, and I'm trying to import my pictures from iPhoto. However, for each image that I've edited with iPhoto I get a two-photo stack containing the original and the edited version. Is there any way I can import my photos so that in this case, only the edited version is imported?
    Thanks in advance for any pointers!
    MacBook Pro (Core 1 Duo)   Mac OS X (10.4.8)  

    hello, ben
    quote: "I'm using Aperture 1.5.2, and I'm trying to
    import my pictures from iPhoto. However, for each
    image that I've edited with iPhoto I get a two-photo
    stack containing the original and the edited
    version."
    http://docs.info.apple.com/article.html?artnum=302903
    That's a good solution. However, I have recently been through all my copies of images that I imported from iPhoto. I found that in some cases I was not happy with the result of the edited version, and others the edited version was fine, so I did not consistantly remove the same version of each image.

  • Only one website loads, if another address is entered in the bar, Firefox doesn't respond at all.

    I am unable to access any site in Firefox bar one. the address bar shows a small square symbol in place of the Firefox icon next to the address when you hit the go button. There is no apparent response at all.
    Internet explorer is working fine through the same network.
    Device is a Galaxy Tab 3 7 inch.

    Hot key '''<Control> O'''
    You may find an add-on that can place an icon on your toolbar.
    Go to the '''[https://addons.mozilla.org/en-US/firefox/ Mozilla Add-ons Web Page]''' {web link}
    (There’s a lot of good stuff here) and search for what you want.

  • Allowing only one response from each emailed form.

    I am interested in creating a survey/voting scenario and allowing people to submit their responses including their vote.  My issue is that as the program stands now a person could actually fill out their form multiple times and submit multiple votes.  Is there a way to limit the responses from each emailed form to one?
    Thanks

    This was answered here: http://forums.adobe.com/thread/1109120?tstart=0

  • Is it possible to require a security password to be entered only one time for each instance of a pdf

    How I imagine it to work:
    I receive a secured pdf; I open it and enter the password. I am able to open the pdf again without password restrictions. If I copy the pdf I am required to enter a password the copy

    Passwords are set when the document is created in Acrobat, and as far as I know they MUST be applied each and every time the document is opened. In other words, it doesn't and can't use cookies to remember that you've already entered it, because there are none in the OS.

  • PR created by MRP only one item each PR

    Hi Gurus,
    I ran MRP using T-Code MD01. Running succesful. But when I check PR created only had one material each PR, so too many PR Created in the system.
    The requirement is How can we run MRP then PR created in lot (each PR has many items) ? I've set in configuration (T-code: OMI8) to specify items in each PR created. But still only one items material each PR created.
    Any suggestion ?
    Regards,
    Tri W

    Hi Tri,
    This is standard SAP behaviour and you cannot change it as per my best knowledge.
    When you create PO you can convert several PR into one PO. You can even convert several PR into one PO item (as separate schedlue lines provided vendor, material, etc are the same).
    (PR is only for internal use,)
    Regards,
    Csaba

  • Tacacs authentication fails for one user account for only one switch

    Hi,
    I am having an scenario, where as Tacacs authentication fails for one user account for only one switch.
    The same user account works well for other devices.
    The AAA configs are same on every devices in the network.
    Heres the show tacacs output from the switch where only one user account fails;
                  Socket opens:        157
                 Socket closes:        156
                 Socket aborts:        303
                 Socket errors:          1
               Socket Timeouts:          2
       Failed Connect Attempts:          0
            Total Packets Sent:       1703
            Total Packets Recv:       1243
              Expected Replies:          0
    What could be the reason ?
    No errors on ACS server; same rights had been given to the user account.
    Thanks to advise.
    Prasey

    Hi there,
    Does the user get authenticated in the ACS logs?
    reports and activity----> failed attempts
    ro
    reports and activity----->  passed authentications
    That will help narrow it down.
    Brad

  • Marking only one of two quizzes for bilingual content - Captivate 4

    I'm trying to create bilingual content with Captivate 4 that has a language selection screen and then a French quiz or an English quiz but only score one of them for the LMS (Saba 5.4 SP2).
    I can create a multi-Scorm package but the LMS will score against the total of both quizzes even if you take only one ie. if each quiz is out of 100 the lms will score out of 200 so that you can only get a maximum of 50% if you complete only one quiz.
    Is there a way to edit the imsmanifest so that only the quiz that is taken is scored against?

    I know of no way to do this without having two totally separate courses.  One in English, one in French.  I think your better option is to have the user make their language choice BEFORE entering the course itself, rather than trying to manipulate scoring and content WITHIN the course.  Having two different languages in a single course, when only one of them is actually going to be reuqired by the learner, is likely to require a much heavier download that is really necessary.

  • Only 1 expanded node each time - MenuTree

    I use a <af:menuTree> component with 2 level nodes.
    How can I put only one expanded node each time (of first level). By other words, when I expand 1 node (first level) the others expanded nodes must not be expanded automatically ?
    Thanks,
    Sérgio Morais

    Sergio,
    managed bean:
    package adf.test;
    import java.util.Set;
    import oracle.adf.view.faces.component.core.nav.CoreMenuTree;
    import oracle.adf.view.faces.event.DisclosureEvent;
    import oracle.adf.view.faces.model.PathSet;
    public class MenuTreeBean {
    public MenuTreeBean() {
    public void onDisclosure(DisclosureEvent disclosureEvent) {
    CoreMenuTree cmt = (CoreMenuTree) disclosureEvent.getSource();
    Object rwKey = cmt.getRowKey();
    //quick and dirty check for tree level
    if (rwKey.toString().indexOf(",") == -1){
    PathSet ps = cmt.getTreeState();
    Set ks = ps.getKeySet();
    ks.clear();
    ks.add(rwKey);
    JSF tree
    <af:menuBar id="mbar">
    <af:menuTree value="#{bindings.DepartmentsView1.treeModel}" var="node"
    disclosureListener="#{menuTreeBean.onDisclosure}"
    id="menutree">
    <f:facet name="nodeStamp">
    <af:outputText value="#{node}" id="nodeId"/>
    </f:facet>
    </af:menuTree>
    </af:menuBar>
    Frank

  • Multiple parameters one row for each record

    I have this query I want the user to be able to allow the user to enter multiple MATL_CODE_MOD as a parameters, the problem is that the GURMAIL table have multiple records one for each GURMAIL_MATL_CODE_MOD, so it will give me duplicates.. How I can code this, so I can allow the user to enter multiple MATL_CODE_MOD codes, and have only one row for each record...
    and GURMAIL_MATL_CODE_MOD in ('8IBC','8IBD')
    select
    spriden_id,        
    spbpers_name_suffix   name_suffix,
    spbpers_name_prefix   name_prefix,
    spriden_last_name     last_name,
    spriden_first_name    first_name,
    spriden_mi            mi,
    srbrecr_term_code,
    srbrecr_majr_code,
    srbrecr_program_1,
    saturn_midd.utlq.f_matl_code_type(srbrecr_pidm)
    FROM
    saturn.srbrecr,
    saturn.spriden,
    saturn.spbpers,
    SATURN.SPRADDR,
    general.gurmail
    WHERE
    spriden_pidm = srbrecr_pidm
    and gurmail_pidm = spriden_pidm
    AND spriden_pidm = spraddr_pidm 
    --and srbrecr_term_code = decode(p_term  ,'%',SRBRECR_TERM_CODE,p_term)
    and spbpers_pidm = spriden_pidm
    and spriden_change_ind is null
    --and gurmail_matl_code_mod
    and SRBRECR_PROGRAM_1 = 'CMQ'
    and GURMAIL_MATL_CODE_MOD in ('8IBC','8IBD')
    --AND SPRADDR_ATYP_CODE = 'CM'
    AND SPRADDR_STREET_LINE1 IS NOT NULL;

    Hi,
    SELECT DISTINCT ...will keep duplicate rows out of the result set.
    Depending on your data, another possibility might be to not join the table that contains GURMAIL_MATL_CODE_MOD. Do an EXISTS sub-query on that table instead.
    If you need more help, post some sample data from all the tables, and the results you want from that data.
    Simplify, if possible, You can probably post a problem with 2 or 3 tables, each with 2 or 3 columns, that will have the same answer.
    Edited by: Frank Kulash on Apr 22, 2009 2:28 PM

Maybe you are looking for

  • How to extract required data from a column to a flat file

    my ssis package is working OK. However, I want to refine one of the column extraction. when data is extracted to the flat file, I just want to the initials, firstname, lastname e.g. FZ = Ben Smith, Add1, add1, etc the only bit that i want is  Ben Smi

  • IPOD reboots when playing AAC format material

    Bought the G5 IPOD two weeks ago and everything about it is great except... it will not play any AAC formatted material. I copied my purchased iTunes music and audiobooks to the IPOD and every file causes a reboot at some random point during playback

  • How do I restore data to a new mac with windows boot camp partition?

    Hi I have a new iMac and an old MBP, I'd like to copy all of the data of my old MBP to the iMac.Would doing that affect the windows boot camp partition? and how do I do it?  right now im backing everything up on my MBP using super duper both the MBP

  • Sorry, something went wrong and Word was unable to start (6) Office 2013

    Ok this is just so annoying. Whenever I try to open Word, it gives the error "Sorry, something went wrong and Word was unable to start.(6)". Other office applications either freeze or crash. Only Excel works fine. Running Win7 64 bit. Tried all possi

  • How to Compare two strings in PL/SQL

    Hi All, I need to compare two strings whether they are equal or not in PL/SQL.Is there any function to comparing the strings.