Sponsored Content
Full Discussion: Unable to ping localhost
Operating Systems AIX Unable to ping localhost Post 302747301 by Scott on Friday 21st of December 2012 03:52:42 AM
Old 12-21-2012
Just a first thought. Is the lo interface up?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unable to ping host

Hi, dear all, I am rather new to Unix and have this problem where I cant seem to ping from 1 host to another. The scenerio is as follows: - 1 QNX host->Eth->1 SCO host the SCO host is configured with it's IP the QNX host is configured with another IP both in the same domain, ie, 172.20.3.XX... (3 Replies)
Discussion started by: gavon
3 Replies

2. UNIX for Dummies Questions & Answers

NIC The Status Down but I can ping the localhost??!!

Hello, hi guys I don't know what is the problem with my NIC I can ping the Localhost (LOOPBACK) but when I run a scripts to check the NIC statuse it's shown the NIC DOWN sooo what could be the problem and what is the best way to start trouplshooting the NIC in SUN-SOLARIS. Regards, Karim ... (3 Replies)
Discussion started by: geoquest
3 Replies

3. UNIX for Dummies Questions & Answers

unable ping ipaddress

I have Sco openserver 5.0. It had a 125. ip. I changed it to a 192. ip. was unable to ping the 192. I was told to change it in the etc/tcp etc/hosts files which i did. still unable to ping. i am getting a message unable to route to host. I also have an error in my etc/tcp file on line... (1 Reply)
Discussion started by: pdoug76
1 Replies

4. UNIX for Dummies Questions & Answers

unable to ping

DEar all i am receiving this error on start and then unable to ping (dlpid): unable to open network adapter driver (/dev/mdi/e3h0) what to do ? (2 Replies)
Discussion started by: sak900354
2 Replies

5. IP Networking

Unable to ping the gateway IP itself

We are unable to bring one of our linux boxes into the network once it was restarted. But once we stop and start the network service. We are able to ping the gateway and get into network. After a minute or two we get the following reponse for the ping command 64 bytes from 124.168.215.40:... (6 Replies)
Discussion started by: chrisanto_2000
6 Replies

6. Solaris

unable to ping server

hi, I setup a Solaris machine in my server room and my client cannot access it. Can anyone advise? Test that i have done: -My client pc cannot ping the server. -My solaris server cannot ping client -My solaris server can ping it's gateway -Another NT machine 1 (10.179.30.26) in the server... (2 Replies)
Discussion started by: skiturn
2 Replies

7. IP Networking

unable to ping to my server

hi, I setup a Solaris machine in my server room and my client cannot access it. Can anyone advise? Test that i have done: -My client pc cannot ping the server. -My solaris server cannot ping client -My solaris server can ping it's gateway -Another NT machine 1 (10.179.30.26) in the... (8 Replies)
Discussion started by: skiturn
8 Replies

8. Solaris

Unable to ping New server

Hi ALL, I Have installed NEW v240 server through hyper terminal, After installation i unable to ping the server from out side server... i can see no entry in resolve.conf file.. but the server has DNS.. willl that issue.. please guide me ping the server from outside within the same network bk (1 Reply)
Discussion started by: suresh_krish
1 Replies

9. Solaris

Unable to ping Windows

Hello, Am unable to ping the Windows Box, from my Solaris Box. They both are in same LAN, have the same IP Segments. Windows IP :: 10.141.14.120 Solaris IP :: 10.141.14.11 Unable to get why isnt working out.... When using the command 'ping 10.141.14.120', it gives the error as 'ping:... (4 Replies)
Discussion started by: jayanto
4 Replies

10. IP Networking

Unable to connect to localhost in Debian 6?

Hello Everyone, I have unable to run the default server with localhost in my Debian machine. While trying to run Django I get: Error: That IP address can't be assigned-to. error While trying to run galaxy-dist I get this error: socket.error: Cannot assign requested address I can't telnet... (3 Replies)
Discussion started by: sachit adhikari
3 Replies
SOAP::WSDL::Manual::CodeFirst(3pm)			User Contributed Perl Documentation			SOAP::WSDL::Manual::CodeFirst(3pm)

NAME
CodeFirst - Writing Code-First Web Services with SOAP::WSDL Note: This document is just a collection of thought. There's no implementation yet. How Data Class definitions could look like Moose Of course SOAP::WSDL could (and probably should) just use Moose - it provides the full Metaclass Framework needed for generating Schemas from class definitions. However, Moose is way too powerful for building (just) simple Data Transfer Objects which can be expressed in XML. With Moose, a class could look like this: package MyElements::GenerateBarCode; use Moose; has 'xmlns' => is => 'ro', default => 'http://webservicex.net'; has 'xmlname' => is => 'ro', default => 'GenerateBarCode'; has 'BarCodeParam' => is => 'rw', type => 'MyTypes::BarCodeData'; has 'BarCodeText' => is => 'rw', type => 'String'; 1; This is - despite the condensed syntax - a lot of line noise. Native SOAP::WSDL SOAP::WSDL::XSD::Typelib::ComplexType (should) provide a simple setup method allowing a even shorter description (and offering the additional performance boost SOAP::WSDL has over Moose): package MyElements::GenerateBarCode; use strice; use warnings; use SOAP::WSDL::XSD::Typelib::Element; use SOAP::WSDL::XSD::Typelib::ComplexType; _namespace 'http://webservicex.net'; # might be better in the SOAP server interface _name 'GenerateBarCode'; _elements BarCodeParam => 'MyTypes::BarCodeData', BarCodeText => 'string'; This would result in the following XML Schema (inside a schema with the namespace "http://webservicex.net" - the namespaces could even be declared outside the DTO classes. <complexType name="GenerateBarCode"> <sequence> <element name="BarCodeParam" type="tns:BarCodeData"/> <element name="BarCodeText" type="xsd:string"/> </sequence> </complexType> Interface definitions Perl does not have the concept of interfaces. However, Moose provides Roles, which can be used for defining interfaces. However, it's not really necessary to define a interface Interface (in the sense of a Java interface) - a interface class is sufficient. Subroutine attributes could be used for providing additional information - attributes in perl are much like annotations in Java A interface could look like this: package MyServer::BarCode; use strict; use warnings; use SOAP::WSDL::Server::CodeFirst; sub generateBarCode :WebMethod(name=<GenerateBarCode> return=<MyElements::GenerateBarcodeResponse> body=<MyElements::GenerateBarcode>) { my ($self, $body, $header) = @_; my $result = MyElements::GenerateBarcodeResponse->new(); return $result; }; 1; perl v5.10.1 2010-12-21 SOAP::WSDL::Manual::CodeFirst(3pm)
All times are GMT -4. The time now is 07:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy