How to receive dialup calls?

Hello! I am a total newbie, so please, do not laugh to my questions; I have a cable (non-voice)modem and WRT54GC router. I would like to receive calls from my clients through a dialup connection, but my router does not support rtp/udp port forwarding; As far as I know, I have to buy an FXO adapter or SPA3210 router? Can anybody help? Have a nice day! Boštjan

It's easier if you just get a simple VoIP ATA such as PAP2 or SPA2102, rather than mess with PBX running on your computer. You DO NOT need to forward any ports in the router because the ATA can send NAT-keep-alive packets. PBX software can do that too, so you can do the same thing with PBX software if you don't want an ATA.
In addition to the ATA you will need a VoIP service provider (VSP) such as Gizmo5. Get a VSP with a proxy near you. Then you need instructions about configuring the ATA, such as these:
http://forum.gizmo5.com/viewtopic.php?t=8516
After that you need to get an inbound phone number, either free, or buy one.
In what country do you want the inbound phone number?
What country will you be calling to most often?
Message Edited by boatman9 on 05-04-2008 06:43 PM

Similar Messages

  • How to receive RFC calls exceptions

    Hi,
    My english is bad, sorry.
    I have a RFC call to access data from a NIF. In the function that performs the 'select' I have created an exception if the NIF does not exist, is called 'NO_DATA'. How I recibe this exception in Web Dynpro?
    Thanks,
    Regards,
    Rubén Gutiérrez.

    Hi,
    In your remote enabled function module, under Tables tab you can
    add a table type attribute which can hold the return messages.
    ET_Return like bapiret2
    In webdynpro loop through the RFM return message node and print the messages.
    Sample Code:
    for(int i=0;i<wdcontext.nodereturn.size();i++)
      String message = wdcontext.nodereturnElement.getAttributeValue("Message");
      if ("S".equals(wdcontext.nodereturnElement.getAttributeValue("S")))
       msgManager.reportSuccess(message);
      else if("E".equals(wdcontext.nodereturnElement.getAttributeValue("E")))
       msgManager.reportException(message,false);
       errorRaised = false;
      else if("W".equals(wdcontext.nodereturnElement.getAttributeValue("W")))
       msgManager.reportWarning(message);
    Regards,
    Bala Baskaran.S

  • I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    Has your carrier been having issues with Call Display? Do the telephone numbers come up when people call, or does it just show 'Unknown Number' or 'Blocked' ?

  • After updating to iOS 7 the contact photos no longer appear when I receive a call. How can I get them to show again?

    After updating to iOS 7 the contact photos no longer appear when I receive a call. How can I get them to show again?

    I'm having the identical problem on my iPhone 4 after upgrading to IOS 7--no ability to update apps or download new apps.  Here is what Apple tech support emailed to me:
    I understand that you are unable to download or update applications after updating iOS7 on your iTunes. I know you must be eager to get this resolved and I will be happy to help you today.
    ... to help you better with this issue I would request you to please try this steps given below to resolve your issue.
    Please follow this steps:
    1) Double tap the home button
    2) Hold down on an icon
    3) Tap the red "X" on iTunes, and the App Store.
    4) Tap Settings > Store > Tap your Apple ID, and choose sign out
    5) Tap Settings
    6) Tap General
    7) Tap Reset
    8) Tap Network Settings
    Once it has been closed with multi-tasking, and you have rebooted the device in the network settings reset, please sign in, and try again. 
      Howevr, if you are facing the same issue than for this issue, you may need to call our AppleCare technical support team. A technical Advisor will be able to tell you about Apple's complimentary and fee-based support. The technical Advisor can also assist you in determining what option might be most helpful to you in this case.
    Mildly amusing that the instructions for force-closing a program are the IOS 6 instructions, which do not work on IOS 7. 
    Otherwise I'm having a little success with this.  Some apps (not all) are updating. It seems that a few more apps update each time I go through the process (close everything, sign out, and either reset or reboot, then go to the app store, sign in and try to update all).  So far it has been a very lengthy, iterative process. 

  • How to receive a xml CDATA in string element when OSB calling a webservice?

    How to receive a xml CDATA in string element when OSB calling a webservice?
    I have a business service (biz) that route to operation of a webservice.
    A example of response to this webservice legacy:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:eg="example">
    <soapenv:Header/>
    <soapenv:Body>
    <ex:executeResponse>
    <ex:arg><![CDATA[<searchCustomerByDocumentNumberResponse>
    <name>John John</name>
    </searchCustomerByDocumentNumberResponse>]]></ex:arg>
    </ex:executeResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    the type of ex:arg is a string.
    How to receive this CDATA structure to webservice in OSB?

    Similiar to the answer How to pass a xml CDATA in string element when OSB calling a webservice?
    Use the xquery function fn-bea:inlinedXML rather than fn-ben:serialize
    Steps to solve this problem:
    1. Create a XML Schema. E.g.:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="unqualified">
    <xs:complexType name="searchCustomerByDocumentNumberResponse">
    <xs:sequence>
    <xs:element name="name" minOccurs="0">
    <xs:annotation>
    <xs:documentation>
    </xs:documentation>
    </xs:annotation>
    <xs:simpleType>
    <xs:restriction base="xs:string" />
    </xs:simpleType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="searchCustomerByDocumentNumberResponse" type="searchCustomerByDocumentNumberResponse"></xs:element>
    </xs:schema>
    2. Create a XQuery to create a searchCustomerByDocumentNumber ComplexType. E.g.:
    3. Create a XQuery Transformation (XQ) to get the CDATA response to the webservice legacy. E.g.:
    declare namespace ns0 = "novosiaws";
    declare function xf:getReponse($searchCustomerByDocumentNumberResponse as element(ns0:searchCustomerByDocumentNumberResponse))
    as element(searchCustomerByDocumentNumberResponse) {
    fn-bea:inlinedXML($searchCustomerByDocumentNumberResponse/ns0:arg)
    For more information about xquery function:
    fn-bea:inlinedXML
    The fn-bea:inlinedXML() function parses textual XML and returns an instance of the XQuery 1.0 Data Model.
    The function has the following signature:
    fn-bea:inlinedXML($text as xs:string) as node()*
    where $text is the textual XML to parse.
    Examples:
    fn-bea:inlinedXML(“<e>text</e>”) returns element “e”.
    fn-bea:inlinedXML(“<?xml version=”1.0”><e>text</e>”) returns a document with root element “e”.
    Source: http://docs.oracle.com/cd/E13162_01/odsi/docs10gr3/xquery/extensions.html

  • How see the company when my phone receive a call with one of my contact ?

    How see the company when my phone receive a call with one of my contact ?

    It's a good idea. Suggest it to Apple here: http://www.apple.com/feedback/iphone.html

  • HT204380 How do I receive facetime calls from someone not in my contacts?

    How do I receive facetime calls from someone not in my contacts?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • I have viber installed on my iPhone. But whenever I receive a call from Viber, it would not ring. How do I fix this problem? How do I make it ring with incoming call?

    I have viber installed on my iPhone. But whenever I receive a call from Viber, it would not ring. How do I fix this problem? How do I make it ring with incoming call?

    Bring your phone into Apple for evaluation

  • How do I get the contact photo to full screen size when receiving a call after iOs 7.1 update..?

    how do Iget the contact photo to full screen size when receiving a call after iOs 7.1 update..?

    I went to the link. I selected iPHONE.  There was a big iPhone icon above the comment box -- so I was absolutely, positively on the right page.  I spent five minutes or so crafting a constructive comment as to why I wanted the full photo feature back on incoming calls on iOS7.  Then...i noticed the box below the comment area asked 'What operating system are you on?'.  And the drop down selection list included every operating system since Job's garage days -- but not one single iOS entry.  No iOS entries on an iphone page.  Unless I'm missing something, I think anyone writing a feedback comment is wasting his/her time.

  • How do I escape from receiving unsolicited calls

    How do I escape from receiving unsolicited calls from overseas females who want to connect,ShaneShane

    You have to tap on the "x" button on the search box to clear the search or go back to an empty search box. I hope that answered your question, if not..i would like you to please elaborate more on the question.

  • How come when I'm placing or receiving a call the photo of the contact is oversized and blurry?

    Whenever I place or receive a call the photo of the contact is huge and blurry on my phone, but it isn't that way on other peoples phones. How do I fix this?

    It has to do with the resolution of the picture you are using for the contact. The lower the resolution, when it is increased to full screen, it pixilates, like any other photo would when it has been zoomed. Contact pictures added from the phone will be full screen, contact pictures added in Outlook will only be thumbnails in the corner.

  • TS4185 I can FaceTime my wife from my iPad , but she always receives my call on her iPhone( and vice versa). How can I call iPad to iPad?

    receives my call on her iPhone( and vice versa). How can I call iPad to iPad?

    Charlie,
    You must have a separate and individual id for each of your devices.  For her iphone it's the telephone number. For each ipad, you must have a separate and individual id also.  The ipad id's must be an e-mail address. You cannot use the same e-mail address for both i pads, and you can not use the email address that you use for Face time log in.  The folks I know, create multiple e-mail accounts on Yahoo to facilitate this requirement.  These individual phone numbers and e-mail addresses should be put into your calling lists for your Facetime accounts.
    So if you want to call your wife's i-pad you need to have the mail address associated with it on your ipad account and visa-versa.  I guess you guys will need to make sure you know who's carrying which device...This modern electronic world can be a circus at times, even though it has its rewards.

  • IPad mini face time use how do I receive a call

    How do I receive  video call on face time. My iPad mini does not have a cellular plan.

    First, an Apple ID for purchases and and Apple ID for iCloud are typically the same, but they don't have to be. So if you want to use one ID (e.g. your email) for purchases that you can manage, you can have a separate ID (e.g. based on your son's email) just for iCloud.  Callers would then contact him on FaceTime via his iCloud ID (i.e. his email address).  The same goes for iMessage, contact would be via his iCloud ID.

  • HT5205 I am in Ecuador, I have an A1430 iPad using a 3D micro sim card, when they call me it sounds like busy tut tut tut tut how can I do to receive phone calls and sms

    I am in Ecuador, I have an A1430 iPad using a 3D micro sim card, when they call me it sounds like busy tut tut tut tut how can I do to receive phone calls and sms

    iPad are not telelphones. They do not receive calls nor do they receive or send SMS messages.

  • HT1430 My phone only vibrate whe receiving a call. How do you restore the ringer ?

    How do you turn on the finger for receiving phone calls? My phone only vibrates.

    Make sure the switch upper left edge is in the position so no orange or red is showing.

Maybe you are looking for

  • How can I add my icloud contacts and calendar back to my iphone?

    As of last week, my iCloud contacts and calendar disappeared from my iPhone 4S. I was trying to do something with adding Outlook to my PC to access calendars for my children's school, and now I cannot get my iCloud contacts as a group (tried turning

  • Aligning data in sap script

    hi guyz, how can i align data in sap script with spaces between.. regards

  • Audio Clip Fades

    I have a 6-second mp3 audio clip that I added to the audio that came with a 50-second mov video track, all of which I'm editing in Photoshop CS6.  The last few seconds of the audio fade to quiet.  I've double-checked its settings and there is no fade

  • Original form name still appears in the web title bar when renamed file is posted.

    When I rename a form for reuse the name of the original form still appears in the web title bar. How do I get the web title bar to reflect the new form name?

  • Server reboot and Oracle shutdown.

    First, thanks for helps about my CAN'T ADD DATAFILE INTO TABLESPACE which was posted in July. Our university Oracle technical support team said that, the reason that we can't new datafile into tablespace is: the database is corrupt, some blocks corru