ag-software.net Report : Visit Site


  • Ranking Alexa Global: # 1,588,202

    Server:Apache...

    The main IP address: 85.13.135.149,Your server Germany,Friedersdorf ISP:Neue Medien Muennich GmbH  TLD:net CountryCode:DE

    The description :ag-software is a company specialized in xmpp solutions. we provide .net components, solutions and consulting....

    This report updates in 12-Dec-2018

Created Date:2008-04-07
Changed Date:2016-04-08
Expires Date:2017-04-07

Technical data of the ag-software.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host ag-software.net. Currently, hosted in Germany and its service provider is Neue Medien Muennich GmbH .

Latitude: 50.604919433594
Longitude: 11.03577041626
Country: Germany (DE)
City: Friedersdorf
Region: Thuringen
ISP: Neue Medien Muennich GmbH
    mainframe-upgrade.com 

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Length:15443
Upgrade:h2,h2c
Content-Encoding:gzip
Accept-Ranges:bytes
Expires:Tue, 11 Dec 2018 16:18:55 GMT
Vary:Accept-Encoding,Cookie
Server:Apache
Last-Modified:Mon, 19 Nov 2018 17:24:15 GMT
Connection:Upgrade, close
Cache-Control:max-age=3, must-revalidate
Date:Tue, 11 Dec 2018 16:18:52 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns5.kasserver.com. root.kasserver.com. 2018110552 28800 7200 1209600 7200
txt:"ms97819967.msv1.invalid"
"MS=ms97819967"
"v=spf1 include:spf.protection.outlook.com -all"
ns:ns5.kasserver.com.
ns6.kasserver.com.
ipv4:IP:85.13.135.149
ASN:34788
OWNER:NMM-AS D - 02742 Friedersdorf Hauptstrasse 68, DE
Country:DE
mx:MX preference = 0, mail exchanger = agsoftware-net0e.mail.protection.outlook.com.

HtmlToText

-- home matrix vnext matrix xmpp sdk ▼ download get started tutorial screencasts pricing & order forum about us ▼ services reviews contact xmpp websocket connection manager posted by gnauck on november 19, 2018 comments off on xmpp websocket connection manager for a new project i am working on (more to be announced) i was looking for a standalone websocket connection manager. because still many public and private xmpp servers offer only the tcp transport or bosh. there are already existing projects websocket connection managers. but i ran into some issues with them for my current use case. usually i am not trying to re-invent the wheels ;-) after websocket support came to dotnetty which one of the latest releases, and matrix vnext of course having full support for xmpp xml streams and clients i was considering creating my own proxy. so it took only a 90 minute flight to come up with a working solution. i would not consider this solution as production ready yet. but the current design using dotnetty and matrix vnext can support this at high scale. when you are interested you can checkout the project on github here: https://github.com/matrix-xmpp/xmpp-websocket-proxy matrix vnext 2.0 released posted by gnauck on april 30, 2018 comments off on matrix vnext 2.0 released we are thrilled to announce matrix vnext 2.0 main changes in 2.0 are: minor api changes which force major version bump (semver) direct tls support (xep-0368) netstandard 2.0 support new nameresolver wich allows to specify ip addresses of the xmpp server manual new matrix.extensions package with extensions and helper functions myget feed for latest dev builds there is a new website for matrix vnext and the documentation at: https://matrix-xmpp.io/ all source code is available on github now at: https://github.com/matrix-xmpp/matrix-vnext there is a wpf example client based on matrix vnext available on github here: https://github.com/matrix-xmpp/matrix-client introducing matrix vnext posted by gnauck on january 22, 2017 comments off on introducing matrix vnext we are thrilled to announce the next generation of the matrix xmpp libraries. 15 years elapsed already since we started our first .net/c# xmpp library agsxmpp with .net 1.0. our xmpp libraries and the .net technologies had many major evolutions over the years. with the switch to .net core we also took the opportunity for a major rewrite and redesign of the codebase. the api for clients, servers and components is not backwards compatible, but all xmpp protocol classes remain the same. updating existing code bases to matrix vnext should be pretty straightforward. some highlights new software design and more modern api target .net core high performance sockets using azure dotnetty completly task based using the tap pattern (async/await) more linq extensions rx ( reactive extensions ) will be open source and available under a dual license (open source and commercial) here is some demo client code using matrix vnext: var xmppclient = new xmppclient { username = "alex", password = "secret", xmppdomain = "server.com", }; xmppclient .xmppxelementstream .where(el => el.oftype<presence>()) .subscribe(el => { // handle incoming presence debug.writeline(el.cast<presence>().from); }); xmppclient .xmppxelementstream .where(el => el.oftype<message>()) .subscribe(el => { // handle incoming messages debug.writeline(el.cast<message>().body); }); xmppclient .xmppxelementstream .where(el => el.oftype<iq> && el.cast<t>().type == iqtype.get && el.cast<t>().query.oftype<ping>() .subscribe(el => { // handle and reply to incoming pings var iq = xmppxelement.cast<t>(); var resiq = factory.getelement<t>(); resiq.id = iq.id; resiq.to = iq.from; resiq.type = iqtype.result; await xmppclient.sendasync(resiq); }); // connect, secure, authenticate and bind await xmppclient.connectasync(); // request roster (contact list) var roster = await xmppclient.requestrosterasync(); // send own presence to the server xmppclient.sendpresenceasync(show.chat, "free for chat"); releases are available as a nuget packages here: https://www.nuget.org/packages/matrix.vnext firebase cloud messaging with matrix xmpp sdk posted by gnauck on september 24, 2016 0 comments we get a lot of requests on howto use the matrix xmpp sdk with google firebase cloud messaging . the following are the settings for your xmppclient object the xmpp domain is: gcm.googleapis.com the hostname is: fcm-xmpp.googleapis.com it looks like there are no srv records in place, this is why you need to set the hostname manual and disable srv record lookups firebase does not support xmpp’s starttls feature and requires to initiate a tls connection. this is how we have done it in the old days when the protocol still was called jabber. the oldstylessl property takes care of this in matrix’s xmppclient. firebase is using a non standard xmpp port, because no srv records are in place we have to set port 5236 manual in the code the username is your firebase sender id and the password is your server key . you find them in the firebase portal under settings => cloud messagging the contact list and presence feature is not require. so we can disable it by setting autoroster and autopresence to false xmppclient xmppclient = new xmppclient { xmppdomain = "gcm.googleapis.com", hostname = "fcm-xmpp.googleapis.com", port = 5236, resolvesrvrecords = false, oldstylessl = true, username = "your_firebase_sender_id", password = "your_firebase_server_key", autoroster = false, autopresence = false }; xmppclient.open(); you can find a basic example also here in our git repository: https://gitlab.com/matrix-xmpp/samples/tree/master/csharp/firebaseclient see also: https://firebase.google.com/docs/cloud-messaging/server#implementing-the-xmpp-connection-server-protocol matrix xmpp sdk available for .net core posted by gnauck on september 23, 2016 comments off on matrix xmpp sdk available for .net core the matrix xmpp sdk is also available for the .net core now. you can get it from nuget here: https://www.nuget.org/packages/matrix.netcore/ it passed all our internal tests and qa, but its still marked as a pre-release until we collected some more feedback from users. don’t hesitate to contact us directly, or use our forums for any questions related to the .net core version. matrix v2 released posted by gnauck on july 25, 2015 0 comments we are pleased to announce the stable releases of matrix 2. more about the changes in the v2 version can be found in this blog post instead of installers we will use nuget only for all future matrix releases. you can find all matrix nuget packages here sample codes can be found in the git repository here all our customers with active support & maintenance can of course upgrade to matrix 2 for free. updating existing code bases to matrix 2 should only take a few minutes. we highly suggest the update because there are many improvements in the matrix 2 core, and also many new features on our roadmap. matrix js xmpp library in beta now posted by gnauck on may 26, 2015 0 comments we are pleased to announce our new javascript xmpp library matrix js which is available for beta now. matrix js is build with microsoft’s typescript . the software design is very similar to our popular matrix .net xmpp sdk . typescript allowed us to port lots of existing source code, logic and patterns from our matrix c# library to javascript. matrix js is also based on linq and linq to xml . this will make it very easy for our existing customers to port existing code bases to the web or cross platform html/js applications. currently bosh and websockets are supported as transport layers. node.js and tcp sockets are coming later. matrix js will be licensed under a creative commons attribution-noncommercial 4.0 international (cc by-nc 4.0) license. contact us to join the matrix js beta matrix v2 pre release posted by gnauck on february 27, 201

URL analysis for ag-software.net


