General :: Begin Using PHP Soap / Verify It Is "enabled"?
Jan 20, 2011I have installed the package php5-soap-5.2.5-9.5. I am trying to figure out what else I need to do to begin using it and ways to verify it is "enabled".
View 1 RepliesI have installed the package php5-soap-5.2.5-9.5. I am trying to figure out what else I need to do to begin using it and ways to verify it is "enabled".
View 1 RepliesI have a CentOS 5 server with PHP 5.1.6 installed. Now I need to work with soap but the extension is not installed by default.Preferably without recompiling (if possible) ? Specific instructions would be very helpful.u Also, if you need any further information, let me know.
View 6 Replies View RelatedI have no hair any longer on the sides of my head... after trying to deal with this problem. I have installed apache2 on a SuSE 11.3 box, with php5, php-pear, php-gd, etc, and I cannot get php-soap to get recognized. Do I need to see the soap.[URL]..When I run an installation wizard for the web app I am planning to host, and it says that there is no soap installed. When I place soap php-soap php5-soap in the APACHE_MODULES of /etc/sysconfig/apache2 (just to make sure at least one is the right name) and restart apache2 I get error messages that say, soap (or php-soap, or php5-soap) is not installed, so its being ignored. When I run my phpinfo.php script, I see PHP is working, and soap is one of the successful modules (!?).
So, why can't apache see soap? I can find my soap.so within /usr/lib/php5/extensions/soap.so (how would I successfully load that into Apache, when it starts? I have been using yum, so I went to yast, and installed php-soap again. restarted apache, and still no success.
I have an apache web server with php 5.3 and I need to connect to a webservice I set up in sqlserver 2008
Both servers are in the intranet.
If from my browser I write http://192.168.2.2/internet?wsdl I am prompted for a user and a password, which are those of a windows user with permissions to connect to the ws. After writing them I can see the XML file in my browser.
the php file is code...
I've tried variations in the url, the user, with and without password, with no luck
I've googled a lot, with no luck
I want to install php-soap on centos 5.2 server. When i run the command, yum install php-soap, i get the error:
php-soap-5.1.6-24.el5_4.5.i386 from updates has depsolving problems --> Missing Dependency: php-common = 5.1.6-24.el5_4.5 is needed by package php-soap-5.1.6-24.el5_4.5.i386 (updates) Error: Missing Dependency: php-common = 5.1.6-24.el5_4.5 is needed by package php-soap-5.1.6-24.el5_4.5.i386 (updates) You could try using --skip-broken to work around the problem You could try running: package-cleanup --problems package-cleanup --dupes rpm -Va --nofiles --nodigest The php common file is not actually missing, its there with the exact name. The problem seems to be that the php-common file is installed from some other repository, thats y it is creating dependency problem. The only solution i found is to remove the current php-common file and install it again, but then lot of programs get uninstalled with it, which is y am afraid of doing that, since its a vps, and some 10 sites are working on that.
If I send data via scp, will scp automatically verify that the received data matches the sent data? I can do it manually with md5sum, but is that necessary?
View 3 Replies View RelatedHow to verify that Cronjobs schuled for the user has run or not ?
View 1 Replies View RelatedHow do I verify that my 6 GB/s SATA ports are working under Linux?
Linux detects the ports, and I can use them for disks but I would like to figure out if they are using a 6 GB/s controller/driver instead of the slower, more common speed.
I am testing about using SSL Certificate in apache web server using Ubantu 10.04.2 (64 bit edition). And I insert SSLcertificate and private.key file into "default-ssl" file in "sites-available" folder. But when I call the website, SSL certificate show "Could not verify this certificate for unknown reason".
Configuration in "default-ssl" is shown below
SSLCertificateFile /etc/apache2/ssl/mysite_com.cer
SSLCertificateKeyFile /etc/apache2/ssl/privatekey.key
SSLCACertificateFile /etc/apache2/ssl/SCAONE.cer
SSLCACertificateFile /etc/apache2/ssl/ROOTCA.cer
I back up all my digital photos to a couple of places. I've been using the cp command, but--given the personal value--have started to wonder if there's a more reliable way. I'm no stranger to Linux, Bash, Perl, etc., so I could write something to copy and compare md5 hashes, but I was wondering if something already exists (reinvention, wheels and what-not).
Most of my googling for copy and (verify|valid|check|hash|confirm) turns up rsync. However, as far as I can tell, rsync only uses hashes to see if a file needs to be updated. It doesn't perform a hash comparison afterward. For this use, specifically, the files are binary and typically 8-10MB.
I want to verify that serial port libraries are installed in my system.I know that it is installed at /usr/local/lib. But I dont know what all files are to be present in there, so to ensure that the same is installed properly. Iam using suse 11.1.
View 1 Replies View RelatedI have noticed kernel.org with kernel releases on the mainline.Example: 2.6.36-rc1 is currently on the mainline. What does it mean? Does it mean that feature changes been freezed.Does it mean "2.6.36-rc1 Released". I have job to verify vmware drivers to test the version information, Can I test it now through compiling for vmware drivers now. Lots of Git activity goes on after kernel comes on mainline. Does it mean our vmware drivers can only be tested after kernel if finally announced
View 4 Replies View Relatedif I'd a file like this
something
somethine123
begin something end
begin xyz end
somethingelse
and I want to find the strings only between begin and end, exluding begin and end; How can I grep that?
Making iPhone apps. a simple process? where do i begin. i have no idea what I'm doing.
View 4 Replies View RelatedI have an ongoing battle with upgrade and/or update. I did a file scan for entries containing ubuntu. There is more than a page of entries that begin 'newtoubuntu.' and say 'broken' in the file type.
View 2 Replies View RelatedKind of like Windows allows you to do. Specifically, I'd like to get Thunderbird to startup in the tray each time I log in.
View 3 Replies View RelatedMade the following bash script named trimsquote:
Code:
#!/bin/bash
IFS=$'
[code]...
I have a function in my SOAP server that returns an array. When the client calls this function, it only receives "array", and when I use foreach to print each member of this array, it tells me that this is not an array. If I change the returned value of the function to a string or integer type everything works fine though, so I don't think that there is any problem with the client.I am using NuSOAP library on php to achieve that.I had doubt when declaring the type of return value of the function. In XML schema there is no array type, so I specified the return value as a string like this:
PHP Code:
$server->register("getLocation",
array('country_population' => 'xsd:string',
[code]....
how to verify if the file is binary or text without to open the file
View 2 Replies View Related- Press the <Enter> key to begin the installation processisolinux: Disk error 80, AX=42BA, drive 94Boot failed: press a key to retry
View 4 Replies View RelatedHow can I check if KMS is enabled in my kernel? I've compiled mine with KMS radeon modeset defaulting to 1, but I still suspect that it is not enabled.
[Code]...
I am running fedora 14 linux with mysql, php and apache. Just get done with installing each app, But the php doesn't seem to be enabled in apache, since test file doesn't work:
<?php
phpinfo();
?>
I have a new Dell R710 dual processor machine I'm trying to install Fedora 11 x86_64 on (all versions I mention in this post are x86_64 bit). I downloaded the cd iso files, burned them to cd (I don't have a DVD burner), then told my machine to boot to the optical drive.
I get a very brief introduction message about ISOLINUX then the monitor refreshes and gives me the following message: "Press the <Enter> key to begin the installation process."
Naturally, I press the Enter key(s) on my keyboard. Nothing happens. I try Alt ASCII combinations that might mimic an Enter key. No dice. ctrl-alt-delete works, however, and the machine reboots.
My checksums for the iso's are perfect, and the install process triggers perfectly on other machines. Just not this one.
After much vain research, I download the Fedora 11 Live-KDE, burn it to CD and try it. It doesn't work - the same thing happens. I tried the net install, and it doesn't work either.
On a lark, I download the Fedora 10 Live KDE iso and burn it to cd. It works perfectly and skips the "Enter" phrase entirely. I take my Fedora 11 Live KDE disc and put it in another machine and it, too, works perfectly, which leads me to believe my cd burns are fine.
I've also used usb creator to create a bootable USB drive. It doesn't ask me to press enter - it just fails with a really arcane IF=0 error (arcane to me, anyway).
So I'm at a loss. I'd like to install Fedora 11 on this machine, but may end up with Fedora 10 or CentOS if I can't figure this out.
Is there some weird BIOS setting somewhere I'm missing? I find it really weird that my fedora 10 cd works, but my fedora 11 cd does not (but my fedora 11 cd works in other machines).
I'm trying to install Fedora 11 (64-bit) but after a small message about ISOLINUX the monitor refreshes and displays the following message: "Press the <Enter> key to begin the installation process." At that point the keyboard dies and I can't go any further. I tried 4 different FC11 dvds, also tried different PS2 and USB keyboards but the problem persists.
How to install FC 10 first and then upgrade to FC11. I tried that as well with no luck. I can install FC10 with no problems but why not FC11?
Friends i have an idea to broadcast few local TV channels to the world via internet.But friends i can't directly broadcast from my country because of bandwidth.friends is there a way to do this through a remote server server? i just need to input my stream to a remote server and then broadcast it from the server.I can stream channels to the server from my country through a 10mbbs connection.
View 2 Replies View RelatedI'm currently running Ubuntu 10.10 on VMware.My computeas a NVidia 8800GT graphics card.I'm trying to activate the Desktop Effects but keep getting the following error message: "Desktop Effects could not be enabled"I'm very new to Linux so I'm still in the extreme learning phase.My goal is to get Compiz to work. I was able to download/install it but I don't think it's working because of the Desktop Effects issue I have
View 4 Replies View RelatedI want to install Ubuntu 9.10 Server and need to make sure the Universe and Multiverse repositories are enabled at Code:/etc/apt/sources.list
View 4 Replies View Relatedhow do I setup/enabled telnet access only for particular directory, when any user log-in on to my server, he gets something like below pattern on to remote server, and only login to specified directory, also he need to run few bash commands.
[ravi@mydomain00 ~]$ telnet mydomain.com
Trying 127.0.0.1...
Connected to mydomain.com (127.0.0.1).
Escape character is '^]'.
[Code]....
I have a server hosted elsewhere and I am wondering if there is a way to know if my Server has turbo mode enabled or not?
I have i5 @ 750 Intel. It support Turbo mode but am not sure if my server has got it enabled or not.
I am playing around with aircrack.
And was trying to see whether my wireless card on my laptop can pass the injection test
And I end up seeing the following... does it mean my wireless card is not able to run aircrack?
root@myubuntu:/home/myubuntu# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11bg ESSID:"" Nickname:""
[Code].....