Données techniques du cyrilhome.over-blog.net
Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations.
Notre service GeoIP a trouvé l'hôte cyrilhome.over-blog.net.Actuellement, hébergé dans France et son fournisseur de services est Overblog SAS .
Latitude: |
43.604259490967 |
Longitude: |
1.4436700344086 |
Pays: |
France (fr)
|
Ville: |
Toulouse |
Région: |
Midi-Pyrenees |
ISP: |
Overblog SAS |
Analyse d'en-tête HTTP
Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.
fhost: | cyrilhome.overblog.net |
Content-Length: | 18325 |
X-Varnish: | 881219281 |
Content-Encoding: | gzip |
powered-by: | overblog |
Age: | 0 |
Vary: | Accept-Encoding |
server: | EsclaveHTTP |
Connection: | keep-alive |
ETag: | "d52503c68e2bd75829f0d029a63e193e63ed9bf6" |
Cache-Control: | max-age=15, public, s-maxage=15 |
Date: | Fri, 20 Jul 2018 19:59:48 GMT |
Content-Type: | text/html; charset=UTF-8 |
X-URL: | / |
DNS
ipv4: | IP:195.20.13.154 ASN:43424 OWNER:PROCEAU, FR Country:FR
|
HtmlToText
suivre ce blog administration connexion + créer mon blog développement .net par cyril 1 2 3 4 5 6 7 8 9 10 > >> 15 novembre 2014 6 15 / 11 / novembre / 2014 10:04 [vs] the debugger resource dll is out of date sans aucune raison apparente, l'erreur "the debugger resource dll is out of date" est apparue lorsque je tentais de debugger mon application sous visual studio 2013. le message d'erreur conseillait de faire un "repair" de visual studio, ce que j'ai fait sans succès. pire encore, toute tentative de désinstallation de visual studio 2013 m'était impossible avec une obscure erreur 0x80070643 à propos du "core features". tout ce que j'ai pu trouver sur internet n'a pas résolu mon problème. j'ai donc improvisé et voici ce que j'ai fait pour résoudre cette erreur. 1- j'ai installé revo uninstaller et j'ai désinstallé vs 2013 en mode avancé en effaçant tout ce que le logiciel pouvait trouver. 2- j'ai effacé manuellement les dossiers c:\program files (x86)\microsoft visual studio 12.0 et c:\program files (x86)\microsoft visual studio 11.0 3- j'ai redémarré mon pc et refais une installation de visual studio 2013. l'installation c'est terminé avec plusieurs erreurs mineurs. a ce stade, vs 2013 ne fonctionnait toujours pas car même le fichier devenv.exe n'était pas présent dans le dossier ! 4- j'ai fait un "repair" de l'installation qui c'est terminé sans erreur et tout fonctionne normalement :) je cherche toujours à comprendre le "pourquoi" de cette erreur. repost 0 published by cyril - dans visual studio commenter cet article 25 avril 2014 5 25 / 04 / avril / 2014 16:20 [wcf] internal .net framework data provider error 1004 si vous utilisez odata avec des queryinterceptor vous avez peut-être rencontré l'erreur suivante en utilisant un .expand dans votre requête linq : "internal .net framework data provider error 1004, 0, related entities cannot be specified for entity constructors that are not part of the query mapping view for an entity set." laissez moi deviner. vous utilisez .any dans votre queryinterceptor n'est-ce pas ? et bien il est temps de changer cette habitude en utilisant .firstordefault au lieu de faire : return function(o) o.utilisateurs.any(function(e) e.fkuserid = pkuserkey) faites plutôt : return function(o) o.utilisateurs.firstordefault((function(e) e.fkuserid = pkuserkey)) isnot nothing et surtout, n'utilisez pas .count qui sera gourmand en ressources. repost 0 published by cyril commenter cet article 4 avril 2013 4 04 / 04 / avril / 2013 16:35 [logiciels] lancement d'aesphere gestion j'ai le plaisir de vous annoncer le lancement du logicel de gestion pour auto-entrepreneurs aesphere gestion . vous pouvez l'essayer gratuitement à cette adresse : http://www.aesphere.fr repost 0 published by cyril - dans logiciels commenter cet article 20 mars 2013 3 20 / 03 / mars / 2013 17:18 [wcf] passer un cookie d'identification à un wcf service utilisant aspnetcompatibilityenabled=true beaucoup pensent qu'il n'est pas possible de passer un cookie d'identification à un wcf service. les méthodes suivantes démontrent que c'est possible. méthode 1 : tout d'abord mettez le code suivant dans le constructeur de votre service : public sub new() thread.currentprincipal = httpcontext.current.user end sub voici comment appeller la méthode de votre service : dim ws as new serviceweb.servicecontractclient dim valid = membership.validateuser("jacques", "monmotdepasse") dim identity = trycast(thread.currentprincipal.identity, clientformsidentity) using ocs = new operationcontextscope(trycast(ws.innerchannel, icontextchannel)) dim ch = identity.authenticationcookies.getcookieheader(ws.endpoint.listenuri) dim rmp as new httprequestmessageproperty() rmp.headers(httprequestheader.cookie) = ch dim col = ws.endpoint.binding.createbindingelements() dim transport = col.find(of httptransportbindingelement)() transport.allowcookies = true ws.endpoint.binding = new custombinding(col) operationcontext.current.outgoingmessageproperties.add(httprequestmessageproperty.name, rmp) ws.mamethode(mesparametres) end using méthode 2 : tapez une dizaine de lignes de codes à chaque fois que vous devez appeller une méthode de votre wcf service ce n'est pas très pratique. voici donc comment automatiser l'ajout d'un cookie dans l'entête. tout d'abord il nous faut créer 2 classes cookiebehavior et cookiemessageinspector qui implémentent respectivement iendpointbehavior et iclientmessageinspector. imports system.servicemodel.description imports system.servicemodel.dispatcher imports system.servicemodel.channels imports system.servicemodel imports system.threading imports system.web.clientservices imports system.net public class cookiebehavior implements iendpointbehavior private cookie as string public sub new(cookie as string) me.cookie = cookie end sub public sub addbindingparameters(serviceendpoint as serviceendpoint, bindingparameters as system.servicemodel.channels.bindingparametercollection) implements iendpointbehavior.addbindingparameters end sub public sub applyclientbehavior(serviceendpoint as serviceendpoint, behavior as system.servicemodel.dispatcher.clientruntime) implements iendpointbehavior.applyclientbehavior behavior.messageinspectors.add(new cookiemessageinspector(cookie)) end sub public sub applydispatchbehavior(serviceendpoint as serviceendpoint, endpointdispatcher as system.servicemodel.dispatcher.endpointdispatcher) implements iendpointbehavior.applydispatchbehavior end sub public sub validate(serviceendpoint as serviceendpoint) implements iendpointbehavior.validate end sub end class public class cookiemessageinspector implements iclientmessageinspector private cookie as string public sub new(cookie as string) me.cookie = cookie end sub public sub afterreceivereply(byref reply as system.servicemodel.channels.message, correlationstate as object) implements iclientmessageinspector.afterreceivereply end sub public function beforesendrequest(byref request as system.servicemodel.channels.message, channel as system.servicemodel.iclientchannel) as object implements iclientmessageinspector.beforesendrequest dim httprequestmessage as httprequestmessageproperty dim httprequestmessageobject as object = nothing if request.properties.trygetvalue(httprequestmessageproperty.name, httprequestmessageobject) then httprequestmessage = trycast(httprequestmessageobject, httprequestmessageproperty) if string.isnullorempty(httprequestmessage.headers("cookie")) then httprequestmessage.headers("cookie") = cookie end if else httprequestmessage = new httprequestmessageproperty() httprequestmessage.headers.add("cookie", cookie) request.properties.add(httprequestmessageproperty.name, httprequestmessage) end if return nothing end function end class maintenant il suffit de taper 2 lignes pour créer votre wcf service avec son cookie d'authentification en entête. dim ws as new serviceweb.servicecontractclient ws.endpoint.behaviors.add(new cookiebehavior(directcast(thread.currentprincipal.identity, clientformsidentity).authenticationcookies.getcookieheader(ws.endpoint.listenuri))) repost 0 published by cyril - dans wcf commenter cet article 16 mars 2013 6 16 / 03 / mars / 2013 16:33 [vb.net] comment utiliser dotfuscator ce 5.5 avec clickonce il est important de protéger son code. même si dotfuscator ce n’a pas toutes les fonctionnalités nécessaires à une bonne obfuscation il permet néanmoins de rendre le code moins compréhensible. dotfuscator ce ne permet pas d’obfusquer le code à la volé et de le signer lorsque l’on utilise le bouton “ publish wizard ” de visual studio 2012 pour un projet clickonce . il est cependant possible de le faire en suivant les étapes suivantes (configuration release): 1- faite un rebuild de votre application 2- copiez tous les .dll se trouvant dans le dossier /bin/release dans le dossier /obj/release 3- ouvrez dotfuscator ce et obfusquez votre application (.exe) se trouvant dans le dossier /obj/release 4- remplacez le fichier de votre application se trouvant dans /ob
Analyse PopURL pour cyrilhome.over-blog.net
http://cyrilhome.over-blog.net/
http://cyrilhome.over-blog.net/article-97892234.html
http://cyrilhome.over-blog.net/article-13916520.html
http://cyrilhome.over-blog.net/article-10237868.html
http://cyrilhome.over-blog.net/article-74309531.html
http://cyrilhome.over-blog.net/article-29690956.html
Informations Whois
Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;
Domain Name: over-blog.net
Registry Domain ID: 131380629_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.gandi.net
Registrar URL: http://www.gandi.net
Updated Date: 2017-07-02T03:39:51Z
Creation Date: 2004-09-30T03:32:17Z
Registrar Registration Expiration Date: 2017-09-30T03:32:17Z
Registrar: GANDI SAS
Registrar IANA ID: 81
Registrar Abuse Contact Email: abuse@support.gandi.net
Registrar Abuse Contact Phone: +33.170377661
Reseller:
Domain Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
Domain Status:
Domain Status:
Domain Status:
Domain Status:
Registry Registrant ID:
Registrant Name: Cédric SIRE
Registrant Organization: JFG NETWORKS
Registrant Street: 1 place Occitane
Immeuble Le Sully
Registrant City: TOULOUSE
Registrant State/Province:
Registrant Postal Code: 31000
Registrant Country: FR
Registrant Phone: +33.562483390
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: cace3e644ad2014748345fa9b30e8757-1090592@contact.gandi.net
Registry Admin ID:
Admin Name: Cédric SIRE
Admin Organization: JFG NETWORKS
Admin Street: 1 place Occitane
Immeuble Le Sully
Admin City: TOULOUSE
Admin State/Province:
Admin Postal Code: 31000
Admin Country: FR
Admin Phone: +33.562483390
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: cace3e644ad2014748345fa9b30e8757-1090592@contact.gandi.net
Registry Tech ID:
Tech Name: Cédric SIRE
Tech Organization: JFG NETWORKS
Tech Street: 1 place Occitane
Immeuble Le Sully
Tech City: TOULOUSE
Tech State/Province:
Tech Postal Code: 31000
Tech Country: FR
Tech Phone: +33.562483390
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: cace3e644ad2014748345fa9b30e8757-1090592@contact.gandi.net
Name Server: NS0.PROCEAU.NET
Name Server: NS1.PROCEAU.NET
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
Name Server:
DNSSEC: Unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2017-07-06T09:50:15Z <<<
For more information on Whois status codes, please visit
https://www.icann.org/epp
Reseller Email:
Reseller URL:
Personal data access and use are governed by French law, any use for the purpose of unsolicited mass commercial advertising as well as any mass or automated inquiries (for any intent other than the registration or modification of a domain name) are strictly forbidden. Copy of whole or part of our database without Gandi's endorsement is strictly forbidden.
A dispute over the ownership of a domain name may be subject to the alternate procedure established by the Registry in question or brought before the courts.
For additional information, please contact us via the following form:
https://www.gandi.net/support/contacter/mail/
REGISTRAR GANDI SAS
REFERRER http://www.gandi.net
SERVERS
SERVER net.whois-servers.net
ARGS domain =over-blog.net
PORT 43
SERVER whois.gandi.net
ARGS over-blog.net
PORT 43
TYPE domain
RegrInfo
DOMAIN
NAME over-blog.net
NSERVER
NS0.PROCEAU.NET 83.243.21.30
NS1.PROCEAU.NET 77.87.104.10
STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
CHANGED 2016-08-30
CREATED 2004-09-30
EXPIRES 2017-09-30
REGISTERED yes
Go to top