Dynadot — .com Transfer
SpaceshipSpaceship
Watch

brendan52190

Established Member
Impact
1
Hi

For this, let's assume that .tel will not be a total flop.

What type of keywords will be most valuable for this extension? Will it be geographical keywords, like newyork.tel, losangeles.tel, etc, or what else?
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Creating advertisment records for storing

Creating advertisement records for storing

Code:
1.) Preparation:

IN TXT ".tad" "1" "1" "51"
"Plumber"
"www.ReactFast.co.uk/Plumbers"
"uri" "http://www.reactfast.co.uk" "uri" "=243423543&z=42342343"
"desc" "24 Hour Fast Response Plumbers" "desc" "10% Book Online Discount
Today !"

And the advert settings, for stead.tel, for example, might look like this:

<typ:storeRecordRequest domainName=" stead.te">
<typ:txt profiles="_all_" owner="_ad">
<typ:text>.tad</typ:text>
<typ:text>1</typ:text>
<typ:text>1</typ:text>
<typ:text>51</typ:text>
<typ:text>Title of the ad</typ:text>
<typ:text>lable of the ad</typ:text>
<typ:text>uri</typ:text>
<typ:text>The new way to communicate</typ:text>
<typ:text>desc</typ:text>
<typ:text>sample description</typ:text>
</typ:txt>
</typ:storeRecordRequest>

2.) Final Version of Advertisment TXT records:

And the advert settings, for stead.tel, for example, might look like this:

<typ:storeRecordRequest domainName=" [B][COLOR="Red"]stead.tel[/COLOR][/B]">
<typ:txt profiles="_all_" owner="[B][COLOR="Red"]_ad[/COLOR][/B]">
<typ:text>[B][COLOR="Red"].tad[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]1[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]1[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]51[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]Plumber[/COLOR][/B]</typ:text>
<typ:text>x[B][COLOR="Red"]www.ReactFast.co.uk/Plumbers[/COLOR][/B]</typ:text>
<typ:text>xxxx:[B][COLOR="Red"]//www.reactfast.co.uk=243423543&z=42342343[/COLOR][/B]</typ:text>
<typ:text></typ:text>
<typ:text>[B][COLOR="Red"]desc[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]24 Hour Fast Response Plumbers[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]desc[/COLOR][/B]</typ:text>
<typ:text>[B][COLOR="Red"]10% Book Online Discount Today ![/COLOR][/B]</typ:text>
</typ:txt>
</typ:storeRecordRequest>
.
.
The order for the syntax looks like this:


storeRecordRequest for Domain Name
Folder
Suffix
Position (Display Preference)
Location
Sort Sequence
Title
Label
Link
Text Content
Space
Text Content
Space
Text Content
storeRecordRequest


Result:

Which will create this advert, on top, on your TelProxy:

[COLOR="Red"][B]Plumber[/B]
24 Hour Fast Response Plumbers
10% Book Online Discount Today!
xwww.ReactFast.co.uk/Plumbers[/COLOR]
.
.
 
Last edited by a moderator:
0
•••
About SOAP, and how to use it to be able to advertise wthin your .tel

To prevent "SOAP-ERROR", you should download the client.wsdl from your Telhosting provider,

Respectively:
To be able to advertise within your .tel, you need "internal SOAP API" form your .tel registrar.

Follow the instructions in the Telhosting_Client.php script:
With PHP, you MUST download the client.wsdl file from your provider, modify it a little bit, and then things will go fine. This information is contained at the top o the Telhosting_Client.php script.:
Code:
* 1.   Download the client WSDL from YOUR registrar, save it in the same directory as this file and name the downloaded file: client.wsdl
 *
 * 1.5  Don't know where your registrar put the WSDL file? Open an command-line client on UNIX and write:  dig _soap._nspapi.yourdomain.tel naptr where you replace yourdomain with your actual domain. Then take either the http or https url and append to it "?wsdl" (so it will end in "...client?wsdl")
 *      That's the url for your registrar's WSDL file.
 *
 * 2.   Edit client.wsdl -- find the string: "http://www.w3.org/2003/05/soap/bindings/HTTP/" and replace it by: "http://schemas.xmlsoap.org/soap/http". If you don't do that, PHP will throw a fatal error: "SOAP-ERROR: Parsing WSDL: PHP-SOAP doesn't support transport 'http://www.w3.org/2003/05/soap/bindings/HTTP/'".

There's a very good PHP DNS library that you should be using. It's called gDNS, and it can be found at phpclasses.org.

It's used very effectively in the .tel WordPress plugin:

(If if you PHP haven't SSL support, try to use:
telhosting.domainmonster.com/client?wsdl=1 , with the http:// infront.)

Excursion:

WSDL 1.0 (Sept. 2000) has been developed by IBM, Microsoft and Ariba to describe Web Services for their SOAP toolkit.

WSDL 1.1, published on March 2001, is the formalization of WSDL 1.0. No major changes were introduced between 1.0 and 1.1.

WSDL 1.2 (June 2003) is still a working draft at W3C. According to W3C: WSDL 1.2 is easier and more flexible for developers than the previous version. WSDL 1.2 attempts to remove non-interoperable features and also defined the better HTTP 1.1 binding. WSDL 1.2 was not supported by most of the SOAP servers/vendors.

WSDL 2.0 became a W3C recommendation on June 2007. WSDL 1.2 was renamed to WSDL 2.0 because it has substantial differences from WSDL 1.1. The changes are:

    * Adding further semantics to the description language
    * Removal of message constructs
    * No support for operator overloading
    * PortTypes renamed to interfaces
    * Ports renamed to endpoints.

There was some fit between WIDL and the XML-RPC system by UserLand. The former has since faded away, as message-based XML technologies have proven more popular than their procedural equivalents. The latter seems to be giving way to SOAP, which has support for message-oriented as well as procedural approaches.

SOAP describes envelope and message formats, and has a basic request/response handshake protocol. Additionally, Microsoft developed the SOAP Contract Language (SCL) earlier this year to provide a system for on-line service descriptions for SOAP-based applications. This work in SCL, in addition to other protocols and related work from IBM and Ariba, has pretty much been phased into WSDL.

Telnic Ltd. provides a Java-based TelHosting Software application. This application interacts with the DNS directly, and exposes a publicly available web service, using SOAP over HTTP as its protocol. Client applications implementing this SOAP interface can work with the TelHosting Software application to perform all .tel-related operations.

All APIs work by receiving request messages from the clients and sending response messages back to them unless the request message requires no response. All messages are expressed in XML, and their respective syntax is specified by an XML schema; see List of Schema Files. The messages must follow the specific format, see Message Format.
.[COLOR="Silver"]

[SIZE=1]---------- Post added at 08:30 AM ---------- Previous post was at 07:28 AM ----------[/SIZE]

[/COLOR].
Advertising records for advertising within .tel; "Request-response" principle:

[U]WSDL Operation Types[/U]

The request-response type is the most common operation type.

Type:
Request-response

Definition:
The operation can receive a request and will return a response.

In the example above, the port "glossaryTerms" defines a request-response operation called "getTerm".

The "getTerm" operation requires an input message called "getTermRequest" with a parameter called "term", and will return an output message called "getTermResponse" with a parameter called "value".
.
WSDL bindings defines the message format and protocol details for a web service.

[B]learn about SOAP and Web Services.[/B]

SOAP:

SOAP is a simple XML-based protocol that allows applications to exchange information over HTTP.

Or more simply: SOAP is a protocol for accessing a web service.

SOAP Tutorial:

SOAP HTTP Binding
This chapter is an introduction to the SOAP HTTP binding.

A SOAP method is an HTTP request/response that complies with the SOAP encoding rules.
HTTP + XML = SOAP
.
.
[COLOR="SeaGreen"]FINAL CONCLUSION FOR ADVERTISING WITHIN .TEL:

1.) You must use SOAP with 'storeRecord' for adding TXT ('.tad') with '_ad' as
owner.

2.) To be able to use SOAP: download the client.wsdl file from your provider, modify it a little bit.

3.) Save it in the same directory as the Telhosting_Client.php script, and name the downloaded file: client.wsdl.

4.) Edit client.wsdl, according to the Telhosting_Client.php script.
     If if your PHP hasn''t SSL support: try to use:
telhosting.domainmonster.com/client?wsdl=1 , with the http:// infront.

5.) Create Advertisement TXT records for your .tel domain, according to the following syntax:

Example Advert:
Plumber
24 Hour Fast Response Plumbers
10% Book Online Discount Today!
xwww.ReactFast.co.uk/Plumbers

Syntax:

<typ:storeRecordRequest domainName=" stead.tel">
<typ:txt profiles="_all_" owner="_ad">
<typ:text>.tad</typ:text>
<typ:text>1</typ:text>
<typ:text>1</typ:text>
<typ:text>51</typ:text>
<typ:text>Plumber</typ:text>
<typ:text>xwww.ReactFast.co.uk/Plumbers</typ:text>
<typ:text>xxxx://www.reactfast.co.uk=243423543&z=42342343</typ:text>
<typ:text></typ:text>
<typ:text>desc</typ:text>
<typ:text>24 Hour Fast Response Plumbers</typ:text>
<typ:text>desc</typ:text>
<typ:text>10% Book Online Discount Today !</typ:text>
</typ:txt>
</typ:storeRecordRequest>

Scheme:

storeRecordRequest for Domain Name
Folder
Suffix
Position (Display Preference)
Location
Sort Sequence
Title
.
.
Etc.[/COLOR]

.
[COLOR="Red"]Good luck!:
Please send a feedback, about your achievements with advertising within your .tel domain.
Thank you, for your patience, and staying power, etc.

Your 

MacTel[/COLOR] :wave:
.
P.S.:
To find the correct end-point for your .tel domain, use 

DIG/nslookup commands and query _soap._nspapi.yourTelDomain.tel. 

The returned records should point to the addresses of the endpoint, such as MyTelProvider:80/client

For more questions on SOAP, please consult our newly updated FAQ materials. 
.
There is also a SOAP forum at the Telnic website.
.
[COLOR="Purple"]Each registrar has its own Telhosting platform, and therefore its own SOAP API entrypoint. You can find the SOAP entrypoints in http and https for your domain by simply querying the NAPTR records for:

_soap._nspapi.[YOUR-DOMAIN].tel

This is called "autoprovisioning", and you can use it to automagically find the right SOAP API entrypoints. Similarly, you can find the web interface (and therefore JSON) entrypoints with:

_web._nspapi.[YOUR-DOMAIN].tel

Please use your correct API url, it should work. 

Here's an example in PHP of how to find a domain's SOAP API entrypoint, otherwise called "autoprovisioning":

<?php
$dom = 'MYDOMAIN.tel';
$pattern = "/(https:.+)!\" \.$/m";
$dig = shell_exec("dig @208.67.222.222 _soap._nspapi.${dom} naptr");
if (preg_match($pattern, $dig, $regs)) {
    echo "The https URL for the SOAP API is: {$regs[1]}\n";
};
?>
[/COLOR]
.
Quote from Pierre:

"I confirm using the good WSDL will definitely help!

You have to be carefull with the WSDL. The PHP SOAP implementation is bugged, and it won't validate the transport binding URL (differences between SOAP 1.1 and SOAP 1.2). A bug report has been filled so you can expect it to be resolved in the next stable version of PHP. By the meantime, there is fortunately a workaround:

1. Download the client WSDL from your registrar, save it in the same directory than the TelHosting? class and name the downloaded file: client.wsdl.

2. Edit client.wsdl -- find the string: "http://www.w3.org/2003/05/soap/bindings/HTTP/" and replace it by: "http://schemas.xmlsoap.org/soap/http". If you don't do that, PHP will throw a fatal error: "SOAP-ERROR: Parsing WSDL: PHP-SOAP doesn't support transport 'http://www.w3.org/2003/05/soap/bindings/HTTP/'".

3. Edit the TelHosting? class -- look for: $config['wsdl'] (around line 173) and set the variable to: "./client.wsdl" instead of the full URL. PHP SOAP implementation uses fopen() to get the WSDL so you can specify a local file instead of an URL.

4. Retry, it should work! "
.
Sample PHP code at:
dev.telnic.org/trac/browser/apps/php/trunk 

Update of the sample PHP code to support automatic de-duplication of keywords. Automatic de-duplication is on by default. You can turn it off by writing:

$client->set_search_data($domain, $keywords->searchData, FALSE);
.
BTW:
1993, 16 years ago, a IT speciallist commented:
"It would be useful to take advantage of the widespread use and scaleability of the DNS to store information that has not been previously defined."
Seven years later, ca. 2000, a company named "Telnic", picked up the idea, to create "dot tel".
Mind you: dot tel could of been create 20 years ago. Or 15, or 10 years ago. Anyway: It is here, now. Probably the best time, as people are crazy after iPhones, and nearly every kidd has a iPhone. Just whait and see...
.
.

Quote Henry:
"One last point: the TelHosting control panel won't support ad management, that's not its purpose. I inserted the ad above using the APIs, but I suspect that ad providers will be doing something even simpler by providing an ad DNS server."

Personal comment:
Henry, I do not agree with you in the slightest.
The TelHosting control panel should indeed support ad management.
Yes, oh yes, oh yes...
Users want to post their adverts in a easier way.
But, ok: Once they set up their internal SOAP API, and they now about the syntax rules, storing the advertisment records, should be quit easy, then.

But I guess, many users would be put off, by the complecated SOAP API stuff.
Give them something, that works aout of the box, and is easy to control, and to handle.

