You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(112) |
Dec
(115) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(116) |
Feb
(97) |
Mar
(82) |
Apr
(98) |
May
(111) |
Jun
(63) |
Jul
(140) |
Aug
(289) |
Sep
(103) |
Oct
(100) |
Nov
(46) |
Dec
(124) |
2004 |
Jan
(139) |
Feb
(63) |
Mar
(152) |
Apr
(145) |
May
(164) |
Jun
(168) |
Jul
(124) |
Aug
(101) |
Sep
(96) |
Oct
(138) |
Nov
(89) |
Dec
(82) |
2005 |
Jan
(92) |
Feb
(82) |
Mar
(75) |
Apr
(125) |
May
(98) |
Jun
(110) |
Jul
(85) |
Aug
(104) |
Sep
(128) |
Oct
(130) |
Nov
(109) |
Dec
(67) |
2006 |
Jan
(62) |
Feb
(61) |
Mar
(87) |
Apr
(68) |
May
(34) |
Jun
(20) |
Jul
(27) |
Aug
(19) |
Sep
(24) |
Oct
(22) |
Nov
(18) |
Dec
(26) |
2007 |
Jan
(34) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Peter L. <pe...@la...> - 2007-01-31 19:58:50
|
An accelerator might work for you. They pre-compile the php scripts so they don't need to be compiled. Normally for every request you do to a php script the script is compiled and then used. The php accelerator takes away that part and keeps the compiled version of the code in its cache. (or something similar, don't really know details). http://www.php-accelerator.co.uk <http://www.php-accelerator.co.uk/> Or your might consider to split up and only require the classes that are needed. I am not sure that all classes in the nusoap.php file are needed. Probably you just need a few for the client, and a few for the server. I don't know, but it might be worth a try :) /Peter _____ From: nus...@li... [mailto:nus...@li...] On Behalf Of Sebastian Kolbe Sent: Wednesday, January 31, 2007 7:00 PM To: nus...@li... Subject: [Nusoap-general] NuSoap and PHP 5.2 Hello There might be some problems with NuSoap and PHP 5.2. I encountered errors with a NuSoap-based web service after upgrading the apache server and PHP. Messages only said something like: Object of class soapval could not be converted to string in nusoap.php on line 5416 I found that this problem was caused by debug statements in nusoap which tried to add (Strings) of objects to variables. A solution for me was to add: function __toString() { return $this->name; } in line 1991 of nusoap.php (class 'soapval'). I believe this problem exists also in other classes... Maybe someone with more knowledge of NuSoap can verify this. -- -- Sebastian |
From: Roger R. S. <ro...@ya...> - 2007-01-31 19:40:11
|
 these chars are appended to the begining of the xml in the soap response. Using mod_ssl on apache could this be the issue? Rog |
From: Roger R. S. <ro...@ya...> - 2007-01-31 19:35:29
|
 these chars are appended to the begining of the xml in the soap response. Using mod_ssl on apache could this be the issue? Rog |
From: Eduardo B. <wo...@li...> - 2007-01-31 17:13:58
|
Hi, I=B4m using nusoap.php v 1.94 on a php script for making client = connections to a WSDL enabled server. So far the scripts work fine, they access data = from the server and returns the results. Although they take some seconds to process the required action and it seems that the require_once('nusoap.php'); is making the delay. So the question is, is there a way to preload the nusoap.php script like from apache? Or a way to load it once and make it available to all the scripts on the site? Please send me your comments from your experience. Regards, Edo |
From: Sebastian K. <Seb...@gm...> - 2007-01-31 17:00:18
|
Hello There might be some problems with NuSoap and PHP 5.2. I encountered errors with a NuSoap-based web service after upgrading the apache server and PHP. Messages only said something like: Object of class soapval could not be converted to string in nusoap.php on line 5416 I found that this problem was caused by debug statements in nusoap which tried to add (Strings) of objects to variables. A solution for me was to add: function __toString() { return $this->name; } in line 1991 of nusoap.php (class 'soapval'). I believe this problem exists also in other classes... Maybe someone with more knowledge of NuSoap can verify this. -- -- Sebastian |
From: John S. <Joh...@no...> - 2007-01-29 18:16:13
|
Hello All, A developer trying to use our NuSOAP server is having difficulty providing the service an array of booleans (see message below). He is developing using ColdFusion. Is anyone out there able to provide this developer a ColdFusion example that provides an array of booleans? In advance, thanks for any help you can provide. John I am trying to consume your XML weather forecast defined at http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl using ColdFusion. I am attempting to use the NDFDgen function. My problem is in knowing how to code the array of booleans. I have tried several different ways, and I always get the error, "Web service operation NDFDgen with parameters ... blah blah blah ... could not be found." ColdFusion can read the NDFDgenByDay function just fine, so I believe the basic syntax of my ColdFusion routine for NDFDgen is okay except for the array of booleans. I realize you may not know ColdFusion, but by looking at my code below, can you offer me any solutions or ideas? <cfset Par=arrayNew(1)> <cfset Par[1]="maxt=TRUE"> <cfset Par[2]="mint=TRUE"> <cfset Par[3]="temp=FALSE"> <cfset Par[4]="dew=FALSE"> <cfset Par[5]="appt=FALSE"> <cfset Par[6]="pop12=FALSE"> <cfset Par[7]="qpf=FALSE"> <cfset Par[8]="snow=FALSE"> <cfset Par[9]="sky=FALSE"> <cfset Par[10]="rh=FALSE"> <cfset Par[11]="wspd=FALSE"> <cfset Par[12]="wdir=FALSE"> <cfset Par[13]="wx=FALSE"> <cfset Par[14]="icons=FALSE"> <cfset Par[15]="waveh=FALSE"> <cfset Par[16]="ncw34=FALSE"> <cfset Par[17]="incw50=FALSE"> <cfset Par[18]="incw64=FALSE"> <cfset Par[19]="cumw34=FALSE"> <cfset Par[20]="cumw50=FALSE"> <cfset Par[21]="cumw64=FALSE"> <cfset Par[22]="wgust=FALSE"> <cfinvoke webservice="http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl" method="NDFDgen" returnvariable="WeatherParams" timeout="30"> <cfinvokeargument name="latitude" value="39.0000"/> <cfinvokeargument name="longitude" value="-77.0000"/> <cfinvokeargument name="product" value="time-series" / > <cfinvokeargument name="startTime" value="" /> <cfinvokeargument name="endTime" value="" /> <cfinvokeargument name="weatherParameters" value="#Par#" /> </cfinvoke> <cfoutput>WeatherParams = #WeatherParams# </cfoutput> A screen shot of the ColdFusion error is at http://www.kcmo.org/infotech/error.gif |
From: Harris R. <as...@ja...> - 2007-01-23 19:58:11
|
Good day, VlA_AGRA $1, 80 ClA_ALIS $3, 00 LEV_VlTRA $3, 35 http://www.printeryml*com ( Important ! Replace "*" with "." ) -- judges, and said, A conference before we give the marks, I think. The judges went into a huddle. Madam Pomfrey had gone to rescue Ron from Percys clutches; she led him over to Harry and the others, gave him a |
From: blackwater d. <bla...@gm...> - 2007-01-19 15:28:24
|
I just changed my service to return a string but nothing is returned. Do I actually have to pass in params? How are all of those defined? How does SOAP know what I expect and what order? Below is my code: =========Server:================ include("nusoap/nusoap.php"); $server=new soap_server(); $server->register('getColumns'); function getColumns(){ return "awesome"; } $server->service($HTTP_RAW_POST_DATA); ========Consuming page============= $s= new soapclient('http://www.mysite.com/myservice.php'); $result= $s->call('getColumns',$params); var_dump($result); On 1/19/07, Torsten Zachert <tor...@te...> wrote: > > This is correct. You can use this webservice anyway. > > > > > ----- Original Message ----- > From: "blackwater dev" <bla...@gm...> > To: <nus...@li...> > Sent: Friday, January 19, 2007 2:45 PM > Subject: [Nusoap-general] method '' not defined in service. > > > > I have the following code but when I hit the page, I get the xml error > of > > method '' not defined in service. I don't have a wsdl or anything > defined. > > Is there more I need to do to get the SOAP service set up? > > > > Thanks! > > > > include("nusoap/nusoap.php"); > > > > $server=new soap_server(); > > $server->register('getColumns'); > > > > function getColumns(){ > > > > $search= new carSearch(); > > > > return $search->getSearchColumns(); > > > > } > > $server->service($HTTP_RAW_POST_DATA); > > > > > > ---------------------------------------------------------------------------- > ---- > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > ---------------------------------------------------------------------------- > ---- > > > > _______________________________________________ > > Nusoap-general mailing list > > Nus...@li... > > https://lists.sourceforge.net/lists/listinfo/nusoap-general > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Nusoap-general mailing list > Nus...@li... > https://lists.sourceforge.net/lists/listinfo/nusoap-general > |
From: Raphael S. <Rap...@se...> - 2007-01-19 15:15:37
|
Hello Everybody, I'm trying to get an php4 application talk to a webservice for whom a w= sdl file exist, is accessible but not alterable. When initializing the nusoap client i got an error message stating that= "no operations defined in the WSDL document!", so i used an online validator http://www.mgateway.com/php/wsdlValidator/home.php to validate the wsdl= file and that one listed likewise no defined operations in the wsdl file unlike an own implemented test-webservice. There is even an webservice client using the php5 soap extension and it= is working with the same wsdl file, but since the targeted apllication runs on php4 this is not helpful. I will state some snippets from the wsdl of whom i think they are relev= ant for this problem. Head-Part: <wsdl:definitions targetNamespace=3D"http://camptocamp.com/wsdl/cartose= rver/" name=3D"CartoserverWsdl"> <wsdl:types> <schema targetNamespace=3D"http://camptocamp.com/cartoserver/xsd"> Porttype-Part: <portType name=3D"CartoserverPortType"> <wsdl:operation name=3D"getMap"> <wsdl:input message=3D"tns:getMapRequest"/> <wsdl:output message=3D"tns:getMapResult"/> </wsdl:operation> <wsdl:operation name=3D"getMapInfo"> <wsdl:input message=3D"tns:getMapInfoRequest"/> <wsdl:output message=3D"tns:getMapInfoResult"/> </wsdl:operation> </portType> Binding-Part: <binding name=3D"CartoserverBinding" type=3D"tns:CartoserverPortType"> <soap12:binding style=3D"rpc" transport=3D"http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name=3D"getMap"> <input><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></input> <output><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></output> </wsdl:operation> <wsdl:operation name=3D"getMapInfo"> <input><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></input> <output><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></output> </wsdl:operation> </binding> In comparison to the working test-webservice i'm missing on the client = side REQUEST output of the SOAPACTION, which is on the running test-webservi= ce: "urn:aiportwsdl#getAiportName" and on the broken one "". And the RESPO= NSE delivers back the whole wesdl file with no additional info. I tried even took a glance at the source and suppose that the used namespace in the wsdl file make the operations unreachable for the wsdl= parser. Uhhh.... Hope provided enough problem intro information. Now my question is did someone ran into a similar problem? Someone migh= t even give me a hint why the wsdl file isn't parsed correctly or where the wsdl is malformed according to the wsdl spec. Thanks in advance. Raphael Stolt -------------------------------------------------------------------- Tel. +49 (0) 7531 36598-52 Fax +49 (0) 7531 36598-11 E-Mail rap...@se... SEITENBAU GmbH Robert-Gerwig-Str. 10-12 D-78467 Konstanz http://www.seitenbau.com Amtsgericht Freiburg HRB 381528 USt-IdNr.: DE 1905 525 50 Gesch=E4ftsf=FChrer: Florian Leinberger | Sebastian Roller | Rainer Henze | Jan Bauer | Stefan Eichenhofer= |
From: Raphael S. <Rap...@se...> - 2007-01-19 15:00:12
|
Hello Everybody, I'm trying to get an php4 application talk to a webservice for whom a w= sdl file exist, is accessible but not alterable. When initializing the nusoap client i got an error message stating that= "no operations defined in the WSDL document!", so i used an online validator http://www.mgateway.com/php/wsdlValidator/home.php to validate the wsdl= file and that one listed likewise no defined operations in the wsdl file unlike an own implemented test-webservice. There is even an webservice client using the php5 soap extension and it= is working with the same wsdl file, but since the targeted apllication runs on php4 this is not helpful. I will state some snippets from the wsdl of whom i think they are relev= ant for this problem. Head-Part: <wsdl:definitions targetNamespace=3D"http://camptocamp.com/wsdl/cartose= rver/" name=3D"CartoserverWsdl"> <wsdl:types> <schema targetNamespace=3D"http://camptocamp.com/cartoserver/xsd"> Porttype-Part: <portType name=3D"CartoserverPortType"> <wsdl:operation name=3D"getMap"> <wsdl:input message=3D"tns:getMapRequest"/> <wsdl:output message=3D"tns:getMapResult"/> </wsdl:operation> <wsdl:operation name=3D"getMapInfo"> <wsdl:input message=3D"tns:getMapInfoRequest"/> <wsdl:output message=3D"tns:getMapInfoResult"/> </wsdl:operation> </portType> Binding-Part: <binding name=3D"CartoserverBinding" type=3D"tns:CartoserverPortType"> <soap12:binding style=3D"rpc" transport=3D"http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name=3D"getMap"> <input><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></input> <output><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></output> </wsdl:operation> <wsdl:operation name=3D"getMapInfo"> <input><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></input> <output><soap12:body use=3D"encoded" encodingStyle=3D"http://www.w3.org/2003/05/soap-encoding" namespace=3D"http://camptocamp.com/cartoserver"/></output> </wsdl:operation> </binding> In comparison to the working test-webservice i'm missing on the client = side REQUEST output of the SOAPACTION, which is on the running test-webservi= ce: "urn:aiportwsdl#getAiportName" and on the broken one "". And the RESPO= NSE delivers back the whole wesdl file with no additional info. I tried even took a glance at the source and suppose that the used namespace in the wsdl file make the operations unreachable for the wsdl= parser. Uhhh.... Hope provided enough problem intro information. Now my question is did someone ran into a similar problem? Someone migh= t even give me a hint why the wsdl file isn't parsed correctly or where the wsdl is malformed according to the wsdl spec. Thanks in advance. Raphael Stolt -------------------------------------------------------------------- Tel. +49 (0) 7531 36598-52 Fax +49 (0) 7531 36598-11 E-Mail rap...@se... SEITENBAU GmbH Robert-Gerwig-Str. 10-12 D-78467 Konstanz http://www.seitenbau.com Amtsgericht Freiburg HRB 381528 USt-IdNr.: DE 1905 525 50 Gesch=E4ftsf=FChrer: Florian Leinberger | Sebastian Roller | Rainer Henze | Jan Bauer | Stefan Eichenhofer= |
From: Torsten Z. <tor...@te...> - 2007-01-19 14:44:27
|
This is correct. You can use this webservice anyway. ----- Original Message ----- From: "blackwater dev" <bla...@gm...> To: <nus...@li...> Sent: Friday, January 19, 2007 2:45 PM Subject: [Nusoap-general] method '' not defined in service. > I have the following code but when I hit the page, I get the xml error of > method '' not defined in service. I don't have a wsdl or anything defined. > Is there more I need to do to get the SOAP service set up? > > Thanks! > > include("nusoap/nusoap.php"); > > $server=new soap_server(); > $server->register('getColumns'); > > function getColumns(){ > > $search= new carSearch(); > > return $search->getSearchColumns(); > > } > $server->service($HTTP_RAW_POST_DATA); > ---------------------------------------------------------------------------- ---- > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ---------------------------------------------------------------------------- ---- > _______________________________________________ > Nusoap-general mailing list > Nus...@li... > https://lists.sourceforge.net/lists/listinfo/nusoap-general > |
From: blackwater d. <bla...@gm...> - 2007-01-19 13:45:26
|
I have the following code but when I hit the page, I get the xml error of method '' not defined in service. I don't have a wsdl or anything defined. Is there more I need to do to get the SOAP service set up? Thanks! include("nusoap/nusoap.php"); $server=new soap_server(); $server->register('getColumns'); function getColumns(){ $search= new carSearch(); return $search->getSearchColumns(); } $server->service($HTTP_RAW_POST_DATA); |
From: Torsten Z. <tor...@te...> - 2007-01-19 11:16:32
|
---- Original Message ----- From: "Torsten Zachert" <tor...@te...> To: "NuSOAP General List" <nus...@li...> Sent: Friday, January 19, 2007 9:34 AM Subject: [Nusoap-general] Bug in function iso8601_to_timestamp > If anybody uses the function iso8601_to_timestamp I think I foud a bug: > > I receive the xsd:dateTime value '2006-05-18T00:00:00.0000000+02:00' and the > function strtotime (in iso8601_to_timestamp) trys to parse > '2006-05-18 -2:0:00Z' but this produces -1 > This suggest this solution: function iso8601_to_timestamp($datestr){ $eregStr = '([0-9]{4})-'. // centuries & years CCYY- '([0-9]{2})-'. // months MM- '([0-9]{2})'. // days DD 'T'. // separator T '([0-9]{2}):'. // hours hh: '([0-9]{2}):'. // minutes mm: '([0-9]{2})(\.[0-9]+)?'. // seconds ss.ss... '(Z|[+\-][0-9]{2}:?[0-9]{2})?'; // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's if(ereg($eregStr,$datestr,$regs)){ // not utc if($regs[8] != 'Z'){ $regs[8] = str_replace(':', '', $regs[8]); } return strtotime("$regs[1]-$regs[2]-$regs[3] $regs[4]:$regs[5]:$regs[6] $regs[8]"); } else { return false; } } |
From: Torsten Z. <tor...@te...> - 2007-01-19 08:40:47
|
If anybody uses the function iso8601_to_timestamp I think I foud a bug: I receive the xsd:dateTime value '2006-05-18T00:00:00.0000000+02:00' and the function strtotime (in iso8601_to_timestamp) trys to parse '2006-05-18 -2:0:00Z' but this produces -1 |
From: <ar...@vd...> - 2007-01-19 01:04:50
|
Bedankt voor uw bericht. Wegens vakantie ben ik echter niet in staat om uw email te lezen of te beantwoorden. Op maandag 22 januari as. ben ik weer aanwezig. Voor lopende en/of dringende zaken kunt u contact opnemen met Lars de Ruijter, la...@vd... of telefonisch via 0513-654445. Met vriendelijke groet, Arjan Pot Van der Let & Partners Identity |
From: <ar...@vd...> - 2007-01-17 20:15:52
|
Bedankt voor uw bericht. Wegens vakantie ben ik echter niet in staat om uw email te lezen of te beantwoorden. Op maandag 22 januari as. ben ik weer aanwezig. Voor lopende en/of dringende zaken kunt u contact opnemen met Lars de Ruijter, la...@vd... of telefonisch via 0513-654445. Met vriendelijke groet, Arjan Pot Van der Let & Partners Identity |
From: kelly p. <kel...@ya...> - 2007-01-17 06:37:44
|
Hello Guru, I am new to this mailing list, so be patient please. The remote server expect a xml document to be returned. The xml document look like: <Property> <Ident type="house" rentalType="sub"> <Address></Address> </Ident> <Floorplan> <Room type="bedroom"> <Count></Count> </Room> <Room type="bathroom"> <Count></Count> </Room> </FloorPlan> </Property> Is Element with Attributes included in the latest nusoap when using addComplexType? I search the entire mailing list and read some old post dated year 2004/2005 and it was not supported. Below will work, but without the attributes. How do I add those element attributes? If not supported, is there any alternate ways to return the xml document from above? I greatly appreciate your help. $server->wsdl->addComplexType( 'Property', 'complexType', 'struct', 'all', '', array( 'Ident' => array( 'Address' => array('name' => 'Address', 'type' => 'xsd:string'), 'City' => array('name' => 'City', 'type' => 'xsd:string') ) ) ); Many Thanks --------------------------------- TV dinner still cooling? Check out "Tonight's Picks" on Yahoo! TV. |
From: <ar...@vd...> - 2007-01-16 20:27:46
|
Bedankt voor uw bericht. Wegens vakantie ben ik echter niet in staat om uw email te lezen of te beantwoorden. Op maandag 22 januari as. ben ik weer aanwezig. Voor lopende en/of dringende zaken kunt u contact opnemen met Lars de Ruijter, la...@vd... of telefonisch via 0513-654445. Met vriendelijke groet, Arjan Pot Van der Let & Partners Identity |
From: Kevin G. <ke...@ke...> - 2007-01-16 10:50:14
|
Hello all, I'am looking for a method using soap where a client can submit a new picture. Is this possible using soap. Greetings kevin, |
From: Christian B. <chr...@do...> - 2007-01-16 07:05:49
|
Le 16 janv. 07 =E0 07:17, Arun Sadasivan a =E9crit : > So far i 'm using nusoap to create webservices, i had used only =20 > integer or string parameters to be passed onto the webservice =20 > provider.... > > Now i want to pass a complex array to a web service function like... > > /** > * register getCategoryDetail() method > **/ > $objServer->register( > 'GBLEComCategoryService.getCategoryDetail', > array('id'=3D>'xsd:int'), /// input parameter =20= > here >>here i want to pass an array instead of an integer > array('return'=3D>'tns:CatDetail'), > $NAMESPACE > ); > > > Please get me a solution.. as early as possible..... i need to get =20 > the solutons to finish my currently assigned project in time.. > Here is a working example //wsdl $server->configureWSDL('vivacodeThis2', 'urn:vivacodeThis2'); // Register the data structures used by the service $server->wsdl->addComplexType( 'connect', 'complexType', 'struct', 'all', '', array( 'shopID' =3D> array('name' =3D> 'shopID', 'type' =3D> = 'xsd:string'), 'vivacodeID' =3D> array('name' =3D> 'vivacodeID', 'type' =3D> =20= 'xsd:string'), 'urlsong' =3D> array('name' =3D> 'urlsong', 'type' =3D> =20 'xsd:string'), 'type' =3D> array('name' =3D> 'type', 'type' =3D> = 'xsd:string'), 'returnfolder' =3D> array('name' =3D> 'returnfolder', 'type' =3D>= =20 'xsd:string'), 'returnname' =3D> array('name' =3D> 'returnname', 'type' =3D> =20= 'xsd:string'), 'ip' =3D> array('name' =3D> 'ip', 'type' =3D> 'xsd:string'), 'vivacodeFROM' =3D> array('name' =3D> 'vivacodeFROM', 'type' =3D> = =20 'xsd:string') ) ); $server->wsdl->addComplexType( 'metadata', 'complexType', 'struct', 'all', '', array( 'title' =3D> array('name' =3D> 'title', 'type' =3D> = 'xsd:string'), 'album' =3D> array('name' =3D> 'album', 'type' =3D> = 'xsd:string'), 'artist' =3D> array('name' =3D> 'artist', 'type' =3D> = 'xsd:string'), 'duration' =3D> array('name' =3D> 'duration', 'type' =3D> =20 'xsd:string'), 'author' =3D> array('name' =3D> 'author', 'type' =3D> = 'xsd:string'), 'composer' =3D> array('name' =3D> 'composer', 'type' =3D> =20 'xsd:string'), 'urlbuy' =3D> array('name' =3D> 'urlbuy', 'type' =3D> = 'xsd:string'), 'track_number' =3D> array('name' =3D> 'track_number', 'type' =3D>= =20 'xsd:string'), 'country' =3D> array('name' =3D> 'country', 'type' =3D> =20 'xsd:string'), 'exclusive' =3D> array('name' =3D> 'exclusive', 'type' =3D> =20 'xsd:string'), 'original' =3D> array('name' =3D> 'original', 'type' =3D> =20 'xsd:string'), 'creation_date' =3D> array('name' =3D> 'creation_date', 'type' =20= =3D> 'xsd:string'), 'major' =3D> array('name' =3D> 'major', 'type' =3D> = 'xsd:string'), 'label' =3D> array('name' =3D> 'label', 'type' =3D> = 'xsd:string'), 'producer' =3D> array('name' =3D> 'producer', 'type' =3D> =20 'xsd:string'), 'editor' =3D> array('name' =3D> 'editor', 'type' =3D> = 'xsd:string'), 'arranger' =3D> array('name' =3D> 'arranger', 'type' =3D> =20 'xsd:string'), 'nature_sacem' =3D> array('name' =3D> 'nature_sacem', 'type' =3D>= =20 'xsd:string'), 'genres' =3D> array('name' =3D> 'genres', 'type' =3D> 'xsd:string') ) ); $server->wsdl->addComplexType( 'preview', 'complexType', 'struct', 'all', '', array( 'start' =3D> array('name' =3D> 'start', 'type' =3D> = 'xsd:string'), 'duration' =3D> array('name' =3D> 'duration', 'type' =3D> =20 'xsd:string'), 'quality' =3D> array('name' =3D> 'quality', 'type' =3D> =20 'xsd:string'), 'duration' =3D> array('name' =3D> 'duration', 'type' =3D> =20 'xsd:string'), 'author' =3D> array('name' =3D> 'author', 'type' =3D> = 'xsd:string'), 'composer' =3D> array('name' =3D> 'composer', 'type' =3D> =20 'xsd:string'), 'urlbuy' =3D> array('name' =3D> 'urlbuy', 'type' =3D> = 'xsd:string'), 'genres' =3D> array('name' =3D> 'genres', 'type' =3D> = 'xsd:string') ) ); $server->wsdl->addComplexType( 'drm', 'complexType', 'struct', 'all', '', array( 'mode' =3D> array('name' =3D> 'mode', 'type' =3D> = 'xsd:string'), 'notvalidafter' =3D> array('name' =3D> 'notvalidafter', 'type' =20= =3D> 'xsd:string'), 'notvalidbefore' =3D> array('name' =3D> 'notvalidbefore', = 'type' =20 =3D> 'xsd:string') ) ); // Register the methods to expose $server->register('vivacodeThis' , array( 'connect' =3D> 'tns:connect', 'metadata' =3D> = 'tns:metadata', =20 'preview' =3D> 'tns:preview', 'drm' =3D> 'tns:drm' ) , // input parameters array('return' =3D> 'xsd:string'), // output parameters 'urn:vivacodeThis2', // namespace 'urn:vivacodeThis2#vivacodeThis', // soapaction 'rpc', // style 'encoded', // use 'mode=3Dsale or rent' // documentation ); |
From: Arun S. <aru...@gm...> - 2007-01-16 06:17:44
|
So far i 'm using nusoap to create webservices, i had used only integer or string parameters to be passed onto the webservice provider.... Now i want to pass a complex array to a web service function like... for ($i=0;$i<=3;$i++) $arr_data[] = array("id"=>$i,"hits"=>1); This array i want to pass as parameter. Can anybody give me a solutions.. how should i register my method so that i will get the array in the method to manipulate... /** * register getCategoryDetail() method **/ $objServer->register( 'GBLEComCategoryService.getCategoryDetail', array('id'=>'xsd:int'), /// input parameter here >>here i want to pass an array instead of an integer array('return'=>'tns:CatDetail'), $NAMESPACE ); Please get me a solution.. as early as possible..... i need to get the solutons to finish my currently assigned project in time.. -- Regards, ...Arun |
From: <ar...@vd...> - 2007-01-15 20:54:41
|
Bedankt voor uw bericht. Wegens vakantie ben ik echter niet in staat om uw email te lezen of te beantwoorden. Op maandag 22 januari as. ben ik weer aanwezig. Voor lopende en/of dringende zaken kunt u contact opnemen met Lars de Ruijter, la...@vd... of telefonisch via 0513-654445. Met vriendelijke groet, Arjan Pot Van der Let & Partners Identity |
From: Troy C. <tcr...@ke...> - 2007-01-15 14:11:24
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Sorry, I found it. Thanks anyway. Troy Cregger wrote: > I've inherited a Nusoap based SOAP server and was looking for > documentation on nusoap but can't seem to find much. Can someone on this > list point me to some docs? > > Thanks! > -Troy > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Nusoap-general mailing list > Nus...@li... > https://lists.sourceforge.net/lists/listinfo/nusoap-general -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFq4t0nBEWLrrYRl8RAn/HAJ0YHYW4WMXhLB+CT34kgfjJgi4pjgCeMWyu Baj2AwiC+2nyuM2a8WurFvc= =AhjO -----END PGP SIGNATURE----- |
From: Troy C. <tcr...@ke...> - 2007-01-15 14:04:12
|
I've inherited a Nusoap based SOAP server and was looking for documentation on nusoap but can't seem to find much. Can someone on this list point me to some docs? Thanks! -Troy |
From: <ar...@vd...> - 2007-01-15 12:48:41
|
Bedankt voor uw bericht. Wegens vakantie ben ik echter niet in staat om uw email te lezen of te beantwoorden. Op maandag 22 januari as. ben ik weer aanwezig. Voor lopende en/of dringende zaken kunt u contact opnemen met Lars de Ruijter, la...@vd... of telefonisch via 0513-654445. Met vriendelijke groet, Arjan Pot Van der Let & Partners Identity |