JAAS problem - credentials not forwarded...

Hi there,
My app looks like this:
Business layer is a spring/hibernate-based application with SLSB EJB working as session facade to some POJO hibernate-based persistance layer. It's deployed as EAR.
Client tier is a web application connecting to this service. Webapp is residing in the same server instance but NOT in the same EAR.
I am trying to use declarative security (have one role InternalRole defined as required for both: the EJB and it's methods). The problem is, that:
1. run-as within web.xml of myweb-app is not working
2. I use such code to set up login context:
System.setProperty("java.security.auth.login.config", "http://localhost:8080/Top7Web/jaas.config");
      logger.debug("creating loginContext...");
      UsernamePasswordHandler handler = null;
      handler = new UsernamePasswordHandler("top7internal", "qwe");
      LoginContext lc = new LoginContext("top7auctions", handler);
      lc.login();      And the thing is - it works for obtaining handle of service object but principle is NOT passed to business layer while trying to invoke some service method, which results in:
2005-09-17 21:40:04,811 DEBUG [org.jboss.security.auth.spi.UsersRolesLoginModule] Loaded properties, users=[top7internal]
2005-09-17 21:40:04,811 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] login
2005-09-17 21:40:04,811 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] Authenticating as unauthenticatedIdentity=null
2005-09-17 21:40:04,811 DEBUG [org.jboss.security.auth.spi.UsersRolesLoginModule] Bad password for username=null
2005-09-17 21:40:04,821 TRACE [org.jboss.security.auth.spi.UsersRolesLoginModule] abort
2005-09-17 21:40:04,821 TRACE [org.jboss.security.plugins.JaasSecurityManager.top7auctions] Login failure
javax.security.auth.login.FailedLoginException: Password Incorrect/Password RequiredAny sugestions what should I do to manually set credentials under which web-app should be connecting business tier?
TIA
Wojtek

I believe you are getting ORA-12638: credentials retrieval failed.
If you search on metalink for this, you will get many threads which address this issue in different ways.
Try it.