You can say, this, and that, Henry, but if it won't be good for business, it won't be good for business, and that is that.
You got to decide, if you want to be restrictive, because it is the concept, that has to be so, or if you want to give in, and adapt to what the community of .tel domain owners and users would like to use.
.
It is not cool, to have "Advertising within .tel" announced, by the world press, and then only a few developers, who have been struggling since five months, and finally grasped the proceeding, are capable of putting ads on the TelProxy. Only showing off with their achievments, but not wanting to help others, to troubleshoot.

It is another desaster, just like the "Contact Us" page (integrating .tel in your existing website), which is not applyable as intended by Telnic, because the LOC records are not working.

It is better to announce something that works 100%, than announce half developed things.

It is the sad truth, Henry, and it is your responsibility, to make things better in future.

We can't have a disaster every time, "average .tel user" wants to improve his .tel domain.
.

Edit:

kprobe's tool at mytel.me, is fine, but not all users want to only depend on the tool at mytel.me, even if it is a good tool: Users might want to be able to manage their advertisments by coding their TXT records, etc, by their own.

(An advertisment is a TXT record with the '.tad' prefix, placed in the '_ad sub-domain' of the current domain, such as '_ad.mybusiness.tel'.

The syntax of the ad record, is specified by an XML schema.

To be able to advertise within your .tel, you need "internal SOAP API" from your .tel registrar / provider:
SOAP is a simple XML-based protocol that allows applications to exchange information over HTTP.
HTTP + XML = SOAP
Or more simply: SOAP is a protocol for accessing a web service.

To be able to advertise within your .tel, you need the client.wsdl file from your .tel registrar / provider:
WSDL bindings defines the message format and protocol details for a web service.

To store a ad record in the '_ad' folder, set its owner within the syntax of the ad record correctly to owner="_ad". This way, you don't need to create a folder separately:

<typ:storeRecordRequest domainName="mybusiness.tel">
<typ:txt profiles="_all_" owner="_ad">

But: the TelHosting control panel won't support ad management. You have to inserted your ad by using the APIs,

Telnic Ltd. provides a Java-based TelHosting Software application. This application interacts with the DNS directly, and exposes a publicly available web service, using SOAP over HTTP as its protocol. Client applications implementing this SOAP interface can work with the TelHosting Software application to perform all .tel-related operations.

In addition to the client service API, the TelHosting Software exposes an internal API for administration purposes.

To be able to advertise within your .tel, you need "internal SOAP API", as well as client.wsdl file from your .tel registrar / provider, and then modify the file a little bit:

Find the string: "http://www.w3.org/2003/05/soap/bindings/HTTP/" and replace it by: "http://schemas.xmlsoap.org/soap/http".

Edit the TelHosting class: look for: $config['wsdl'] (around line 173) and set the variable to: "./client.wsdl" instead of the full URL.

And now, you can insert your ad records by using the APIs.

And your advertisement should show up, on your TelProxy.)
.
It may be complecated, but that is how it is:
Currently, you can choose between doing it your self, or going to mytel.me. and use the tool, which is offered to use, and which is free.

The guys from Jepaa, will soon come up with a solution, which you will be able to find within TEL-MACHINE,

Have fun!
.
 
Last edited by a moderator:
0
•••
0
•••
.
Thank you, plaggypig,
and heartily greetings.
:hi:
 
0
•••
mactel: you do not need any "special" "internal" API to store ads in .tel domains. Inserting ads can be done on any domain. It's just a specially formatted TXT record.
Furthermore:
The TelHosting control panel should indeed support ad management.
The TelHosting control panel is not the end-all-be-all of management of a .tel. It's something for the average user/company to work with. There are many developers out there who are building specialized tools for different types of users, such as those building directories, or those wanting to manage ads, etc...
Having the Community TelHosting software be the final say in .tel domain management is not what we're aiming for, as we are certain that there is absolutely no way to accommodate all different .tel owner types. That's why you have standardized APIs and you will have a TelHosting accreditation system for anyone to roll out their own.

Below is sample PHP code to enter an ad:

PHP:
<?php
include('Telhosting_Client.php');
$ad = array(
    'text' => array('.tad', '1',
                    '100', '95',
                    'Advert Title', 'Click here!',
                    'uri', 'http://www.telnic.org',
                    'uri', '?params=some+params', 
                    'desc', "This is a sample ad\nLine 2 of",
                    'desc', " the ad, whose description can be very long"),
    'profiles' => '_all_',
    'owner' => '_ad'
);
// Config
// NOTE: THIS USES A LOCAL client.wsdl FILE AS EXPLAINED IN THE Telhosting_Client.php DOCS
$config = array();
$config['login'] = 'INSERT_USERNAME_HERE';
$config['password'] = 'INSERT_PASSWORD_HERE';
$config['wsdl'] = './client.wsdl';
$domain = 'my.domain.tel';