https://www.ag-software.net/matrix-xmpp-sdk/get-started/
https://www.ag-software.net/2018/11/19/xmpp-websocket-connection-manager/
https://www.ag-software.net/matrix-xmpp-sdk/
http://www.ag-software.net/matrix-xmpp-sdk/
http://www.ag-software.net/contact/
https://www.ag-software.net/2015/07/25/matrix-v2-released/#respond
https://www.ag-software.net/2014/11/12/secure-gmail-authentication-with-x-oauth2-sasl/
https://www.ag-software.net/2016/09/23/matrix-xmpp-sdk-available-for-net-core/
http://www.ag-software.net/download-directory/
http://www.ag-software.net/imprint/
https://www.ag-software.net/contact/
https://www.ag-software.net/matrix-xmpp-sdk/screencasts/
https://www.ag-software.net/2016/09/24/firebase-cloud-messaging-with-matrix-xmpp-sdk/#respond
https://www.ag-software.net/2014/11/12/secure-gmail-authentication-with-x-oauth2-sasl/#respond
https://www.ag-software.net/2015/07/25/matrix-v2-released/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;



Domain Name: ag-software.net
Registry Domain ID: 1444742282_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.registrygate.com
Registrar URL: www.registrygate.com
Updated Date: 2016-04-08T07:15:24.0Z
Creation Date: 2008-04-07T09:06:25.0Z
Registrar Registration Expiration Date: 2017-04-07T09:06:25.0Z
Registrar: RegistryGate GmbH
Registrar IANA ID: 1328
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +49.1805734437
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: Not Available From Registry
Registrant Name: Alexander Gnauck
Registrant Organization: AG-Software
Registrant Street: Am Hasenbuckel 10
Registrant City: Neckarsulm
Registrant State/Province:
Registrant Postal Code: 74172
Registrant Country: DE
Registrant Phone: +49.1602531388
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID: Not Available From Registry
Admin Name: Alexander Gnauck
Admin Organization: AG-Software
Admin Street: Am Hasenbuckel 10
Admin City: Neckarsulm
Admin State/Province:
Admin Postal Code: 74172
Admin Country: DE
Admin Phone: +49.1602531388
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID: Not Available From Registry
Tech Name: Werner Kaltofen
Tech Organization: Neue Medien Muennich GmbH
Tech Street: Hauptstr. 68
Tech City: Friedersdorf
Tech Postal Code: 02742
Tech State/Province:
Tech Country: DE
Tech Phone: +49.3587235310
Tech Phone Ext:
Tech Fax: +49.3587235330
Tech Fax Ext:
Tech Email: [email protected]
Registry Billing ID: Not Available From Registry
Billing Name: Werner Kaltofen
Billing Organization: Neue Medien Muennich GmbH
Billing Street: Hauptstr. 68
Billing City: Friedersdorf
Billing State/Province:
Billing Postal Code: 02742
Billing Country: DE
Billing Phone: +49.3587235310
Billing Phone Ext:
Billing Fax: +49.3587235330
Billing Fax Ext:
Billing Email: [email protected]
Name Server: ns5.kasserver.com
Name Server: ns6.kasserver.com
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: https://wdprs.internic.net/
>>> Last update of WHOIS database: 2017-03-30T00:11:37.0Z <<<

For more information on Whois status codes, please visit https://www.icann.org/epp

Please register your domains at; www.registrygate.com
This data is provided by
for information purposes, and to assist persons obtaining information
about or related to domain name registration records.
does not guarantee its accuracy.
By submitting a WHOIS query, you agree that you will use this data
only for lawful purposes and that, under no circumstances, you will
use this data to
1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via E-mail
(spam) or
2) enable high volume, automated, electronic processes that apply
to this WHOIS server.
These terms may be changed without prior notice.
By submitting this query, you agree to abide by this policy.

  REGISTRAR REGISTRYGATE GMBH

  REFERRER http://www.registrygate.com

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =ag-software.net

  PORT 43

  SERVER whois.registrygate.com

  ARGS ag-software.net

  PORT 43

  TYPE domain

DOMAIN

  NAME ag-software.net

