You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(7) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
(1) |
Apr
(23) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
(2) |
2005 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
(6) |
Jun
(4) |
Jul
(4) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(4) |
2006 |
Jan
(1) |
Feb
(6) |
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
(1) |
Aug
(4) |
Sep
(4) |
Oct
(4) |
Nov
(6) |
Dec
(3) |
2007 |
Jan
(1) |
Feb
(6) |
Mar
|
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(12) |
Oct
(19) |
Nov
(7) |
Dec
(7) |
2008 |
Jan
(14) |
Feb
(27) |
Mar
(23) |
Apr
(5) |
May
|
Jun
(1) |
Jul
|
Aug
(9) |
Sep
(22) |
Oct
|
Nov
(5) |
Dec
(7) |
2009 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2010 |
Jan
|
Feb
(8) |
Mar
|
Apr
(1) |
May
|
Jun
(5) |
Jul
(4) |
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
(2) |
Dec
(2) |
2011 |
Jan
(1) |
Feb
(1) |
Mar
(3) |
Apr
|
May
(7) |
Jun
(3) |
Jul
(8) |
Aug
(9) |
Sep
(5) |
Oct
(4) |
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(6) |
Oct
(20) |
Nov
(15) |
Dec
(11) |
2013 |
Jan
(1) |
Feb
(40) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Andrew S. <stu...@tc...> - 2006-10-20 19:19:37
|
Does anyone have experience with PeopleSoft and connecting to a SOAP::Lite server? I have a simple test server setup in perl but I need to provide a primary url in PeopleSoft. What url would I reference? When creating a SOAP::Lite client you have the uri and the proxy... but neither of these seem to work. Any help would be appreciated.... Thanks! Andy |
From: Steve B. <ste...@ya...> - 2006-10-11 15:14:10
|
Hi, I'm having a problem parsing some XML in PERL with SOAP::LITE and was wondering if anyone could help me out. I'm trying to get access to the each of the networkAdmin nodes (see below) while parsing the individual networks. The way I've been trying to do this heretofore is: for my $t ($som->valueof('//networks/network')) { print $t->attr->{ID} . "\n"; #now print each of the user admins #doesn't work###f or my $tt($som->valueof('networkAdmin')) { #doesn't work### print $tt->attr{status} . "\n"; } Any help you could give so that I can access the networkAdmin nodes while parsing the individual network nodes would be appreciated. XML below: XML below: <networks> <network ID="1600012" name="node2"> <metadata> <location>ireland</location> <date_established>2006-06-28</date_established> </metadata> <networkAdmin UID="1" name="X" techCert="C1" status="1"/> <networkAdmin UID="2" name="XX" techCert="D1" status="1"/> </network> <network ID="1611400" name="nodeX"> <metadata> <location>utah</location> <date_established>1954-11-24</date_established> </metadata> <networkAdmin UID="1" name="AB" techCert="A1" status="1"/> <networkAdmin UID="2" name="AC" techCert="E1" status="1"/> <networkAdmin UID="3" name="AC" techCert="E1" status="1"/> </network> Thanks in advance! --------------------------------- Get your email and more, right on the new Yahoo.com |
From: Olivier R. <oli...@st...> - 2006-10-09 08:01:49
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Hi All,<br> <br> As many other people, I encountered problem to build request with nested data.<br> <br> My WSDL file which contains:<br> <br> <small><tt> <xsd:complexType name="ArrayOfArtifact"><br> <xsd:complexContent><br> <xsd:restriction base="SOAP-ENC:Array"><br> <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:Artifact[]"/><br> </xsd:restriction><br> </xsd:complexContent><br> </xsd:complexType><br> ...<br> <xsd:complexType name="Criteria"><br> <xsd:sequence><br> <xsd:element name="field_name" type="xsd:string"/><br> <xsd:element name="field_value" type="xsd:string"/><br> <xsd:element name="operator" type="xsd:string"/><br> </xsd:sequence><br> </xsd:complexType><br> ...<br> <message name="getArtifactsRequest"><br> <part name="sessionKey" type="xsd:string"/><br> <part name="group_id" type="xsd:int"/><br> <part name="group_artifact_id" type="xsd:int"/><br> <b> <big><font color="#ff0000"><part name="criteria" type="tns:ArrayOfCriteria"/></font></big></b><br> <part name="offset" type="xsd:int"/><br> <part name="max_rows" type="xsd:int"/><br> </message><br> ...<br> <message name="getArtifactsResponse"><br> <part name="return" type="tns:ArrayOfArtifact"/><br> </message></tt></small><br> <br> I build a <tt><i>getArtifacts</i> </tt>request as shown below, and it is accepted but criterias (in red) are never taken into account.<br> <tt>my $result = $soap->getArtifacts($session_hash,<br> 102,<br> 109,<font color="#ff0000"><b><br> [ { field_name=>'status_id', operator=>'=', field_value=>'1' } ]</b></font>,<br> 0,<br> 0);</tt><br> <br> A very similar code works properly in PHP (cf. nusoap.php) but I would prefer to use Perl. See in attachment XML requests generated respectively from PHP and from Perl.<br> <br> I performed a lot of other attempts (use Tie:IxHash, use <a class="moz-txt-link-freetext" href="SOAP::WSDL">SOAP::WSDL</a>) but I encountered more additional problems rather than solution (eg. non-nul proxy requested).<br> <br> How should I proceed?<br> <br> Thanks in advance,<br> Olivier<br> <br> <br> <br> </body> </html> |
From: Martine C. <Mar...@bu...> - 2006-09-26 08:05:34
|
Hi In the SOAP::Lite mailing lists, I 've seen that a lot of people have the same problem as me, but I don't see a solution! The problem occurs when I try to give an array of strings as argument of a WEB service method. I can receive an array of strings (ArrayOf_xsd_string) from the endpoint with no problems, but I cannot use an an array of strings as a method parameter. When I give an array of strings I get this error message: Type 'ArrayOf_xsd_string' can't be found in a schema class 'SOAP::Serializer' THanks for your help Martine |
From: D.Kreft <da...@kr...> - 2006-09-22 18:32:46
|
I've got a patch to submit for a WSDL parsing bugfix: Can't call method "element" on an undefined value at /apollo/env/SDETools/perl/lib/perl5.8/SOAP/Lite.pm line 2829. Which happens when the WSDL defines a method that takes no arguments and represents it thusly: <wsdl:message name="getAllRequestsMessage"/> (Which is happening for me with an Axis2 1.0 web service.) I was going to submit a bug (and the patch) through SourceForge, but the bug tracker has TONS of bugs that were filed as far back as 2003 without having been updated, so I'm wondering if it'd even be worth my time to put the bug there. Has the bug tracker turned into a big bit-bucket? -dan |
From: Martine C. <Mar...@bu...> - 2006-09-22 13:43:11
|
Hi, I have a problem with SOAP::Lite. I have the following error : *Type 'ArrayOf_xsd_string' can't be found in a schema class 'SOAP::Serializer' *I try to run a method "invoke" with an argument which is an array of strings. In the WSDL I have : <wsdl:message name="invokeRequest"> <wsdl:part name="in0" type="xsd:string"/> <wsdl:part name="in1" type="xsd:string"/> <wsdl:part name="in2" type="xsd:string"/> *<wsdl:part name="in3" type="impl:ArrayOf_xsd_string"/>* </wsdl:message> <wsdl:operation name="invoke" parameterOrder="in0 in1 in2 in3"> <wsdl:input name="invokeRequest" message="impl:invokeRequest"/> <wsdl:output name="invokeResponse" message="impl:invokeResponse"/> <wsdl:fault name="ManagementEndpointException" message="impl:ManagementEndpointException"/> </wsdl:operation> Thanks to help me Martine |
From: Balachandran K. <bk...@ho...> - 2006-09-18 13:16:00
|
Could anyone please direct me to resolve this issue?. I am trying a simple webservice that echo's the passed string. And I get this error error: soap:Client: Failed to locate method (Echo) in class (main) at /usr/lib/perl5/site_perl/5.8.8/SOAP/Lite.pm line 2586. Please help. Thanks |
From: Scott W. <sc...@pe...> - 2006-08-28 15:37:50
|
Please review the following patch for Lite.pm in generate_stub(): <snip> --- SOAP-Lite-0.69/lib/SOAP/Lite.pm 2006-08-16 08:49:34.000000000 -0600 +++ SOAP-Lite-0.69-patched3/lib/SOAP/Lite.pm 2006-08-28 09:19:27.000000000 -0600 @@ -3040,7 +3040,7 @@ my $method = 'as_'.$typename; # TODO - if can('as_'.$typename) {...} my $result = $self->serializer->$method($param, $template->name, $template->type, $template->attr); - push(@parameters, $template->value($result->[2])); + push(@parameters, $template->value($result ? $result->[2] : $param)); } else { push(@parameters, $param); } </snip> This fixes the case where the $result is undef because of an @{$export_var} lookup failure in serializer's AUTOLOAD method (see "this is a total hack...it is still a hack" notes in AUTOLOAD). It may be that my "fix" is really just a workaround for behavior that should be better addressed in serializer's AUTOLOAD, but I couldn't grok how $export_var is supposed to get the WSDL-defined methods in it for lookup in the first place. In any case, this patch doesn't break any tests (at least the unskipped ones on my system) and allows Google's new AdSense API to work--namely the createAdSenseAccount function, which uses a "literal array" (at least how encode_object() classifies it) creates a parameter list like this: <foo>value1</foo> <foo>value2</foo> instead of an empty scalar: <foo type="sometype"/> because the $result is 'undef' without the patch. I'd appreciate any feedback on it. Scott -- Scott Wiersdorf <sc...@pe...> |
From: <Fre...@lo...> - 2006-08-16 16:44:22
|
Hi everybody, =20 I'm trying to write a SAOP server with SOAP::Lite 0.68. I want my server to attach a file, like this: =20 my $ent =3D MIME::Entity->build( Type =3D> = 'application/pdf', Encoding =3D> 'base64', ... ); return $ent; =20 When I tried this with SOAP::Lite 0.60, I saw attachment in my response: =20 Content-Type: Multipart/Related; = boundary=3D"----------=3D_1155306721-4096-2" (...) =20 This is a multi-part message in MIME format... =20 ------------=3D_1155306721-4096-2 Content-Type: text/xml (...) SOAP envelope (...) ------------=3D_1155306721-4096-2 Content-Type: application/pdf; (...) attachment (...) ------------=3D_1155306721-4096-2-- =20 Now, with SOAP::Lite 0.68, I don't see any attachment. Maybe my implementation is not up-to-date, but I don't find any example = on the web. Please help. Fred. |
From: Marcos D. M. T. <Mar...@so...> - 2006-08-04 10:02:27
|
Hi there, Since I don't know if you're checking CPAN's bug tracking system or SF.net's one (or none), I decided to send here an e-mail just to point to a nasty bug and an ugly patch that fixes it on SOAP::Lite . http://sourceforge.net/tracker/index.php?func=detail&aid=1533836&group_id=66000&atid=513017 It would be great to see this fixed in SOAP::Lite's next version (with this fix or something better...) Best regards, -- Marcos Marado <Mar...@so...> Sonaecom ISP $ cat sig.pl ''=~('(?{'.('^)@@*@'^'.[).^`').'"'.('`@@?@~//[*;)@`//)@|'^'-).[`<@@(^^[`.@@[)^').',$/})') $ |
From: Ger A. <g.a...@ar...> - 2006-08-03 12:48:00
|
Hi, I tried the soaplite-users mailinglist, but it is very low-traffic and I could not get answers to my problem. Hope you can help me.. :) I'm trying to get the SOAP server to respond with a (MIME) attachment. The send-receive server example @majordojo (http://www.majordojo.com/SOAP-MIME/samples/) does not work (for me). Error: --------------------%<------------------------ SOAP::Serializer::envelope: Server Can't call method "parts" on unblessed reference at ./Server.cgi line 110. --------------------%<------------------------ Code: --------------------%<------------------------ my $self = shift; my $envelope = pop; foreach my $part (@{$envelope->parts}) { #this is line 110 print STDERR "Attachment found! (".ref($$part).")\n"; } --------------------%<------------------------ Any help/tips GREATLY appreciated! BTW: It's not only attachments I have to receive. I also have got some values that I need to retrieve. How can I get them out of the envelope? I read here (http://www.majordojo.com/soapmime/soapmime_and_so.php) that SOAP::MIME and SOAP::Lite merged in 2003. Is this perhaps the cause that the examples are not working? Many thanks, Ger. Op dinsdag 1 augustus 2006 16:47, schreef techrg99: > Hey Ger, > > Yes. I am using the sample code. > > Try changning your client-side SOAP code so that you see the SOAP > debugging stuff... > > use SOAP::Lite +trace => qw(debug); > > You will still get the 500 error, but you will be able to see exactly > what SOAP is doing, or trying to do :-) > > Steve > > --- In soa...@ya..., Ger Apeldoorn <g.apeldoorn@...> wrote: > > Hi Steve, > > > > Have you seen this one? > > > > http://www.majordojo.com/SOAP-MIME/samples/ > > > > I'm currently trying to do something like you described, but I'm > > still at > > > the "INTERNAL SERVER ERROR" stage... :S > > > > Ger. > > > > Op dinsdag 1 augustus 2006 01:01, schreef u: > > > Hi all, > > > > > > I have the following server configuration: > > > Apache 2.2.2 (w/ mod_perl), SOAP::Lite 0.68, and Expat 2.0.0 > > > > > > I am trying to send a MIME::Entity attachment from a client perl > > > script to the SOAP server. (Both of which are on the same machine for > > > now). > > > > > > I've tried a lot of the MIME::Entity build options, and SOAP::Lite > > > options. But, it seems when ever I use the parts() option to attach > > > my MIME::Entities to my soap call, the call fails with the following > > > error message: > > > > > > -- > > > <faultcode>soap:Client</faultcode><faultstring>Application failed > > > during request deserialization: > > > syntax error at line 1, column 0, byte 0 at > > /usr/local/perl/lib/site_perl/5.8.8/i686-linux-thread-multi/XML/Parser.pm > > > > line 187 > > > </faultstring> > > > -- > > > > > > Has anyone successfully sent a MIME attachment from a perl client to > > > an Apache/SOAP Server? I have not found any recent examples out > > there. > > > > Thanks, > > > > > > Steve > > > > -- > > ARGOSS: your partner for atmospheric, marine & coastal information > > P O Box 61 > > 8325ZH Vollenhove The Netherlands > > tel +31-527-242299 fax +31-527-242016 > > Web http://www.argoss.nl > > > > Confidentiality Notice & Disclaimer > > The contents of this e-mail and any attachments are intended only > > for the > > > use of the e-mail addressee(s) shown. If you are not that person, or > > one of > > > those persons, you are not allowed to take any action based upon it > > or to > > > copy it, forward, distribute or disclose the contents of it and you > > should > > > please delete it from your system. > > > > ARGOSS Holding BV and its subsidiaries do not accept any liability > > for any > > > errors or omissions in the context of this e-mail or its attachments > > which > > > arise as a result of Internet transmission, nor accept liability for > > statements which are those of the author and not clearly made on > > behalf of > > > ARGOSS. -- ARGOSS: your partner for atmospheric, marine & coastal information P O Box 61 8325ZH Vollenhove The Netherlands tel +31-527-242299 fax +31-527-242016 Web http://www.argoss.nl Confidentiality Notice & Disclaimer The contents of this e-mail and any attachments are intended only for the use of the e-mail addressee(s) shown. If you are not that person, or one of those persons, you are not allowed to take any action based upon it or to copy it, forward, distribute or disclose the contents of it and you should please delete it from your system. ARGOSS Holding BV and its subsidiaries do not accept any liability for any errors or omissions in the context of this e-mail or its attachments which arise as a result of Internet transmission, nor accept liability for statements which are those of the author and not clearly made on behalf of ARGOSS. |
From: Marten L. <le...@cn...> - 2006-07-31 17:49:58
|
Hello, SOAP::Lite has a lot of confuration options at the installation, but unfortunately they don't seem to work. It doesn't matter if I'm using the long or the short form, I always get errors like that: # perl Makefile.PL --noHTTP-Daemon --noIO-Server Unknown option: nohttp-daemon Unknown option: noio-server I guessd no might want to have an additional dash, but this doesn't work either: # perl Makefile.PL --no-HTTP-Daemon --no-IO-Server Unknown option: no-http-daemon Unknown option: no-io-server [...] For rpm-packing, I would really like to use these options, but I didn't get them to work neither in old releases, nor in the latest release. Any hints? Regards Marten |
From: <oz...@ik...> - 2006-06-15 12:39:36
|
<html> <head> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="font-family:Arial, Helvetica, sans-serif; font-size:14px;"> <tr> <td><p style="margin:0px;"><b><font color="#000099">Мастерская развития бизнеса<SUP><FONT SIZE="-1">TM</FONT></SUP> для руководителей и их команд</font></b> <br> <b><font color="#FF0000" size="4">Атакующий маркетинг</font></b><font size="3"> <b><SUP><FONT SIZE="-1">TM</FONT></SUP></b> <b>для руководителей</b> </font> <b> </b><br> (Система Атакующий бизнес<SUP><FONT SIZE="-1">TM</FONT></SUP>)</p> <p align="right" style="margin:0px;">22-24 июня, Киев, тел.(044) 46I~46~I0 </p> <p style="margin:0px;"><b>Тренинг управления спросом </b><br> <b>Тренинг повышения конкурентоспособности Вашей компании</b><br> <b>Тренинг развития Вашего бизнеса</b><br> <b><font face="Verdana, Arial, Helvetica, sans-serif">•</font></b> <font face="Times New Roman, Times, serif">Наиболее эффективные методы обеспечения спроса </font><b><font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Быстрое определение перспективных направлений бизнеса, товаров и услуг для продвижения</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Методы быстрого (2-3 месяца) повышения прибыльности ваших товаров и услуг</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Методы повышения текущего спроса</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Методы создания "взрывного" спроса в условиях сильной конкуренции</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font></b> <font face="Times New Roman, Times, serif">Методы мгновенного выявления резервов вашей конкурентоспособности</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Методы создания ваших новых товаров и услуг </font><b><font face="Verdana, Arial, Helvetica, sans-serif">•</font></b> <font face="Times New Roman, Times, serif">Методы обновления ваших сегодняшних товаров и услуг с повышением их конкурентоспособности</font><b> <font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b><font face="Times New Roman, Times, serif">Методы управления подразделениями и сотрудниками в условиях конкуренции</font></p> <p style="margin:0px;"> </p> <p align="center" style="margin:0px;"><b>Мастерские развития бизнеса<SUP><FONT SIZE="-1">TM</FONT></SUP> показали </b>себя наиболее эффективным способом для руководителя увидеть свой бизнес "со стороны" и придти к конкретным решениям по повышению конкурентоспособности вашей компании<br> <b><font face="Verdana, Arial, Helvetica, sans-serif">•</font> </b>В 7-9 раз быстрее, чем обычный консалтинг<b><font face="Verdana, Arial, Helvetica, sans-serif"> •</font> </b>Более эффективный инструмент для развития Вашей компании, чем традиционные семинары и практикумы</p> <p style="margin:0px;"> </p> <p style="margin:0px;">Уже более 2000 руководителей, проработали свой бизнес на мастерских "Атакующий маркетинг<SUP><FONT SIZE="-1">TM</FONT></SUP> для руководителей". <b>Перешли к действиям. Добились роста спроса. Повысили свою конкурентоспособность.</b></p> <p style="margin:0px;"> </p> <p style="margin-top:0px; margin-bottom:0px;"><b>Для кого этот тренинг?</b></p> <ul style="margin-top:0px; margin-bottom:0px;"> <li>Тренинг развития бизнеса наиболее полезен руководителям , их ближайшим помощникам, маркетологам, а также, менеджерам направлений</li> <li>Для повышения эффективности ркомендуется работа на тренинге в минигруппе от Вашей компании (от 2-х человек).</li> <li>Рекомендуется участие в тренинге лиц, принимающих решения по развитию бизнеса</li> </ul> <p style="margin-top:0px; margin-bottom:0px;"><b><br> Краткое содержание трехдневного тренинга.</b><br> </p> <p style="margin-top:0px; margin-bottom:0px;"><b>Методы повышения спроса в условиях конкуренции:</b><br> Методы мгновенного прогнозирования спроса и принятия решений по управлению спросом.</p> <ul style="margin-top:0px; margin-bottom:0px;"> <li>Методы мгновенной оценки ситуации на рынке и в компании.</li> <li>Быстрая выработка взгляда на ваш бизнес с точки зрения потребителя.</li> </ul> <p style="margin-top:0px; margin-bottom:0px;"><b>Методы повышения конкурентоспособности компании:</b></p> <ul style="margin-top:0px; margin-bottom:0px;"> <li>Быстрая оценка вашей конкурентоспособности и принятие решений</li> <li>Быстрое выявление резервов конкурентоспособности в вашей компании<b></b></li> </ul> <pv style="margin-top:0px; margin-bottom:0px;"><b>Методы управление ростом прибыли: </b></p> <ul style="margin-top:0px; margin-bottom:0px;"> <li>Методы обеспечения надежной и растущей прибыли</li> <li>Методы быстрого выжимания дополнительной прибыли из существующих товаров, услуг, направлений деятельности.</li> </ul> <p style="margin-top:0px; margin-bottom:0px;"><b>Управление людьми:</b></p> <ul style="margin-top:0px; margin-bottom:0px;"> <li>Выработка Атакующего отношения в компании</li> <li>Организация атаки и контратаки в бизнесе.</li> <li>Постановка и согласование задач сотрудников и подразделений в Атакующем бизнесе</li> <li>Чего хотеть от сотрудников и за что платить сотрудникам</li> <li>Универсальные методы постановки целей и решения проблем в бизнесе</li> </ul> <p style="margin-top:0px; margin-bottom:0px;"><b>Согласование управления спросом</b>, управления прибылью и управления кадрами</p> <p><b>Отличие программы от обычных </b>семинаров и практикумов в том, что в процессе обучения каждый участник рассматривает и анализирует не примеры чужих успешных компаний, а реальные задачи, которые стоят перед его предприятием и направлением. Мини-группы и отдельные участники практикуются на реальном материале своего бизнеса, что позволяет участникам прямо на тренинге начать применять методы Атакующего маркетинга для своего бизнеса и перенести полученные знания на практику. Эти методы позволяют немедленно оценить свой бизнес и принять решения по его развитию . Позволяют вернувшись на предприятие, в фирму, немедленно применить их для развития бизнеса и захвата рынка.</p> <p>Всем участникам тpенинга предоставляются "Опорные материалы". <br> <br> <b><font size="3">Время проведения: с 10.00 до 18.00 </font></b></p> <p><font size="3"><b>Стоимость участия: 1720 грн.</b></font><b></b><br> <em>Тематика тpенинга всецело охватывает сферу развития и продвижения бизнеса, поэтому, расходы за участие относятся к составу валовых (ст.5 ЗУ о налогообложении прибыли предприятий"), которые связаны с подготовкой, организацией и управлением производства. Всем участникам т</em><em>p</em><em>енинга предоставляется комплект бухгалтерских документов: оригиналы договора, акта и счета, а также копии свидетельств о государственной регистрации и об уплате единого налога.</em><br> <em><b>Вы можете участвовать в открытом тренинге и/или заказать тренинг для конкретной компании</b></em></p></td> </tr> </table> <p align="center"><font size="2" face="Arial, Helvetica, sans-serif">Московское агентство Интернет-рекламы - <a href="mailto:sfg...@ne...">Отписка</a></font> <br><br> <font color="#F9FAF8">тнмсеотьы едв онзывояп тнй</font> <br><br> </p> </body> </html> |
From: JT J. <jt-...@si...> - 2006-04-26 16:56:58
|
Hi, everyone. I posted an updated patch the other day on the 'users' list to make mod_perl2 work with SOAP::Lite 0.6.7. I would have posted here, but I had never noticed that this list exists. I've now found another issue. I have had for a while a working CGI server. I wanted to make it work in mod_perl. I made the changes, and when testing it with my SOAP::Lite client, the change seemed to be seamless. Unfortunately, when I pointed the production client - Intuit's QBWebConnector, which is in .NET - I got parsing errors (specifically, 'The data at the root level is invalid. Line 1, position 1.'). After quite a lot of digging, I finally captured the decrypted HTTP session to each server (patched SOAP::Transport::HTTP::Apache / unpatched SOAP::Transport::HTTP::CGI) using Ethereal and ssldump. You can see the session at: http://pastebin.com/683272 The important part is that the 'HTTP/1.1 100 Continue' line is being printed before the xml, and .NET stubbornly insists on parsing it as the start of the xml. I don't know who's wrong. I don't see why a 'Continue' is needed at that point. I do know that if I comment out those lines, the client seems to function. If this is incorrect, it could be due to a mod_perl2 change that I didn't accommodate in my patch. So can someone clarify what should be happening? JT -- |Waiting to fix the world since 1995| "Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something." - Robert Heinlein |
From: Ward V. <war...@gm...> - 2006-02-22 21:54:02
|
Hi there, When running a SOAP::Lite daemon with the perl -w flag, each SOAP call prints out a warning like this to STDERR: Use of uninitialized value in string eq at /usr/local/share/perl/5.8.4/SOAP/Transport/HTTP.pm line 316. The 'Expect' HTTP header change is responsible for this warning. Please fin= d a patch below to get rid of it. I'm not on the list, so if you want to reply, cc my address please. Thanks, Ward. --- HTTP.pm 2006-02-22 22:47:20.741692048 +0100 +++ HTTP.pm 2006-02-22 22:47:03.902252032 +0100 @@ -313,7 +313,7 @@ $content_type !~ m!^multipart/!; # TODO - Handle the Expect: 100-Continue HTTP/1.1 Header - if ($self->request->header("Expect") eq "100-Continue") { + if (defined($self->request->header("Expect")) && ($self->request->header("Expect") eq "100-Continue")) { } |
From: Mike S. <ms...@gm...> - 2006-02-22 16:48:14
|
Hi, I am just starting with SOAP-related development, noticed these warnings in my logs: Use of uninitialized value in pattern match (m//) at /opt/local/lib/perl5/site_perl/5.8.7/SOAP/Transport/HTTP.pm line 410. Use of uninitialized value in string eq at /opt/local/lib/perl5/site_perl/5.8.7/SOAP/Transport/HTTP.pm line 316. Here is a patch to address them. If I am sending this to the wrong place, or I should be submitting a bug somewhere, feel free to slap me down as long as you also point me in the right direction. *** 313,319 **** $content_type !~ m!^multipart/!; # TODO - Handle the Expect: 100-Continue HTTP/1.1 Header ! if ($self->request->header("Expect") eq "100-Continue") { } --- 313,319 ---- $content_type !~ m!^multipart/!; # TODO - Handle the Expect: 100-Continue HTTP/1.1 Header ! if ($self->request->header("Expect") && $self->request->header("Expect") eq "100-Continue") { } *************** *** 407,413 **** } elsif (defined $SOAP::Constants::MAX_CONTENT_SIZE && $length > $SOAP::Constants::MAX_CONTENT_SIZE) { $self->response(HTTP::Response->new(413)) # REQUEST ENTITY TOO LARGE } else { ! if ($ENV{EXPECT} =3D~ /\b100-Continue\b/i) { print "HTTP/1.1 100 Continue\r\n\r\n"; } my $content; --- 407,413 ---- } elsif (defined $SOAP::Constants::MAX_CONTENT_SIZE && $length > $SOAP::Constants::MAX_CONTENT_SIZE) { $self->response(HTTP::Response->new(413)) # REQUEST ENTITY TOO LARGE } else { ! if ($ENV{EXPECT} && $ENV{EXPECT} =3D~ /\b100-Continue\b/i) { print "HTTP/1.1 100 Continue\r\n\r\n"; } my $content; |
From: Jimmy Z. <cra...@co...> - 2006-02-15 08:29:11
|
[ANN] VTD-XML Version 1.5 Released Eight years after the invention of XML, DOM and SAX,=20 despite their respective issues, are still the mainstays=20 of application developers. =20 =20 So is it the end of road for XML parsing innovation?=20 =20 The VTD-XML project team think not. We are proud to=20 announce the availability of both C and Java version=20 1.5 of VTD-XML, the next generation open-source XML=20 parser that goes beyond DOM and SAX in terms of=20 performance, memory usage and ease of use.=20 =20 The technical highlights of VTD-XML are:=20 * Performance: the world's fastest XML parser, between 5x~10x faster than DOM * Memory Usage: 3x to 5x less than DOM, 1.3x~1.5x XML document size * Random access with built-in XPath support * A simple and intuitive API=20 Other advanced features include: * Buffer reuse * Large document support (2GByte) * Incremental update * Hardware acceleration * Native XML indexing. For demos, latest benchmarks, related articles and software=20 downloads, please visit http://vtd-xml.sf.net. Also let us=20 know your thoughts and suggestions and help us improve=20 VTD-XML. |
From: Bjoern A. Z. <bze...@li...> - 2006-02-13 11:25:19
|
On Mon, 13 Feb 2006, Bruno Georges wrote: > Does anyone know how to change the namespace [namesp] to use somehting else > [ns in our case]: Not tested but something along this line might do the trick. package MY::Serializer; use SOAP::Lite; use strict; use vars qw( @ISA ); @ISA = ( SOAP::Serializer ); sub gen_ns { 'ns' . ++$ns } Do not forget to your own serializer: my $soap = new SOAP::Lite serializer => My::Serializer->new, ... -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT |
From: Bruno G. <Bru...@gl...> - 2006-02-13 11:08:48
|
Hi Does anyone know how to change the namespace [namesp] to use somehting else [ns in our case]: - + <SOAP-ENV:Body> - + <namesp1:Authenticate xmlns:namesp1="urn:Login"> - + <msgstr xmlns="ns1" xsi:type="xsd:string"> I would like to change the namesp prefix to ns, so the serialized message looks like: - + <SOAP-ENV:Body> - + <ns1:Authenticate xmlns:ns1="urn:Login"> - + <msgstr xsi:type="xsd:string"> - + <Message messageid="0"> Thanks for your help. With Best Regards Bruno Georges Glencore International AG Tel. +41 41 709 3204 Fax +41 41 709 3000 LEGAL DISCLAIMER. The contents of this e-mail and any attachments are strictly confidential and they may not be used or disclosed by someone who is not a named recipient. If you have received this email in error please notify the sender by replying to this email inserting the word "misdirected" as the message and delete this e-mail from your system. |
From: Bruno H. <Bru...@ma...> - 2006-02-06 15:12:54
|
Hello, I posted a few days ago a message on the SOAP::Lite user list, asking how to get the uri/namespaces in the SOAP::Data objects (in the children nodes) returned by dataof in SOAP::SOM. I have had a look in the code for SOAP::SOM, and I'm a bit surprised to see that in _as_data, SOAP::Data::new is called with "name" twice: SOAP::Data -> new(prefix => '', name => o_qname($pointer), name => o_lname($pointer), attr => o_lattr($pointer)) -> set_value(o_value($pointer)); Is this intentional? Is there any particular reason why set_value is not trying to traverse the element tree and to hold SOAP::Data children (instead of just HASH)? Regards, Bruno. |
From: Frank S. <fs...@ec...> - 2006-01-05 20:19:40
|
Hello, does anyone use SOAP::Lite together with FastCGI and other charsets =20 than ascii ? Our problem is, that we use SOAP::Lite for an Webservice. All works =20 fine in cgi and fastcgi, except one think: The encoding/charset. We use utf8 charsets on our server. For example we send c3 9f (this =20 is the char =DF, a special character in german language). If we use SOAP::Lite with CGI, the Clients (we have two: gsoap and =20 java), get an c3 9f (=3D=DF). If we activate FastCGI on the server, the =20= clients get an c3 83 c2 9f (damage chars: =C3?). Nothing change on server and client site, we only activate fastcgi. We write a test-cgi-programm with the same chars. The testprogramm =20 (without using SOAP::LIte) send c3 9f and the clients get c3 9f if we =20= running it at cgi and fastcgi. It looks like a problem of SOAP::LIte or we don something wrong. Any hints ? Frank -- ECCE TERRAM Internet Services GmbH Tel: 0441 500 120 An der grossen Wisch 36 Fax: 0441 500 1229 26133 Oldenburg Skype: 0441 920 5500 Ex Astris Scientia |
From: <by...@tu...> - 2005-12-24 18:38:45
|
Until DIME::Tools can be fixed - yes. Derek Wong wrote: > So, basiclly making web service that can receive > DIME attachment cannot be done by SOAP::LITE > is that correct ? > thanks, > Derek > On 12/23/05, soa...@li... > <soa...@li...> wrote: > >> Send Soaplite-devel mailing list submissions to >> soa...@li... >> To subscribe or unsubscribe via the World Wide Web, visit >> https://lists.sourceforge.net/lists/listinfo/soaplite-devel >> or, via email, send a message with subject or body 'help' to >> soa...@li... >> You can reach the person managing the list at >> soa...@li... >> When replying, please edit your Subject line so it is more specific than "Re: Contents of Soaplite-devel digest..." >> Today's Topics: >> 1. Web Service Receive DIME Attachment (Derek Wong) >> 2. Re: Web Service Receive DIME Attachment (Byrne Reese) >> --__--__-- >> Message: 1 >> Date: Fri, 23 Dec 2005 00:37:12 -0600 >> From: Derek Wong <min...@gm...> >> Reply-To: min...@gm... >> To: soa...@li... >> Subject: [Soaplite-devel] Web Service Receive DIME Attachment >> Dear All, >> I need some help on writing a web service that can receive >> soap message with 1 primitive data and a DIME attachment(a file) ? Can anyone point me to some right direction or put together >> few lines of code to teach me? >> thanks millions. >> yours, >> Derek >> --__--__-- >> Message: 2 >> Date: Thu, 22 Dec 2005 23:15:04 -0800 >> From: Byrne Reese <by...@ma...> >> To: min...@gm... >> Cc: soa...@li... >> Subject: Re: [Soaplite-devel] Web Service Receive DIME Attachment DIME support in SOAP::Lite is not yet complete. I wish I could help you, >> but my hands are tied. The Dime::Tools package on CPAN integrates with SOAP::Lite just fine, but there is a bug that prevents it from working properly. >> Derek Wong wrote: >> >>> Dear All, >>> I need some help on writing a web service that can receive >>> soap message with 1 primitive data and a DIME attachment(a file) ? Ca= n anyone point me to some right direction or put together >>> few lines of code to teach me? >>> thanks millions. >>> yours, >>> Derek >>> ------------------------------------------------------- >>> This SF.net email is sponsored by: Splunk Inc. Do you grep through lo= g files >>> for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! >>> http://ads.osdn.com/?ad_idv37&alloc_id=16865&op=3Dclick >>> _______________________________________________ >>> Soaplite-devel mailing list >>> Soa...@li... >>> https://lists.sourceforge.net/lists/listinfo/soaplite-devel >>> >> --__--__-- >> _______________________________________________ >> Soaplite-devel mailing list >> Soa...@li... >> https://lists.sourceforge.net/lists/listinfo/soaplite-devel >> End of Soaplite-devel Digest >> > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_idv37&alloc_id=16865&op=3Dclick > _______________________________________________ > Soaplite-devel mailing list > Soa...@li... > https://lists.sourceforge.net/lists/listinfo/soaplite-devel > |
From: Derek W. <min...@gm...> - 2005-12-24 05:08:35
|
So, basiclly making web service that can receive DIME attachment cannot be done by SOAP::LITE is that correct ? thanks, Derek On 12/23/05, soa...@li... <soa...@li...> wrote: > Send Soaplite-devel mailing list submissions to > soa...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/soaplite-devel > or, via email, send a message with subject or body 'help' to > soa...@li... > > You can reach the person managing the list at > soa...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Soaplite-devel digest..." > > > Today's Topics: > > 1. Web Service Receive DIME Attachment (Derek Wong) > 2. Re: Web Service Receive DIME Attachment (Byrne Reese) > > --__--__-- > > Message: 1 > Date: Fri, 23 Dec 2005 00:37:12 -0600 > From: Derek Wong <min...@gm...> > Reply-To: min...@gm... > To: soa...@li... > Subject: [Soaplite-devel] Web Service Receive DIME Attachment > > Dear All, > > I need some help on writing a web service that can receive > soap message with 1 primitive data and a DIME attachment(a file) ? > Can anyone point me to some right direction or put together > few lines of code to teach me? > > thanks millions. > > yours, > > Derek > > > --__--__-- > > Message: 2 > Date: Thu, 22 Dec 2005 23:15:04 -0800 > From: Byrne Reese <by...@ma...> > To: min...@gm... > Cc: soa...@li... > Subject: Re: [Soaplite-devel] Web Service Receive DIME Attachment > > DIME support in SOAP::Lite is not yet complete. I wish I could help you, > but my hands are tied. The Dime::Tools package on CPAN integrates with > SOAP::Lite just fine, but there is a bug that prevents it from working > properly. > > Derek Wong wrote: > > Dear All, > > > > I need some help on writing a web service that can receive > > soap message with 1 primitive data and a DIME attachment(a file) ? > > Can anyone point me to some right direction or put together > > few lines of code to teach me? > > > > thanks millions. > > > > yours, > > > > Derek > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. Do you grep through log = files > > for problems? Stop! Download the new AJAX search engine that makes > > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > > http://ads.osdn.com/?ad_idv37&alloc_id=16865&op=3Dclick > > _______________________________________________ > > Soaplite-devel mailing list > > Soa...@li... > > https://lists.sourceforge.net/lists/listinfo/soaplite-devel > > > > > > > > > > --__--__-- > > _______________________________________________ > Soaplite-devel mailing list > Soa...@li... > https://lists.sourceforge.net/lists/listinfo/soaplite-devel > > > End of Soaplite-devel Digest > |
From: Byrne R. <by...@ma...> - 2005-12-23 07:14:19
|
DIME support in SOAP::Lite is not yet complete. I wish I could help you, but my hands are tied. The Dime::Tools package on CPAN integrates with SOAP::Lite just fine, but there is a bug that prevents it from working properly. Derek Wong wrote: > Dear All, > > I need some help on writing a web service that can receive > soap message with 1 primitive data and a DIME attachment(a file) ? > Can anyone point me to some right direction or put together > few lines of code to teach me? > > thanks millions. > > yours, > > Derek > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_idv37&alloc_id865&op=click > _______________________________________________ > Soaplite-devel mailing list > Soa...@li... > https://lists.sourceforge.net/lists/listinfo/soaplite-devel > > |
From: Derek W. <min...@gm...> - 2005-12-23 06:37:15
|
Dear All, I need some help on writing a web service that can receive soap message with 1 primitive data and a DIME attachment(a file) ? Can anyone point me to some right direction or put together few lines of code to teach me? thanks millions. yours, Derek |