// Initialize our client
$client = new Telhosting_client($config);
// Insert some data
$client->store_record($domain, 'txt', $ad);
?>

Download Telhosting_Client.php from the Telnic developer site.

H
 
0
•••
As a matter of interest have there been any significant sales of .tel - not the I've had offers type- real ones :?

Thanks
 
0
•••
How To: "Advertisements within .tel"

Thank you, Henry, for your endeavors to assist us.

I understand, that the Telnic website has a developer area, but that Telnic is relying on developers withing the .tel community to develope the stuff that is needend by the mainstream telster.

Quote: „...users, such as those building directories, or those wanting to manage ads, etc...“: Yes, that is me, as well.

I understand, what the aim and concept of Telnic is. But the TelProxy, is quasi something that is supposed to be „standard“, by looks and by functionality.

If there is quasi a standard method to place advertisements on the TelProxy, than any standard method would fit in, into a standartisised TelHosting control panel, and its TelProxy.

As standard + standard = standard.

What is a „TelHosting accreditation system“, Henry?

So, now, I understand, that people, who want to manage ads within their .tel, will have to:

How To: "Advertisements within .tel"

General Preparation
Code:
[B]1.)[/B] [COLOR="Red"][B]Download Telhosting_Client.php from the Telnic developer site.[/B][/COLOR]

[B]2.)[/B] [B]Use a PHP code to enter a TXT ad, according to the sample PHP code.[/B]

[B]3.)[/B] [B]Insert PHP code / advertisement TXT record in Telhosting_Client.php.?
     Insert username and password (for your client.wsdl file), as well as your domain name,
     within the adverstisement TXT record PHP code:[/B]

[B]4.)[/B] NOTE: THIS USES A LOCAL client.wsdl FILE AS EXPLAINED IN THE 
Telhosting_Client.php DOCS
$config = array();
$config['login'] = 'I[COLOR="Red"]NSERT_USERNAME_HERE[/COLOR]';
$config['password'] = '[COLOR="Red"]INSERT_PASSWORD_HERE[/COLOR]';
$config['wsdl'] = './client.wsdl';
$domain = '[COLOR="Red"]mydomain.tel[/COLOR]'

Follow the instructions in the Telhosting_Client.php script:
[COLOR="Red"]With PHP, you MUST download the client.wsdl file from your provider, modify it a little bit[/COLOR], and then things will go fine. This information is contained at the top o the Telhosting_Client.php script.:

* 1. Download the client WSDL from YOUR registrar, save it in the same directory as this file and [COLOR="Red"]name the downloaded file: client.wsdl[/COLOR]
*
* 1.5 Don't know where your registrar put the WSDL file? Open an command-line client on UNIX and write: dig _soap._nspapi.yourdomain.tel naptr where you replace yourdomain with your actual domain. Then take either the http or https url and append to it "?wsdl" (so it will end in "...client?wsdl")
* That's the url for your registrar's WSDL file.
*
* 2. [COLOR="Red"]Edit client.wsdl -- find the string: "http://www.w3.org/2003/05/soap/bindings/HTTP/" and replace it by: "http://schemas.xmlsoap.org/soap/http".[/COLOR] If you don't do that, PHP will throw a fatal error: "SOAP-ERROR: Parsing WSDL: PHP-SOAP doesn't support transport 'http://www.w3.org/2003/05/soap/bindings/HTTP/'".


Henry: Why not make it that simple, at the first place?

You forgot the label:

<typ:text>Title of the ad</typ:text>
<typ:text>[COLOR="Red"]label[/COLOR]</typ:text>
<typ:text>uri</typ:text>


[U]Example:[/U]

[B]Domain:[/B]

[COLOR="Red"]stead.tel[/COLOR]

[B]Ad:[/B]

[COLOR="Red"][B]Plumber[/B]
24 Hour Fast Response Plumbers
10% Book Online Discount Today!
xwww.ReactFast.co.uk/Plumbers[/COLOR]

[B]Preparation:[/B]

IN TXT ".tad" "[COLOR="Red"]1[/COLOR]" "[COLOR="Red"]1[/COLOR]" "[COLOR="Red"]51[/COLOR]"
"Advert Title" "[COLOR="Red"]Plumber[/COLOR]"
"label" "[COLOR="Red"]www.ReactFast.co.uk/Plumbers[/COLOR]"
"uri" "[COLOR="Red"]http://www.reactfast.co.uk[/COLOR]" "uri" "[COLOR="Red"]=243423543&z=42342343[/COLOR]"
"desc" "[COLOR="Red"]24 Hour Fast Response Plumbers[/COLOR]" "desc" "[COLOR="Red"]10% Book Online Discount
Today ![/COLOR]"

