|
Delayed Dialing
The application can also use lineMakeCall to allocate a call appearance or to dial just part of the full number. Later,
it can complete dialing using lineDial. When the number provided is incomplete, dialing some of the digits may be
delayed by placing a ";" (semicolon) at the end of the number. The lineDial function is used in cases in which the application needs to send address
information to the switch on an existing call, such as dialing the address of a
party to which the call will be transferred.
Note An application should make sure that incremental dialing (providing the number in small pieces) is supported before attempting to use
it. This support is indicated by the LINEADDRCAPFLAGS_PARTIALDIAL bit in the dwAddrCapFlags field in the LINEADDRESSCAPS structure, which is returned by lineGetAddressCaps.
The main reasons for an application to use delayed dialing are if the ? character appears in a dialable address or if the service provider does not
support one or more of the call progress detection control characters. These
characters, which can occur in a dialable address, are W (wait for dial tone); @ (wait for quiet answer); and $ (wait for calling-card prompt tone). These and all other characters used in
address strings are discussed in greater detail in Line Devices Overview.
The provider indicates which "wait for" dial string modifiers it supports in
the following bits in the dwDevCapFlags field within the LINEDEVCAPS structure returned by lineGetDevCaps:
- LINEDEVCAPFLAGS_DIALBILLING
- LINEDEVCAPFLAGS_DIALQUIET
- LINEDEVCAPFLAGS_DIALDIALTONE
The ? can be placed in the string (either directly by the application or by the
address translator with the function lineTranslateAddress) if it is known that the user needs to listen for an undetectable tone before
dialing can proceed. Every provider should treat ? as requiring the dial string to be "rejected."
The lineTranslateAddress function returns bits, in the dwTranslateResults field of the LINETRANSLATEOUTPUT structure, that indicate whether any of the four potentially offending
modifiers occur in the dialable string output from that translation operation. These
bits give the application an idea of whether the dialable string might need to
be scanned for unsupported modifiers:
- LINETRANSLATERESULT_DIALBILLING
- LINETRANSLATERESULT_DIALQUIET
- LINETRANSLATERESULT_DIALDIALTONE
- LINETRANSLATERESULT_DIALPROMPT
If the application tries to send an unsupported modifier or a ? to the provider, it receives an error indicating which offending modifier
occurred first within the string:
- LINEERR_DIALBILLING
- LINEERR_DIALQUIET
- LINEERR_DIALDIALTONE
- LINEERR_DIALPROMPT
The application can choose to pre-scan dialable strings for unsupported
characters. Or it can pass the "raw" string from lineTranslateAddress directly to the provider as part of lineMakeCall (or lineDial or any other function that passes a dialable address as a parameter) and then
let the service provider generate an error to tell it which unsupported
modifier occurs first in the string.
When the application is told (or finds) that an unsupported dial modifier is
in the dialable string, it must take the following steps:
- Locate the offending modifier in the string.
- Isolate the characters occurring in the string to the left of the offending
modifier.
- Append a semicolon to the end of the partial string.
- Reissue the dialing command using the partial string.
- Prompt the user to listen for the audible tones indicating when it is OK to
proceed with dialing.
- Reissue the remainder of the dialable string (the portion following the
offending modifier).
Note that in step 6 it is possible for another error to occur, because it is
possible for multiple unsupported characters to occur within a single dialable
string. Therefore, the application should repeat this process to dial the number
in stages.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime without manual coding. Full C# source codes are available More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|