Dial In Access not working using ASA5510

Can somebody help me using a US robotics modem with ASA 5510. I've tried following the instruction in this link
http://www.cisco.com/en/US/products/ps6120/products_tech_note09186a00807955c1.shtml but it didn't work out. After applying the string "ATE0Q1&W" nothing happen. Thanks in advance.

Hi,
I feel the pdf at the link is quite descriptive & clear to develop a sample International WD application.
But here I will try to throw some light to the concept & verifications.
Initially, you create application with english texts (some raw xlfs get created corresponding to it).
You copy & rename them to language xlfs (*_de.xlf for German language).
But these xlfs still contain texts, etc info in english so you use S2X Editor to change the texts to German language & the source language to de. You can verify this by opening the *_de.xlf file in some text editor (notepad/textpad/...) and checking this attribute value.
In WD Explorer, Reload the project, do Rebuild, DC build, Create archive (you can delete existing ear file before this), Deploy New Archive & Run the application (you have already changed IE Browser settings for German)
Kind Regards,
Nitin

Similar Messages

  • Error : Access not possible using "null" objects reference

    Hello.
    i am working with a zbapi.
    i called a external email program in this bapi,everything is working fine over here.
    In webdynpro java they mapped my bapi and starting working from there.
    every functionality is working fine but regarding this email stuff it is showing an error as access not possible using null objects reference.
    where could be the possible error.
    is it in webdynpro or in abap side.

    Raghu,
    You are right. When it comes from the WD Java, may be you are not passing any value at all. You can trace it by these ways.
    1. Check it using SE37, make sure everyhting is fine.
    2. Print all the values that you are passing to the RFC in the execute RFC method().
    3. using ST05 transaction in R/3, enable RFC and SQL trace, check what is passing in between web dynpro and R/3.
    Moreover paste your error message here.
    Thanks,
    Raj.

  • When i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well

    when i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well including chrome browser…i tried everything but no clue...anybody have solution for this..???

    I also forgot to note that this problem also persists with the new iBooks application. I cannot get past the 'Get Started' screen or access the iBooks Store. Again, all top bar menus are unresponsive.
    DT

  • I hooked up new iMac to wireless network and now iPad and iPhone do not work using wireless.  I am using a Netgear N300 router.  Also my Netgear ethernet/homeplug for wireless TV internet no longer works.  Any ideas?

    I hooked up new iMac to wireless network and now iPad and iPhone do not work using wireless. They did before hooking up the iMac. I am using a Netgear N300 router.  Also my Netgear ethernet/homeplug for wireless TV internet no longer works.  Any ideas?  I have tried unplugging, restarting, and resetting.  No luck!  Thanks!

    You should probalby contact Netgear

  • Using export slide show from iphoto, I am trying to create a DVD of photos and vid clips in large format. The vid clips do not work using burn software. Any idea?

    Using export slide show from iphoto, I am trying to create a DVD of photos and vid clips in large format. The vid clips do not work using burn software. Any idea?

    Have used large format, but using the 'burn' software, I am not getting seamless video quality on DVD even though I am burning at 2* speed. Any ideas? Do I need better software? Or is there a problem with the SuperDrive?

  • SPA3000 F/W 3.1.20(GW) last digit repetition within the dial plan is not working for gateway 0-4

    H/W: SPA3000
    F/W: 3.1.20(GW)
    Problem: The last digit repetition within the dial plan is not working for gateway 0-4.
    Line 1 Dial Plan: (****|<#,xx.<:@gw1>|1747xxxxxxxx.<:@gw1>)
    Dial "17474743246#" which works for gw1.
    Dial "#17474743246" which also works for gw1.
    Dial "17474743246" which doesn't work and actually goes through VoIP 1 but not gw1.
    It results in I have to specify a fixed number of digits for gw0-gw4 in the dial plan or it won't works. This could be very difficult for international calls.
    Is there any way to specify Interdigit Short Timer with <:@gw0>?
    BTW, it's strange that I have to include (****) in the dial plan to enter IVR. Without it I can't even hear any sound coming from gw1 (SIPphone). Maybe the SPA needs a factory reset. The test dial plan might look like,
    S:4,(****|*xxx.|[2-9]|xxxxx|*0<:@gw1>|1747xxxxxxx<:@gw1>|1408xxxxxxx<:@gw0>|xxxxxxxxxxxxxxxxxxxx.!)
    The last barring sequence "xxxxxxxxxxxxxxxxxxxx!" is to make sure the Interdigit Short Timer works after the last digit dialed otherwise the number will be transmitted immediately which is not preferred.

    IMHO , if there's a need for you to include *** on the dial plan to enter the IVR menu there might be a need to reset the unit.
    I believe that you can set the interdigit timer by including that on the dial plan ie: xxxxS0 just like on a hotline, i just never had a chance to try including that syntax when invoking gw0 on the dial plan , but i guess you may give it a try.

  • Expression using Map access not working....

    I am attempting to use the ability to access a Map by key from a binding expression on the jsp. I have extended HashMap and overridden the get method in order to return a Boolean from the get(key) method.
    This works:
    rendered="#{bean.enabledFunctionSecurityMap['key1']}"
    it ends up calling the bean.getEnableFunctionSecurityMap().get("key1");
    This should work also but doesn't:
    rendered="#{bean.enabledFunctionSecurityMap['key1'] or bean.enabledFunctionSecurityMap['key2']}"
    Any reason why a single Boolean returned from a Map would work fine, but a more complex statement with 2 Booleans will not work. Doing a statement like this just accessing multiple boolean getter functions on a bean works, how come access muiltiple Map returns does not?
    Any help is appreciated.
    Thanks,
    Mike

    All righty then, I solved my own problem.
    There were actually 2 issues.
    1. I could so far only get this to work if the Overridden Map Object is registered as a manged-bean itself.
    2. I was testing to see if it worked by using System.out.println methods in my overridden get() method. Appearantly the JSF EL is smarter than I am. If you have #{binding1 or binding2} and binding1 evaluates to True, binding2 is never evaluated. The expression is short circuited and returns true... DUH....
    So this expression fires both bindings....
    rendered="#{enabled['key1'] and not enabled['key2']}"
    Where enabled is...
    <managed-bean>
    <managed-bean-name>enabled</managed-bean-name>
    <managed-bean-class>security.EnabledFunctionSecurityMap</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    Next step will be to try and figure out how to get this to work where the EnabledFunctionSecurityMap is on another bean.
    Hope this helps anyone trying to do the same.
    Mike

  • Jabber client's click to dial feature is not working for Windows 7 Proffessional OS

    Hi,
    Currently running UCM 9.x and CUP 9.x. There is no AD intigration for UCM.
    Problem i am facing is that  the Jabber client  is working properly for Click to dial  feature on Windows 7 enterprise OS and it is not on Windows 7
    Professional OS.
     The Jabber client which is logged on to Windows 7 enterprise OS, works
    fine but if same user can logged on to the Windows 7 Professional OS will
    not work click to dial.
    Please help us to resolve it.
    Thanks & Regards,
    Krishna

    Hi John,
    Thanks for your reply but I can't see the option to reach the "deployment" perspective. Its not available for me.
    Btw, I'm using SAP NetWeaver 7.1 Composition Environment SP12 PAT0000 Build id: 201105061501.
    Also, I have checked a few SDN posts about using the "undeploy" tool after connecting using telnet, but I can't use that method too as telnet ports are blocked by firewall. We use different method to connect to the OS, if required.
    Any other suggestions?
    Thanks,
    Deoraj.

  • Mail yahoo pop access not working.

    This has been going on for 2 days now. Re set up my account in mail but nothing just the ! next to the mailbox. Anyone else having problems?

    Sending an email is something totally different again - you can send yourself or anyone else an email to any email address.
    You can also send or forward any email while on your Yahoo account to yourself or anyone else.
    Setting up Yahoo to automatically forward emails to your home email address is something else. Here is an excerpt from Yahoo Help:
    +The ability to access Yahoo! Mail using an email reader program such as Outlook, Eudora, or Thunderbird is only available to customers of our premium Yahoo! Mail Plus service. To determine whether you have purchased this service, please visit the My Services page.+
    Although this does not mention Apple Mail, it functions exactly like Outlook, etc. so it will not work. Here is the link to the entire help page:
    http://help.yahoo.com/l/us/yahoo/mail/yahoomail/mailplus/pop/pop-35.html;_ylt=An EHIP08O6GRC7cEYzjbTbe7myN4
    I have no idea why it might have worked for you previously, but according to Yahoo, it cannot be done unless you pay for the service.
    So, unless I've totally misunderstood what you are trying to say, I do not have a different answer and it does not have anything to do with your Mac or OS.

  • IOS 8.02 guided access not working for Ipad 2

    Will the next update for iOS 8 fix the issue for guides access for Ipad 2? Issue; function not working at all. And when will this update come?
    We have now tried everything we can think of. Reset settings, totale factory reset etc. This doen both on the Ipad and thorugh iTunes.
    For us the Ipad got useless with iOS 8 as we us it as a visitor kiosk using the app SIGN IN. We really regret updating.... please fix asap

    I can confirm that this works on 3rd Generation iPads.  But not 2nd Generation iPads.  I have found that if Guided access was enabled prior to the upgrade it might reset in this process.
    Turn off Guided Access in Accessibility / Settings.
    Hard reboot.  (Hold Home and Lock buttons for 7 seconds)
    Turn on Guided Access in Accessibility / Settings.  Reset Passcode.
    Anyone have luck with a newer model?

  • Lync 2013 (Oct CU update) Dial-in Webpage not working. This content cannot be displayed in a frame

     today we found an issue with our Lync 2013 deployment while investigating another issue.
    ok se we have/had Lync 2013 setup along with IIS ARR. All seems to be working fine.
    with the exception of our Dial in page.
    no matter what i do it does not work. We have a near identical setup for our other domain & they have no issues. (i copied the Bin folder from the "C:\Program Files\Microsoft Lync Server 2013\Web Components\Dialin Page\Ext" of the working site.
    then tracked it down to the "\bin\" folder. which contains the "Micrsoft.RTC.nternal.Conference,dll"
    file. If i copy this into our US folder the site works as it should.
    So now the kicker....our US file is the newest (5.0.8308.556) where as the other domain is "5.0.8308.301" 
    with that said, & with our correct version (.556) of the conference.dll file, this is the page that loads...which we can then click the link & it opens our conference page as it should.
    This content cannot be displayed in a frame
    To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
    What you can try:
    Open this content in a new window
    So somthing is a miss, & i think it is related to the Oct CU....but have no evidence at the moment.....
    any help would be great

    yes, IE will shows the warning page, but then lets you click the link.
    chrome shows noting. When running Debugger, chrome states:
    Refused to display 'https://fepool.company.local/Dialin/Conference.aspx' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'..
    the issue is definatley stemming from the new .dll from the CU update. as i compared it against the older version. the newer version is throwing the "X-Frame-options:
    SAMEORIGIN"....
    I am not sure if that is intended or not.
    also i have not been able to find out what the specific purpose of the conferenceproxy.aspx file that the dialin page
    uses as its default document. It appears that the page only stands to serve up the Conference.aspx page in the Iframe..
    if we swap our default page to be the Conference.aspx all works as expected.

  • DMTF not working using IP to IP gateway

    Hi,
    I have a Cisco IP telephony infrastructure with Cisco Call Manager 4.0(2a) and Cisco 7940G series IP Phones. I have implemented "IP to IP gateway" using a Cisco 2651XM router. I have followed the Configuration guide of "IP-IP gateway" during my configuration.
    The IP2IPGw is configured for H323-to-H323 and will register with a gateway of an Internet Telephony Service provider (ITSP).
    Now when I make an outbound call to a conference bridge, the bridge requests for the code and the digits pressed from my ip phone is not accepted. The same when I do it from a Analog phone using a FXS port, it works.
    The IPIPGw document specifies the dtmf-relay is enabled by deafult. I still have configured all available dtmf options, but still no luck.
    Please help me in resolving this.
    Attached: Config file and Network design.
    thanks in advance,
    Naveen V

    Hi Amrit,
    Thanks for your reply.
    I had configured the DTMF parameters on the dial-peer's with h245-alphanumeric and also with rtp-nte, but no luck.
    I have configured an Inter Cluster Trunk between CCM 4.0 and IP-IP Gateway router. I am not sure if there are any configuration on CCM end related to DTMF.
    I even tried the rtp-payload (dial-peer) and is still not working.
    Let me know your suggestions on this.
    thanks,
    Naveen V

  • Upload to FTP host not working using SFTP

    I've tested and retested the FTP Server using SFTP on Transmit, works perfectly every time and won't work using Muse's Upload to FTP. Any ideas?

    Thanks Zak,
    I still have these questions:
    1. Why does Transmit, CyberDuck, and Filezilla all work just fine using SFTP with your Apple server ?
    2. Why does Muse have “no experience doing this on an Apple Server”, yet confident it should work ?
    3. Is the following what you are referring to?
    If so, it seems less secure, and I'm loath to reduce our security after having been hacked before. Why can't Muse work just like Dreamweaver and every other FTP client that I know of?
    Key-Based SSH Login 
    Key-based authentication is helpful for such tasks as automating file transfers and backups and for creating failover scripts because it allows computers to communicate without a user needing to enter a password.
    Important: Key-based authentication has risks. If the private key you generate becomes compromised, unauthorized users can access your computers. You must determine whether the advantages of key-based authentication are worth the risks.
    Generating a Key Pair for SSH
    The following outlines the process of setting up key-based SSH login on Mac OS X
    and Mac OS X Server. To set up key-based SSH, you must generate the keys the two
    computers will use to establish and validate the identity of each other.
    This doesn’t authorize all users of the computer to have SSH access.
    Keys must be generated for each user account.
    To do this, run the following commands in Terminal:
    1. Verify that an .ssh folder exists in your home folder: ls -ld ~/.ssh
    If .ssh is listed in the output, move to step 2.
    If .ssh is not listed in the output,run: mkdir ~/.ssh and continue to step 2.
    2. Change directories in the shell to the hidden .ssh directory with the following command:
    cd ~/.ssh
    3. Generate the public and private keys by entering the following command:
    ssh-keygen -b 1024 -t rsa -f id_rsa -P ''
    -b flag sets the length of the keys to 1,024-bits
    -t indicates to use the RSA hashing algorithm
    -f sets the file name as id_rsa
    -P followed by two single-quote marks sets the private key password to be null.
    The null private key password allows for automated SSH connections.
    Keys are equivalent to passwords so you should keep them private and protected.
    4. Copy the public key into the authorized key file by entering the following command:
    cat id_rsa.pub >> authorized_keys2
    5. Change the permissions of the private key by entering the following command:
    chmod go-rwx ~/.ssh/.id_rsa
    Set the permissions on the private key so the file can only be changed by the owner.
    6. Copy the public key and the authorized key lists to the specified user’s home folder on
    the remote computer by entering the following command:
    scp authorized_keys2 username@remotemachine:~/.ssh/
    - To establish two-way communication between servers, repeat this process on the second computer.
    - The process must be repeated for each user that needs to open key-based SSH sessions.
    - The root user is not excluded from this requirement.
    - The home folder for the root user on Mac OS X Server is located at /var/root/.
    Key-Based SSH with Scripting Sample
    The following Perl script is a trivial scripting example that should not be implemented, but it demonstrates connecting over an SSH tunnel to all servers defined in the variable serverList, running softwareupdate, installing available updates, and restarting the computer if necessary.
    The script assumes that key-based SSH was set up for the root user on all servers to be updated.
    #!/usr/bin/perl
    # \@ is the escape sequence for the "@" symbol.
    my @serverList = ('root\@exampleserver1.example.com',
    'root\@exampleserver2.example.com');
    foreach $server (@serverList) {
    open SBUFF, "ssh $server -x -o batchmode=yes 'softwareupdate -i -a' |";
    while(<SBUFF>) {
    my $flag = 0;
    chop($_);
    #check for restart text in $_
    my $match = "Please restart immediately";
    $count = @{[$_ =~ /$match/g]};
    if($count > 0) {
    $flag = 1;
    close SBUFF;
    if($flag == 1) {
    "ssh $server -x -o batchmode=yes shutdown -r now"

  • 10.8 Server - AFP Guest access not working

    Hi Folks
    I have a brand new Mac Mini server running the latest 10.8.4 and Server.app from the app store (10.8 / v2 / whatever it's called these days).  I have everything up and running perfectly except that no matter what I do when users connect via AFP there is no option for them to connect as guest.  It literally just does not even show up in the login dialog.
    I have several AFP share points setup to allow guest access, I have enabled the option in System Prefs->Users and Groups->Guest User->Allow guests to connect to shared folders.  I have even also enabled it via command line tool; serveradmin settings afp:guestAccess = yes
    But no matter what I do any machines connecting (either via browsing to the server via finder and connecting or directly from "Connect to server" using the afp:// URI approach) the login dialog doesn't give us the option to select to connect as guest -- it's just not there at all in the dialog box.
    This is fairly urgent, a few more days and this server needs to go into production at our school here and this is essential for the way we need to do things.  A little more background information:  we are bound to both a local OD setup and a campus wide AD setup (not sure if any of this matters or not).
    Help and thanks!

    And I guess toggling File Sharing on and off about a dozen times it seems to have finally picked up and is allowing guest access to work :/  Answer my own question!

  • Timed Access not working on new Airport Extreme (802.11n).

    I bought a new Airport Extreme (802.11n) to use as a router for my network. The network has a mixture of Macs and PCs, using a mixture of wired and wireless connections.
    I configured the security settings with on the Airport Extreme to Timed Access. I set the default setting is to No Access.
    Three computers are set with "Everyday, Between 8:00am and 11:00pm"; however, when it's 11:00pm, nothing happens. The three computers continue to have access.
    I know the MAC addresses I entered are correct. Does anyone know why the Timed Access is not working?

    Yes, the printer was initially set the same way it always was on my old router. It used to pop right up on the list. After I switched I was getting communication errors. Ok, new setup, I wasn't worried yet. When I got to the setup window and it a new printer wasn't found I tried updating drivers. No luck. I then used the IPP mode to enter the IP address with the address on the Canon screen. It failed. I then did the same setup telling it which software from the driver list to use. It still could not see it. The odd part is that the Canon can obviously  see the router as its LAN setting read active and it is receiving the IP. I have proceeded to play with every setting on the printer and it is back to factory reset. Oh, I should mention that I have also tried to use Canons network setup utility software and it can not find the connection either. So I really think this is a problem within the router. I have seen many complaints about this on other forums, but most were looking to use the usb on the print server. My Airport is nowhere near my printer and I don't want to lose my all-in-one functions. Some think hard lined ethernet is ancient, but it really is a nice setup. Fast and reliable.

Maybe you are looking for

  • Display All Marked / Flagged for Follow Up Emails Separately

    Display All Marked / Flagged for Follow Up Emails Separately I was wondering, is there actually a way to display flagged emails in some sort of folder or separate view at least, as it is common within desktop mail applications and any other user inte

  • IPS host blocking not happening in VLAN 1

    Hi I have IDSM2 module installed in 6500 core switch and configured in prismouscous mode. i have added interfaces of 6500 in IPS as blocking device and i can see all the vlan interfaces along with Vlan 1, When i test the attack, i can see the IPS act

  • How to implement pattern matching in RFC input paramenter?

    Dear Friend....... I have a requirment for implement a pattern match for name field of vendor in one of RFC......... For ex.......... Name field:-  A* -> give all list of name  starting with a. how can we implement this? Any way............Suggest me

  • Serious errors were during Font Validation.

    I am getting this message during installing font: Serious errors were found. Do not use this fonts. What does it mean. I am fresh Mac user

  • MySQL Master/Slave w/IP-Failover

    Hello All, I just currently setup a MySQL Master and Slave which are working great! I used these instructions and it is working excellent on Leopard Server 10.5.8 running MySQL 5.1.37 GA release: http://homepage.mac.com/kelleherk/iblog/C711669388/E35