[U]".tad":[/U]
Is the suffix for the text ad, within the ad record.

[U] 'owner' => '_ad':[/U]
An advertisment is a TXT record with the '.tad' prefix, placed in the '_ad sub-domain' of the current domain, such as '_ad.mybusiness.tel'.
To store a ad record in the '_ad' folder, set its owner within the syntax of the ad record correctly to owner="_ad". This way, you don't need to create a folder separately.

[U]Numbers:[/U]
 "1" stands for 'version, currently "1" ', the other "1" stands for "displayed at top of the page", and "51" acts as the sort order for each display set.

[U]Label: [/U]
Text string up to 255 bytes long. It is the anchor text of the below URI.

[U]URI:[/U] Points to the product of the ad.


[B]According to sample PHP code:[/B]

----------------

<?php
include('Telhosting_Client.php');
$ad = array(
    'text' => array('.tad', '[COLOR="Red"]1[/COLOR]',
                    '[COLOR="Red"]1[/COLOR]', '[COLOR="Red"]51[/COLOR]',
                    'Advert Title', '[COLOR="Red"]Plumbers[/COLOR]',
				 'label', '[COLOR="Red"]www.ReactFast.co.uk/Plumbers[/COLOR]',
                    'uri', '[COLOR="Red"]http://www.reactfast.co.uk[/COLOR]',
                    'uri', '[COLOR="Red"]=243423543&z=42342343[/COLOR]', 
                    'desc', "[COLOR="Red"]24 Hour Fast Response Plumbers[/COLOR]\nLine 2 of",
                    'desc', "[COLOR="Red"]10% Book Online Discount
Today ![/COLOR]"),
    'profiles' => '_all_',
    'owner' => '_ad'
);
// Config
// NOTE: THIS USES A LOCAL client.wsdl FILE AS EXPLAINED IN THE Telhosting_Client.php DOCS
$config = array();
$config['login'] = '[COLOR="Red"]INSERT_USERNAME_HERE[/COLOR]';
$config['password'] = '[COLOR="Red"]INSERT_PASSWORD_HERE[/COLOR]';
$config['wsdl'] = './client.wsdl';
$domain = '[COLOR="Red"]stead.tel[/COLOR]';

// Initialize our client
$client = new Telhosting_client($config);
// Insert some data
$client->store_record($domain, 'txt', $ad);
?> 
----------------

[B]Result:[/B]

[COLOR="Red"][B]Plumber[/B]
24 Hour Fast Response Plumbers
10% Book Online Discount Today!
xwww.ReactFast.co.uk/Plumbers[/COLOR]


Henry: Why not make it that simple, at the first place?

Why not give "average telster" this "How To", at the first place, when announcing, that Telnic enables advertisements within .tel?

Because that is all, what „average telster“ probably needs, if he does not necessarily want to wait for some developers out there, who are building specialized tools.

Since mid of October, Telnic has announced „Advertisements within .tel“, and made many mouths watery. Now we are towards end of September, and most people, who are wishing to set up a ad, where still not knowing, how to proceed. Not even developers, such as „GreenRover“, who developed „TEL-MACHINE“, as well as the „Jepaa“ search enngine.

(Same thing, happened with the „Contact Us“ page, where one is only able to have a such a page, either without a Google map (version with JavaScript), or with a Google map, but which is non-active, and which one can not use to navigate (PHP version).
The DNA version, ist still a „non go“, because people can't make the LOC records work for them.
First company, who set up a „Contact Us“ .tel page on their website, was „Cake in a box“, in Glasgow, Scotland (cakeinabox.co.uk/shop/pages/contactus.html).)
.
 
Last edited by a moderator:
0
•••
* 2. Edit client.wsdl -- find the string: "http://www.w3.org/2003/05/soap/bindings/HTTP/" and replace it by: "http://schemas.xmlsoap.org/soap/http". If you don't do that, PHP will throw a fatal error: "SOAP-ERROR: Parsing WSDL: PHP-SOAP doesn't support transport 'http://www.w3.org/2003/05/soap/bindings/HTTP/'".

OMG, so much work for something that can be done with html on other extension in 2 seconds :)
 
0
•••
.
Thanks, MattheP,

I am neither programmer, nor developer, and I do not have any programming knowledge, or programming skills.

I am a dot-tel-dummy, or a DTD, if you will.

