Search found 88 matches: schemas

Return to advanced search

Re: Leer datos especifico de un XML

... como puedo leer o capturar ese adjunto que viene con la respuesta... te dejo la respuesta del webservice <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">    <env:Header>       <cl:token xmlns:cl="cl.zofri.sve">4327b70a4411182b4--27e0df65-a4-2-60cb-3899 ...
by elmoiquique
Fri May 04, 2012 8:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer datos especifico de un XML
Replies: 26
Views: 10594

Error CDO si en el server pongo la IP

Tengo una aplicacion que si tengo puesto este valor funciona perfectamente; s_smtpServer=smtp.gmail.com :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := s_smtpServer Pero si el valor es la IP, 173.194.78.108, entonces da error. ¿ Sabe alguien a ...
by thefull
Fri Mar 16, 2012 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error CDO si en el server pongo la IP
Replies: 6
Views: 1076

Sending email

... everybody, I send email with success with this: oCfg := CREATEOBJECT( "CDO.Configuration" ) WITH OBJECT oCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := cServ :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by Wanderson
Fri Feb 24, 2012 5:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending email
Replies: 2
Views: 616

Re: Volviendo al tema CDO

... ) ) AAdd( aAttach, cToken ) EndDo Try oCfg := CreateObject( "CDO.Configuration" ) With Object oCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := allTrim( cMailServer ) :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by Armando Picon
Fri Nov 04, 2011 2:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Volviendo al tema CDO
Replies: 19
Views: 6522

Re: RBBTN (SOLUCIONADO)

... por ejemplo el GROUP BOX <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity type="win32" name="MyOrganization.MyDivision.MyApp" ...
by elmoiquique
Sun Mar 13, 2011 7:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RBBTN (SOLUCIONADO)
Replies: 29
Views: 5884

Re: How to send email from app ?

... TRY oEmailCfg := CREATEOBJECT( "CDO.Configuration" ) WITH OBJECT oEmailCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := "smtp.gmail.com" :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by Jack
Sun Mar 06, 2011 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from app ?
Replies: 3
Views: 1921

Re: Ayuda con WEBSERVICE

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Header> <cl:token xmlns:cl="cl.zofri.sve">fb27a2004f1fa9052--ceb1fac1-34-6-c213-7b12 5ff1-d860-3:6442daa2485:42432-b6792206f0fc915d-0c-b-f3c1-a4162c-17-2bd275df ...
by elmoiquique
Sat Nov 27, 2010 7:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con WEBSERVICE
Replies: 15
Views: 6628

Ayuda con WEBSERVICE

... LOCAL cXml:=""+; '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cl="cl.zofri.sve" xmlns:wsn="http://cl/zofri/sve/prf/wsn" xmlns:java="java:cl.zofri.sve.app.eo">'+; ...
by elmoiquique
Mon Nov 15, 2010 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con WEBSERVICE
Replies: 15
Views: 6628

Re: SMTP Inconsistent result - ideas ?

... Main() Local oEmailCfg,oEmailMsg TRY oEmailCfg := CREATEOBJECT( "CDO.Configuration" ) WITH OBJECT oEmailCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := "mail.xxxxxxxx.com" :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by ukservice
Sun Oct 31, 2010 10:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SMTP Inconsistent result - ideas ?
Replies: 5
Views: 1518

Re: Duda de ejemplo de CDOSYS de Mr. Manuel Mercado

... me funciona OK, Local loCfg, loMsg, oError TRY loCfg := CREATEOBJECT( "CDO.Configuration" ) WITH OBJECT loCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := "smtp.gmail.com" :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by mag071
Mon Jun 21, 2010 4:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de ejemplo de CDOSYS de Mr. Manuel Mercado
Replies: 1
Views: 498

Re: TO ANTONIO : XML CLASS

... <?xml version="1.0" encoding="ISO-8859-1"?> <CUSTOMER xmlns:dt="urn:schemas-microsoft-com:datatypes" Database = "CUSTOMER" > <Record Numero = " 1" > <FIRST>Homer </FIRST> ...
by Silvio
Wed Dec 02, 2009 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO ANTONIO : XML CLASS
Replies: 15
Views: 3876

Re: Import from oracle database

ADOX works as recommended above,

Another way is to use the SQL statment

SELECT OWNER, TABLE_NAME FROM ALL_TABLES.

Depending on the rights of the querying user, he gets a list of all Schemas ( as OWNER ) and all Tables within each schema, to which he has access
by nageswaragunupudi
Sun Nov 29, 2009 2:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import from oracle database
Replies: 3
Views: 490

SOAP con Autentificacion

... el XML con tags SOAP. oHttp:Send( cXml ) ? oHttp:responseText return nil // --- XML DE EJEMPLO <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sol="http://ejemplo"> <soapenv:Header/> <soapenv:Body> <sol:respuesta_ws> ...
by thefull
Fri Nov 20, 2009 4:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SOAP con Autentificacion
Replies: 15
Views: 5523

Re: enviar emails desde fwh

... El include, está intacto, asi: #ifndef _CDOSYS_CH #define _CDOSYS_CH #define cdoSMTPServer "http://schemas.microsoft.com/cdo/configuration/smtpserver" #define cdoSMTPServerPort "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ...
by FranciscoA
Wed Feb 25, 2009 2:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar emails desde fwh
Replies: 44
Views: 21326

Advantage DS

... me COMIX is king (for local /small network access) and that is what s/be in Harbour Is COMIX still alive?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> My version is from 1997. yes, for 5.2 if you have Clipper 5.3, the DBFCDX in Clipper 5.3 is Comix. I think ...
by Antonio Linares
Wed Aug 27, 2008 7:30 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 93955
PreviousNext

Return to advanced search