NSERVER

  NS5.KASSERVER.COM 85.13.128.3

  NS6.KASSERVER.COM 85.13.159.101

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

  CHANGED 2016-04-08

  CREATED 2008-04-07

  EXPIRES 2017-04-07

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uag-software.com
  • www.7ag-software.com
  • www.hag-software.com
  • www.kag-software.com
  • www.jag-software.com
  • www.iag-software.com
  • www.8ag-software.com
  • www.yag-software.com
  • www.ag-softwareebc.com
  • www.ag-softwareebc.com
  • www.ag-software3bc.com
  • www.ag-softwarewbc.com
  • www.ag-softwaresbc.com
  • www.ag-software#bc.com
  • www.ag-softwaredbc.com
  • www.ag-softwarefbc.com
  • www.ag-software&bc.com
  • www.ag-softwarerbc.com
  • www.urlw4ebc.com
  • www.ag-software4bc.com
  • www.ag-softwarec.com
  • www.ag-softwarebc.com
  • www.ag-softwarevc.com
  • www.ag-softwarevbc.com
  • www.ag-softwarevc.com
  • www.ag-software c.com
  • www.ag-software bc.com
  • www.ag-software c.com
  • www.ag-softwaregc.com
  • www.ag-softwaregbc.com
  • www.ag-softwaregc.com
  • www.ag-softwarejc.com
  • www.ag-softwarejbc.com
  • www.ag-softwarejc.com
  • www.ag-softwarenc.com
  • www.ag-softwarenbc.com
  • www.ag-softwarenc.com
  • www.ag-softwarehc.com
  • www.ag-softwarehbc.com
  • www.ag-softwarehc.com
  • www.ag-software.com
  • www.ag-softwarec.com
  • www.ag-softwarex.com
  • www.ag-softwarexc.com
  • www.ag-softwarex.com
  • www.ag-softwaref.com
  • www.ag-softwarefc.com
  • www.ag-softwaref.com
  • www.ag-softwarev.com
  • www.ag-softwarevc.com
  • www.ag-softwarev.com
  • www.ag-softwared.com
  • www.ag-softwaredc.com
  • www.ag-softwared.com
  • www.ag-softwarecb.com
  • www.ag-softwarecom
  • www.ag-software..com
  • www.ag-software/com
  • www.ag-software/.com
  • www.ag-software./com
  • www.ag-softwarencom
  • www.ag-softwaren.com
  • www.ag-software.ncom
  • www.ag-software;com
  • www.ag-software;.com
  • www.ag-software.;com
  • www.ag-softwarelcom
  • www.ag-softwarel.com
  • www.ag-software.lcom
  • www.ag-software com
  • www.ag-software .com
  • www.ag-software. com
  • www.ag-software,com
  • www.ag-software,.com
  • www.ag-software.,com
  • www.ag-softwaremcom
  • www.ag-softwarem.com
  • www.ag-software.mcom
  • www.ag-software.ccom
  • www.ag-software.om
  • www.ag-software.ccom
  • www.ag-software.xom
  • www.ag-software.xcom
  • www.ag-software.cxom
  • www.ag-software.fom
  • www.ag-software.fcom
  • www.ag-software.cfom
  • www.ag-software.vom
  • www.ag-software.vcom
  • www.ag-software.cvom
  • www.ag-software.dom
  • www.ag-software.dcom
  • www.ag-software.cdom
  • www.ag-softwarec.om
  • www.ag-software.cm
  • www.ag-software.coom
  • www.ag-software.cpm
  • www.ag-software.cpom
  • www.ag-software.copm
  • www.ag-software.cim
  • www.ag-software.ciom
  • www.ag-software.coim
  • www.ag-software.ckm
  • www.ag-software.ckom
  • www.ag-software.cokm
  • www.ag-software.clm
  • www.ag-software.clom
  • www.ag-software.colm
  • www.ag-software.c0m
  • www.ag-software.c0om
  • www.ag-software.co0m
  • www.ag-software.c:m
  • www.ag-software.c:om
  • www.ag-software.co:m
  • www.ag-software.c9m
  • www.ag-software.c9om
  • www.ag-software.co9m
  • www.ag-software.ocm
  • www.ag-software.co
  • ag-software.netm
  • www.ag-software.con
  • www.ag-software.conm
  • ag-software.netn
  • www.ag-software.col
  • www.ag-software.colm
  • ag-software.netl
  • www.ag-software.co
  • www.ag-software.co m
  • ag-software.net
  • www.ag-software.cok
  • www.ag-software.cokm
  • ag-software.netk
  • www.ag-software.co,
  • www.ag-software.co,m
  • ag-software.net,
  • www.ag-software.coj
  • www.ag-software.cojm
  • ag-software.netj
  • www.ag-software.cmo
Show All Mistakes Hide All Mistakes