But I tried to follow the instructions from Telnic.

Hopefully, I manage to set up a ad on my TelProxy, as a dummy, not as a developer.

Cheers, to all .tel dummies.

Shall we found the "Teldummies Club"?

DTDC (Dot-Tel-Dummies Club).

Dot-Tel-Developers Club, has the same shorthand logogram: DTDC: confusing similarities...
.
:tu:
.
 
Last edited:
0
•••
0
•••
.
Thanks, Plaggypig,

This time, I took a closer look at mytel.me:

I looks brilliant. And I bet, it works fine. But I don't feel comfortable, right now, to give my
CTH User ID
CTH Password

It is better to have such a tool for your self.

Especially, if you have a few hundert, or more than thousand .tel domains.

However, it is a question of trust.

Why not build in a SSL securty system, where it dechiffres the password.

TEL-MACHINE, will offer a service, or tool, as well. Comming soon.

Thank you.
.
 
Last edited:
0
•••
Just to confirm Mactel this does work just tried it. While I agree security would be ideal and required for the future, I see it more as showcase as to what can be done and a taste of whats to come.
 
0
•••
And I keep hearing about how easy .TEL is to use.....

Brad

OMG, so much work for something that can be done with html on other extension in 2 seconds :)
 
0
•••
0
•••
OMG, so much work for something that can be done with html on other extension in 2 seconds :)

We really don't know why mactel went to all that effort to document the hardest possible way to insert ads when the tool was already in existence to insert and manage ads very easily. I recognize the need for security so respect his efforts but nobody else will do that and many people have already used and continue to use the tool in the few days of its existence. OpenID is coming soon and you'll be able to do all sorts of things with your tels without userid and password being supplied to this and other tools.
Mark
 
0
•••
Ok I've promote .tel to all my friends on facebook with something like: Do you know what is dot tel?.... I got myname.tel.... go to telnic.org to watch video and see benefits... After 3 days I've got none comments. Looks like nobody cares about .tel, it's really a deception for me, how can't they see great things they can do with .tel for personnal uses, also they are young, love to facebook so .tel is easy then set up a hosting, add contacts... don't get it!
 
0
•••
.
@sigma:
I personally don't look at it as a showcase. If Mark does a few improvements...
Well, I suggest, that Mark offers such a tool for every one to buy. And then I would be more interested.
Also, I suggest, that we donate to all the developers, like Mark Kolb, Mike, GreenRover, etc, whow are doing a lot of pioneer work for the community.

If I would rule the .tel world, I would have a certain policy/politic for supporting members and developers.

How do you keep a state, or a city, or a town viable? To keep .tel viable and alive, you got to pull a few important strings. You have to have a politic, that is good in the short term, as well as in the long term. If it is only layed out for the long term, that won't be enough.
That is why we got to throw in more money, now. And support, where we can. With money.

There are a few brains within the .tel community, but not enough: A lot of things and concepts don't work intelligent enough.

Getting less dependent from Microsoft/Windows, and winning a few Linux developers, would be a healthy way to proceed. Because, in the long term, a lot of users will want to convert to Linux.

Of course, there might be a conflict of interest Telnic/Microsoft. But I guess, that Microsoft will eventually think more liberatelly. Monopolists will have to give up their monoples. Surfing in the Internet, will get cheaper, as software gets cheaper, or quasi free.

Again, that is why support is so important, for independance, and to be able to move fast.

So, what might look like a showcase, at first sight, mitght be worth considering to develope to something, for the whole community.


@bmugfort:

.tel is easy to use, fot the basic handling.
There is a good tutorial at siteground.eu, which makes it a lot more fun, to learn how to use .tel.

No: we can't generally say, that .tel is easy to use. Because ambitions to improve my.tel, will get higher, in short time, and then one has to got to the developer area on the Telnic website, and that is sometimes a pain whereever.

And there: Self learning is quite difficult, because a lot of instructions, are pretty confusing, and some intructions are outdated, and there are newer insturctions, at the same time, and confusion, is preprogrammed, if you will. And simply, updated „How To“'s don't exist. That is the only reason, why it gets difficult at times. And it mustend not be, necessarily.

To simplyfie, as much as possible, would be good for .tel.

Why not empoly a programmer, whos only job it would be, to simplyfie all the instructions?...

@ steven:
So, why not show us, how, and then, let's do it.