Similar Messages

  • Problem with call forwarding. Calls can not be forwarded for incoming external calls

    Hi Everybody, how are you?
    I have a problem with call forwarding. Everything was fine but now is not working.
    In the reception of an office, the receptionist activate the call forward option to an internal extension. If somebody, internal in the office, call to the reception, the call is forwarding to the extension configured. But if I call from the outside (in example, from my cellphone) the call is not forwarded to the extension configured and continue ringing in the reception phone. Why this behavior? Any idea?
    If you know something please tell me.
    Thanks. Best regards.
    Andres Collazos.

    I encounter a similar problem with 9.1.1.
    My problem is link to this bug ID : CSCtq10477.
    Mathieu

  • Problem while uploading the file page is not forwarding

    Hi,
    Please tell me the solution for this.
    I'm uploading the file, i'm getting the values very thing, but the page is not forwarding what happening i don't no.
    Here is the code.
    <HTML>
    <%@ page language="java" import="javazoom.upload.*,java.util.*" %>
    <%@ page errorPage="ExceptionHandler.jsp" %>
    <HEAD>
    <BODY style="font:'Bookman Old Style' size="3"">
    <jsp:useBean id="upBean" scope="page" class="javazoom.upload.UploadBean" >
    </jsp:useBean>
    <%
    // Uploading file code
    if (MultipartFormDataRequest.isMultipartFormData(request))
    // Uses MultipartFormDataRequest to parse the HTTP request.
         MultipartFormDataRequest mrequest = new MultipartFormDataRequest(request);
    String todo = null;
         if (mrequest != null) todo = mrequest.getParameter("todo");
         if ( (todo != null) && (todo.equalsIgnoreCase("upload")) )
                        Hashtable files = mrequest.getFiles();
         UploadFile file = (UploadFile) files.get("uploadfile");
              if ((file != null) && (file.getFileSize() <= 82000))
                        {System.out.println("<li>Form field : uploadfile"+"<BR> Uploaded file : "+file.getFileName()+" ("+file.getFileSize()+" bytes)"+"<BR> Content Type : "+file.getContentType());
                    // Uses the bean now to store specified by jsp:setProperty at the top.
                        upBean.store(mrequest, "uploadfile");
                        else
                        System.out.println("Not Uploaded");
    if (mrequest != null)
         String Schoolname= mrequest.getParameter("schoolname");
         session.setAttribute("saSchoolname", Schoolname);
    System.out.println("Schoolname     "+Schoolname);
    %>
                        <jsp:forward page="FileTransfer.jsp"/>
    <%     
         else out.println("<BR> todo="+todo);
    //System.out.println(session.getAttribute("saswrite"));
    String amessage = request.getParameter("passmsg");
    %>
    <form name='subregiform' method="POST" onsubmit='return checkForm()' action ="FileSubmit2.jsp" ENCTYPE="multipart/form-data">
    <table width="491" border="0" cellpadding="2" >
    <tr>
    <td width="171" align="right"><br> S.S.C  :</td>
    <td width="103" align="center">Institution Name
         <input type="text" name="schoolname" size = 12 maxlength = 35 value = <%
              if(session.getAttribute("saSchoolname")!= null){%>
         <%=session.getAttribute("saSchoolname")%><%}%>>     </td>
    <tr><td width="165"><div align="right">Upload Resume :<br> <br> <br></div></td>
    <td width="356"><input type="file" name="uploadfile" size = 20>
    <font size=1><br>    <I>(Only .doc,.rtf,.txt,.html)</I></font><BR>
       <% if (amessage !=null){ %><FONT SIZE="" COLOR="RED"><strong><%= amessage %></strong></FONT><% }%> </td>
    </tr>
    <tr>
    <td colspan="2">
    <p align="center">
         <input type="hidden" name="todo" value="upload">
    <input type="submit" name="Submit" value="Submit">
         </p>
    </td>
    </tr>
    </table>
    </form>
    </BODY>
    </HTML>

    This code is a mess! Don't put your logic and control into your JSP; use the JSP only for display!
    As for your error, it's because you can't forward after the response has been committed. An illegal state exception will be thrown except you can't see it in the browser because the server has already committed the response and can't change it now. You need to get rid of the forward action. Put in a link to that page instead. Or use a a meta tag to redirect.
    But really, this code cannot be modified to get rid of the problem. It should be scrapped and you should rethink your design. Have a servlet do your control and all this uploading code should also be put into a servlet; never in a JSP
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    Edited by: nogoodatcoding on Oct 5, 2007 2:56 PM

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • SQL MP - System Center Management Health Service Credentials Not Found Alert Message

    Hi Dears,
    I have read so many open cases, but I could not find solution to my situation...
    Error: System Center Management Health Service Credentials Not Found Alert Message
    Desc are 1 of those 2:
    An account specified in the Run As profile "Microsoft.SQLServer.SQLDiscoveryAccount" cannot be resolved.
    An account specified in the Run As profile "Microsoft.SQLServer.SQLDefaultAccount" cannot be resolved.
    Okay, I am fine, I  verify the RunAs account configuration and yes this is the problem... I was able to solve it for those SQL running servicec account using domain user account, I created the run as account, and assoistte it with SQL profiles,
    and it is fine....
    BUT, what about my 8 SQL Servers running SQL Service Account under System and Network accounts,
    so how Can I add this coz I cannot target all objects,so what shall I target (Object Health Service or WHAT)?
    Please I need it step by step coz I am not able to handle this issue....
    Thank you Guys

    Hi,
    If you have not distributed the Run As Account to a system, but we discovered SQL on it, you will see the error message.
    This condition may have occurred because the account is not configured to be distributed to this computer. To resolve this problem, please distribute the account to this computer if appropriate. You can refer to the following blog to distribute the Run As
    credential.
    Niki Han
    TechNet Community Support

  • Supplied credentials not accepted by the server and Could not validate SPNEGO token

    Hi,
    We have installed and configured SSO 2.0 SP02 on HP-UX system. We have exported the client policy files, root certificate from SLS and imported the same in the client PC. Then we have installed the SLC in client PC with logging enabled option. Now when we try to manually login using SLC we are getting the below error.
    In SLC - "Supplied credentials not accepted by the server"
    In Diatool - "Could not validate SPNEGO token"
    Attached the trace file from SLC and logs from diatool. Anyone suggest how to rectify this error.
    The trace file from SLC
    [2014.03.28 12:08:50.434][TRACE][sbus.exe            ][sbus.dll    ][  4856] CToken:: Secure Login token [toksw:mem://securelogin/Windows Authentication (SPNEGO) :: login
    [2014.03.28 12:08:50.452][TRACE][sbus.exe            ][sbusresloade][  4856] { GetLocale
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Send_Init
    [2014.03.28 12:08:50.453][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin::Send_Any
    [2014.03.28 12:08:50.515][ERROR][sbus.exe            ][BASE        ][  2800] ERROR(0xA0100017) in CRYPT->sec_crypt_cipher_get_cipher_len(): An attribute is missing
    [2014.03.28 12:08:50.563][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:08:50.563][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { CResourceManager::New
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { GetLocale
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.566][TRACE][sbus.exe            ][sbusresloade][  4856] { CResourceManager::Init
    [2014.03.28 12:08:50.568][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:08:50.568][TRACE][sbus.exe            ][sbusresloade][  4856] }        0
    [2014.03.28 12:09:00.979][ERROR][sbus.exe            ][sbus.dll    ][  4856] LogonUser failed with error 0x0000052e
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][Kerberos    ][  4856] Got kerberos ticket for 'HTTP/ssodev' with server key type 23 and session key type 23
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][BASE/RANDOM ][  4856] Get 8 bytes random data
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Send_Auth_SPNEGO
    [2014.03.28 12:09:12.628][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin::Send_Any
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] { CSecureLogin_Protocol_2_0::Handle_Auth_Response
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] }        0
    [2014.03.28 12:09:12.727][TRACE][sbus.exe            ][sbusslogin.d][  4856] } 80070005
    Regards,
    Yogesh Kumar D

    Hello Yogesh,
    With regards to the 2nd error "Could not validate SPNEGO Token"
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.security.core.server.jaas.SPNegoLoginModule                     SUFFICIENT  ok          exception             true       Could not validate SPNEGO token. Reason: No user with account attributes [[namespace=com.sap.security.core.authentication, name=principal, value=sap.helpdesk1, isCaseSensitive=false], [namespace=com.sap.security.core.authentication, name=realm, value=HZL01.VEDANTARESOURCE.LOCAL, isCaseSensitive=false]] found
    No logon policy was applied
    It means that the user "sap.helpdesk1" was decrypted from the kerberos
    token but there is no user with this name in the AS Java. The reason for that is a misconfiguration in the SPNEGO user mapping.
    Therefore, please open the SPNEGO wizard in the NWA and configure
    how AS Java should choose a user from the UME based on the received
    SPNEGO token. Here is some documentation about configuring the user
    mapping:
    http://help.sap.com/saphelp_nw73/helpdata/en/f4/1978c3a37a441b87a89d61c1a08689/frameset.htm
    Regards,
    David

  • AS2: MDN is not forwarded to PI (Integration Server)

    Hello,
    we still have some problems with the AS2 receiver configuration. FInally the AS2 message is sent out with request for synchronous MDN.
    We receive the MDN and it shows up in the seeburger message monitor (MDN: Payload state ok, correlation successful).
    However we want to forward the MDN to the Integration Server and checked therefore the flag "Handle received MDN - Refer MDN to XI system".
    I also configured the sender MDN channel and the sender agreement accordingly.
    However I do not see anything in SXMB_MONI , there is no error message either. So obviously the MDN is not forwarded as expected.
    Have you ever had similar problems? Any other settings I could check?
    Thank you for your advice!

    Make sure that you have created an AS2 Sender channel with Message Protocol Reports.
    Without checking this option, can you receive the sync MDNs in Seeburger Monitor?
    Regards,
    Prateek

  • Hiii . i have encountere a problem . my notes app are not syncing in my ipad and iphone . plz help

    hiii . i have encountere a problem . my notes app are not syncing in my ipad and iphone . plz help

    Hi marcmartineau,
    I'm not sure why this is happening, but I think I'm seeing the same thing. Many times when I get an email on the iPad or iPhone with a picture attached, I don't see the picture but instead just a placeholder icon.
    I have found a work around though to at least see the picture. If I forward it and include the attachment, I see the picture in the outgoing email. I can even save the image from the sending email if I really don't want to send it. If i do send it to myself, chances are I will see the picture in the email when I receive it even though it's just a resend of the original.
    weird.

  • SG200 Switch not forwarding Packet

    Hello,
    I have a problem with my SG200-08 Switch the switch not fowarding a special Packet.
    I try to run a simple Profinet installation for testing on the switch but it didn´t work correct. A special packet (Profinet error message) was not forwarded.
    I have tried it with different Profinet masters with Siemens Profinet master it works without of problems. With Rexroth master it dosn´t work. But it is the same packet only another Mac Address.
    I have added two Wireshark logs, where I have mirrored the slave and the master port. With the Siemens master all packets are forwarding (every packet is double loged) with the Rexroth master the alarm packet was not forwarding (the alarmpacket is lost between the ports).
    With a not managed Switch it is no problem too run both Installations korrekt.
    I have tried the Factory devault Settings of the switch and too deaktivate all services of the switch (like Spanning Tree, ..) but it was all the same, the Packet was not forwarded.
    Has someone a idea which is the cause of the packet drop?

    Hi Ulf, the switch doesn't filter traffic and this particular model doesn't have any special connection controls like ACL.
    Features that may be service affecting include-
    Spanning tree (portfast, bpdu flood/filter)
    Port negotiation (speed/duplex)
    Energy efficient ethernet
    Bonjour discovery
    Storm control (which is disabled by default)
    I couldn't think of anything else that may be service affecting. You may disable spanning tree, manually set the port speed, disable EEE and bonjour if you want. However, I don't feel it will resolve your problems but it is worth trying if you feel the switch is the problem. Since the packet is forwarding correctly, it would appear to be a localized system setting.
    -Tom
    Please mark answered for helpful posts

  • CUCM not forwarding CTI called number - Subscriber Sign-in

    I am running into an issue in CUCM/CUC 8.6(2a) when setting up external voicemail access.
    I set up a CTI RP (Dn=2300) to forward to voicemail and set up a routing rule to send the Call
    to subscriber sign in.  The call keeps going to the opening greeting.  I did a port status monitor
    and I don't see the forwarding stations directory number.  Just the Unity Pilot Point number.
    I just set this up in CUCM 8.6(1) and I have it working.  I mirrored the config but don't get the same results.
    I'm not sure if maybe a service parameter changed or something and I am missing it.
    TIA

    Thanks for sharing your findings Rob.  Your post helped me solve an issue I was having with a SIP trunk between CUCM and CUC.
    Just to recap in case this post can help anyone else, if you don't check the Redirecting Diversion Header Delivery -  Outbound then Call Manager will not forward calls with a redirect number or reason code to Unity.  Using RTMT Port Monitor you'll find the call will complete but as a direct call to Unity.
    The problem I was facing was CFNA (internal, external, etc) from a DN in CUCM to CUC would send the caller to the Opening Greeting, instead of the voicemail box of the user, which in this case was functioning properly because Redirecting Diversion Header Delivery was not checked.
    Thanks again to both Robs for your thread,
    Derek

  • Problem with Port Forwarding in WRT320N

    Good day.
    I have a web-server and Internet-radio translator to local network of my provider. And I found a problem with Port Forwarding. I'm trying to setup 80 & 8000 ports to forward. And it's working but only for Internet, without provider's local network. My web-server isn't accessible in local network and radio-translator too. 
    So is it possible to forward ports absolutely - for any type of connections? 
    P.S. DMZ is working like Port Forwarding.

    If you ask questions you have to mention that you have an PPTP connection to the internet and another network directly on the internet port. Otherwise noone will really understand your question as it is a very unusual setup.
    Your setup is not one really supported by the router. You are lucky that it works but don't expect too much. Port forwarding only the internet connection. If you use PPTP the network on the internet port is basically hidden. Using that local network on the internet port is not supported.
    The DMZ host is the IP address to which all ports are forwarded to which are not forwarded otherwise. The same restriction applies here.
    I would recommend to ask your ISP which router they recommend for their internet connection. I think most/all Linksys routers and many other brand's consumer routers won't really support a setup like yours...

  • WLC module in 2811 not forwarding wlan traffic

    Hi,
    i have a WLC module inside a 2811 router. everything is working (ap connecting, administration) except traffic from WLAN is not leaving the wlc to the router.
    The wlc is sending the dhcp packages to the default gateway (asa5510). See file wlc_dhcp.txt. The 2811 router isnt receiving the packace (at least a debug ip package didnt show it). Router interface config:
    interface wlan-controller1/0
    ip address 10.10.10.105 255.255.255.248
    interface wlan-controller1/0.18
    encapsulation dot1Q 318
    no snmp trap link-status
    bridge-group 18
    bridge-group 18 spanning-disabled
    interface Vlan318
    no ip address
    bridge-group 18
    bridge-group 18 spanning-disabled
    Whats wrong, why are the packages from vlan318 not reaching the router? Why are they not forwarded?
    thanks, Martin

    Why don't you use 2811 router as your gateway instead of the ASA5510?? I think it will be easier, cause your problem could not be of wireless, it seems that's a problem with your ASA to access your inside network.
    Hope this helps,

  • Problem with Port Forwarding (when PPTP is up) in WRT-160N

    Hi, everybody!
    I'm looking for some help with Port Forwarding in my new router from Linksys. I've bought the router afew daysago, and was badly surprised when I found out that there is DD-WRT firmware is installed in it (the router was 100% NEW when I've purchased it). I have downloaded the latest original Linksys firmware file and successfully flashed it.
    But I still have problem (same I had on DD-WRT firmware too) with port forwarding for my DC++ and Vuze (app for torrents): I've written port forward for ports 49151 (for Vuze) and 4000 (for DC++) to be forwarded to my desktop computer (IP 192.168.1.201) -- I've seen a post at this forum, that there could be a problem, if you forward to an IP, which is inside DHCP local zone, so I've forwarded it to .201 IP (my local DHCPzone is 192.168.1.100 - .149). But forwardind doesn't work ((
    What's wrong?
    My configuration:
    Router IP: 192.168.1.1
    PPTP (I've got it from my ISP)
    IP address: 192.168.226.127
    Default Gateway: 192.168.226.2
    DNS 1: 192.168.1.1
    DNS 2 & 3: 0.0.0.0
    PPTP Server IP Address: 192.168.226.2
    Username: ****
    Password: ****
    Single Port Forwarding:
    Application name     External port     Internal port     Protocol     To IP address     Enabled
    Vuze                       49151               49151             Both           192.168.1.201    Checked
    DC                          4000                 4000              Both           192.168.1.201    Checked
    Solved!
    Go to Solution.

    As you have mentioned in your post that your ISP has provided you a PPTP connection with an IP address: 192.x.x.x. The IP address which is provided to you by your ISP is in a Private Range, and if you try to forward any ports on your router it will not work, as your ISP modem will block that port. So you need to get a Public IP address from your ISP.
    As you are getting Private IP from your ISP, so this connection is called as NAT behind NAT, and your Modem is acting like a Router. 
    So now you have 2 options, get the Public IP address from your ISP or change the connection type. 

  • Spa3102 would not forward a voip call to pstn line

    Good morning.
    I've done the implementation provided here http://community.linksys.com/t5/VoIP-Adapters/SPA-3102-and-softphone-to-
    make-calls-via-pstn-line/td-p/326390 .
    It is a way to use for outgoing calls a given pstn line from anywhere I have internet (voip to pstn).
    The spa3102 is connected to a router (with an active DHCP server and ip 192.168.1.1) from where it takes the internal
    ip (192.168.1.3).On the same network is also a computer , connected to the router ( with ip 192.168.1.2). The spa3102
    is set to bridge mode and thus inactivates the function of the router (on SPA3102), and it functions as a  simple
    network device . I have  done port forwarding (from the router) to 192.168.1.3 (SPA3102) for the port 5061 (PSTN
    LINE) ( but for 5060 for the LINE 1 also). I want to make calls from a voip softphone (x-lite 4) to the SPA 3102 and
    this to forward the voip calls to PSTN line to which it is connected. In x-lite the SPA3102 is set as a proxy so that
    i can type the phone number I want to call without being followed by the SPA3102's ip each time ( eg on  x-lite I
    give call number 2101111111 instead of 2101111111 @ wanip: 5061 where wanip is the external ip of the router).
    When x-lite is running on the computer that is on the same network with the SPA3102 everything works as expected. A
    voip call is made from x-lite ( using as a proxy the wanip everytime, or even for test purposes the dyndns domain
    that i set up for this reason), this call is passese PSTN line and the phone of the called party rings . At x-lite
    COMES indication "call established ".
    The problem occurs when I do the same procedure from x-lite installed on a computer belonging to another network (
    e.g. in another building with its own internet connection , own router, own computer , etc. ) . Always using the
    wanip the x-lite makes the voip call to the SPA3102, writes "call established" ( meaning it connected to SPA3102) but
    never routed the call to the called party ( the SPA3102 did not forward voip calls it receives to the PSTN line ) .
    Trying to find what 's wrong I've tried to disable all firewalls (soft and hard from all involved machines ) . The
    behavior is the same either the computer that makes the successful calls is connected to the network directly to the
    router  or through the port "ethernet" on the SPA3102.
    What is the difference in these two voip calls to the SPA3102 and the one  " triggers "  it to forward the call to
    PSTN line and the other does not ?
    Thanks now for any ideas you give .

    The audio sound problem is more than likely also associated with the overall addressing problem initially encountered.  As you may know, using the sip protocol the sip signalling exchanges ip addresses to be used for both the sip signalling and the exchange of rtp sound packets.  In addition there is an exchange of port numbers to be used for the exchange of rtp sound packets.  The sound is exchanged by two separate streams of packets, one stream in each direction.  The result is an ip address and port number for the rtp packets flowing from the SPA3102 to the softphone and a different ip address and port number for the rtp packets flowing from the softphone to the SPA3102.
    In your previous posting you mentioned that you "set the minimum  EXTernal rtp port at the sip tab".  Changing the "EXT RTP Port Min:" is an unusual change to make and in my opinion would only be made in special circumstances. Actually, I ran some tests and I'm not sure exactly what that setting does.  In my tests it didn't appear to affect the rtp port number used in a predictable manner.
    The common changes to make for audio problems typically would be to setup a STUN server.  A STUN server is an external server that echos back to the initial sender the external ip address and port number that the STUN server received with the message received by the server.  This allows the sender (SPA3102 or softphone) to determine its external ip address and external port numbers for both the sip signalling and rtp packets.
    A STUN server is commonly recommended to be setup with the following settings in the SPA3102:
    PSTN Line Tab:
    NAT Mapping Enable: Yes
    Sip Tab:
    Handle VIA received: yes
    Handle VIA rport: yes
    Insert VIA received: yes
    Insert VIA rport: yes
    Substitute VIA Addr: yes
    Send Resp To Src Port: yes
    STUN Enable: yes
    STUN Server:
    The following web page has a list of "Public STUN Servers"
    http://www.voip-info.org/wiki/view/STUN
    You are using CounterPath's XLite softphone.  stun.counterpath.net  is a STUN server on the list.
    I see XLite also has a setting to use a STUN server on the "Topology" tab.

  • 8.1 not forward compatible..

    Information FWIW
    I was surprised that the CC2014.1  (8.1) update is one that is not  forward compatible project wise with CC2014.
    I cant recall a 'dot version' previously  that has not been forward compatible. ( I may be wrong)
    If its not forward compatible ...it certainly wont be backward compatible if one hits an issue and an update over writes the previous version!!!!
    Unlike CC7 to CC2014 - different versions.
    Adobe also may  or maybe not be aware that ...a little thing like this has implications on how many in  manage their NLE systems, Projects  and processes.
    For myself.. as a fall back...I have always kept all Projects in a Root Folder that references the PPRO version. eg CS 5, CS5.5, CS6, CS7, CC2014...  now  CC2014.1 !!!!
    My Project  back ups relate to those as well.
    Fingers crossed.
    (BTW - I updated between projects)

    You're correct that it's highly unusual to increment the project version for a dot release. We were aware that this would be a problem for some users, and the decision was not made lightly. It was necessary because several of the new features required changes to the project file that would have prevented projects from working in 2014.0 or 2014.0.1. I think the following were among those features:
    enhancements to Masking and Tracking
    increasing max Scale from 600% to 10,000% (go wild!)
    Marker colors
    Native GoPro/CineForm support.
    Option to write clip markers to project rather than clip.
    Anyway, thanks Shooter for calling this fact out for the benefit of others.

Maybe you are looking for

  • Error message when downloading rental from itunes to ipad

    I purchased two rental movies on itunes and when I transfer to my ipad, it says they've already been downloaded to another computer or device (but they haven't been).  Anyone have experience with this problem?

  • Cannot get desktop media to cooperate

    I have a Blackberry curve and I cannot get the Roxio Media Manager to display my pics and videos on my media card. When I have it hooked up to the computer, it will list the device and has folders underneath it. Then it actually displays the media ca

  • Display gradient, humming when dimmed, and random shut downs

    On the iMac alum. intel 20" display. 3 problems after 2 days from purchase, and from reading the recent threads, I'm not the only one. I've been a hardcore apple user for the past 10 years, and i have never been so disappointed. After reading that th

  • Pl/sql records usage

    CREATE OR REPLACE PACKAGE CURSPKGex AS TYPE T_CURSOR IS REF CURSOR; TYPE emprec_typ IS RECORD ( v_eno emp.empno%type, v_ename emp.ename%type, v_dname dept.dname%type, v_deptno dept.deptno%type PROCEDURE OPEN_ONE_CURSORex (N_EMPNO IN NUMBER, IO_CURSOR

  • DELL XPS 12 BSOD when not used for several minutes

    Dear all, since one month I'm experiencing a strange behavior from my DELL XPS 12 9Q33, Mid 2013 with Windows 8.1 Pro. When the notebook is left unattended for more than 5 minutes, it freezes with the BSOD with two different causes: KERNEL_SECURITY_C