@ kprobe:
Than show us a easier way: I would be happy to know about it...
Your quote:
„...when the tool was already in existence to insert and manage ads very easily.“:
You are speaking about the tool, that you devolped.
And I say again: The points are about independence, security and trust.
I do believe, that you are trust worthy: I might give it a go, with one of my .tel domains.
Quote:
„...but nobody else will do that...“: - How do you know?
Quote:
„...many people have already used and continue to use the tool in the few days of its existence.“:
Well, that is fantastic. Congratulations. I might join them, as well.
I say nothing negative, about your tool. I am just thinking, that not all people might want to be dependant on your tool, and give you theri user ID and password...
The more people, who know ID and password, the bigger the risk...( ISP, developer X, etc.).
And how many more?...
Quote:
„OpenID is coming soon and you'll be able to do all sorts of things with your tels without userid and password being supplied to this and other tools.“:
Ok: Well, then. I believe, that I will be your friend and (loyal) customer, then.
Nice, to have you in our community, and we all appreciate your good work.
.
:tu:
.
@ steveteva:
Quote:
"Ok I've promote .tel to all my friends on facebook with something like: Do you know what is dot tel?.... I got myname.tel.... go to telnic.org to watch video and see benefits... After 3 days I've got none comments. Looks like nobody cares about .tel, it's really a deception for me, how can't they see great things they can do with .tel for personnal uses, also they are young, love to facebook so .tel is easy then set up a hosting, add contacts... don't get it!"

Promotion, can work, or it can not work. It can even be a bit contra productive.
What is good, about your efforts, is your idea, and energy, you put in to it.
Things, don't always work at first go. You will have to experiment a bit. Delete slogans and comments, and replace them by something else, and then whait what happens, etc,, and then again, and again.
Instead of saying: "...go to telnic.org to watch video,..", you should display the video on your page. Here is the code for the "Love Train" video:

<embed src="http://blip.tv/play/AfqRRQI" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="390" width="480"></embed>

Anyway: one has to observe the activities over a longer period, than thry to make a conclusion, only after three days. After maybe two weeks, you might be able to make a statement..

Show nice banners, logos, icons, videos, etc. Make it look appetizing...

Keep the good work up.
.
 
Last edited:
0
•••
As a matter of interest have there been any significant sales of .tel - not the I've had offers type- real ones :?

Thanks

depends what you take as significant. there have been no $xx,xxx sales that I know of but there have been at least 12 sales in the low $x,xxx range. you can search dnsaleprice, and dnjournal
 
0
•••
.
@ wot:

I would only sell, maximum 5% of your .tel protfolio.

Because dot tel domains are still undervalued.

Try to keep as many .tel domains, as long as possible, pay renewal fees.

The big money, is not with .tel: it is with .com, .net, .me, co.uk, etc.

There will be auctions at: TRAFFIC, interNext, DOMAINfest, Moniker, GoDaddy, Rick Latona, (Sedo), etc.
Even Sitepoint sells Domains, I think within their good forum.

I wouldn't sell a good .tel domain name under 2000 Euros.
They will gain 2000 Euros in value, each year of the follwing three years, and be around at least, 6000 Euros, in three years.
So it is worth waiting.

Cheers.
 
Last edited:
0
•••
Sale so far ......

SeitenSprung.tel Jul 9 09 1,500
Maxi.tel Jul 9 09 99
Storage.tel Jul 9 09 3,950
Detective.tel

Jul 9 09 80
Edelstein.tel Jun 9 09 400
Wiseman.tel Jun 9 09 200
Cop.tel Jun 9 09 175
RentaBike.tel Jun 9 09 300
Vladislav.tel Jun 9 09 700
Exit.tel Jun 9 09 250
Sabine.tel Jun 9 09 75
Reichelt.tel Jun 9 09 200
BCF.tel Jun 9 09 350
Ewert.tel May 9 09 100
SXX.tel May 9 09 70
Visit.tel May 9 09 1,000
GolfHotels.tel May 9 09 165
WebDesigner.tel May 9 09 500
RENZ.tel May 9 09 350
Asian.tel Apr 9 09 750
Maderas.tel Apr 9 09 100
Ohio.tel Apr 9 09 1,000
SabaDell.tel Apr 9 09 200
KARI.tel Apr 9 09 300
Tarragona.tel Apr 9 09 1,161
EscortDirectory.tel Apr 9 09 240
Leverkusen.tel Apr 9 09 100
CarShop.tel Apr 9 09 70
Impresoras.tel Apr 9 09 60
Pornos.tel Apr 9 09 320
Hire.tel Apr 9 09 3,000
PhoneShop.tel Apr 9 09 110
 
0
•••
Dynadot — .com TransferDynadot — .com Transfer
CatchedCatched

We're social

Escrow.com
Spaceship
Rexus Domain
CryptoExchange.com
Domain Recover
CatchDoms
DomDB
NameFit
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back