Maximo List Archive

This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.



Re: [MAXIMO List] WSDL Maximo (webServices)?

From: Fazal M Feroze (2011-06-22 07:43)

Any suggestion ?
- Fazal
________________________________
From: Fazal M Feroze <fazalmf@yahoo.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Tuesday, June 21, 2011 9:41 AM
Subject: [MAXIMO List] WSDL Maximo (webServices)
 
Any suggestion how to query Maximo WSDL connection using  Java or perl
Basically I am looking for creating /querying  SR using WSDL  services.
Fyi      I already created the webservice MXSR  in maximo 
http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
Thanks in advance
Regards
Fazal


From: Madhu Medury (2011-06-28 23:01)

Fazal,
Which version of Maximo is this ?
Just any basic web service consumer code can call this webservice and pass
in the service parameter to query Maximo.
If you need any exit configuration customization the derivative should be
extended off psdi.iface.router.WSExit interface extensions that implement -
getServiceName(). Basically all this is exchange is a qualified w3c dom
document.
thanks
Medury.
On Wed, Jun 22, 2011 at 9:43 AM, Fazal M Feroze <fazalmf@yahoo.com> wrote:
> **
>
>
> Any suggestion ?
>
> - Fazal
>
> ________________________________
> From: Fazal M Feroze <fazalmf@yahoo.com>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Tuesday, June 21, 2011 9:41 AM
> Subject: [MAXIMO List] WSDL Maximo (webServices)
>
>
> Any suggestion how to query Maximo WSDL connection using Java or perl
> Basically I am looking for creating /querying SR using WSDL services.
>
> Fyi I already created the webservice MXSR in maximo
> http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
>
> Thanks in advance
>
> Regards
>
> Fazal
>
>
>
>
>
>
>
--
*Thanks & Regards
S.M.M
D.734-975-1313 Extn: 117
M.562-458-6909
*
This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original.


From: Fazal M Feroze (2011-06-29 01:35)

Thanks Madhu
Its Maximo version 7.2 , actually I am trying to  invoke maxmio WSDL  SR methods (i.e MXSR)  from PERL SOAP call, but i couldn't find the right example.
- Fazal
________________________________
From: Madhu Medury <madhu@openboxsolutions.com>
To: MAXIMO@yahoogroups.com
Sent: Wednesday, June 29, 2011 9:31 AM
Subject: Re: [MAXIMO List] WSDL Maximo (webServices)?
Fazal,
Which version of Maximo is this ?
Just any basic web service consumer code can call this webservice and pass
in the service parameter to query Maximo.
If you need any exit configuration customization the derivative should be
extended off psdi.iface.router.WSExit interface extensions that implement -
getServiceName(). Basically all this is exchange is a qualified w3c dom
document.
thanks
Medury.
On Wed, Jun 22, 2011 at 9:43 AM, Fazal M Feroze <fazalmf@yahoo.com> wrote:
> **
>
>
> Any suggestion ?
>
> - Fazal
>
> ________________________________
> From: Fazal M Feroze <fazalmf@yahoo.com>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Tuesday, June 21, 2011 9:41 AM
> Subject: [MAXIMO List] WSDL Maximo (webServices)
>
>
> Any suggestion how to query Maximo WSDL connection using  Java or perl
> Basically I am looking for creating /querying  SR using WSDL  services.
>
> Fyi      I already created the webservice MXSR  in maximo
> http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
>
> Thanks in advance
>
> Regards
>
> Fazal
>
>
>
>
>
>
>
--
*Thanks & Regards
S.M.M
D.734-975-1313 Extn: 117
M.562-458-6909
*
This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original.
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join  : MAXIMO-subscribe@yahoogroups.com
Leave  : MAXIMO-unsubscribe@yahoogroups.com
Cry    : MAXIMO-owner@yahoogroups.com
Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: Fazal M Feroze (2011-07-09 12:19)

Hi ALL,
I am looking for simple perl program to communicate to  Maximo server (V7x) and query the ServiceRequest  thru WSDL.  Somehow i able to connect the Maximo server,  but  couldn't invoke any MXSR methods..   Please find my code below...  not sure what  I am doing wrong ,  any little help is appreciable
Fyi- the XML code is working perfectly in SoapUI and  Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR
-------------  Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;
my $g_hostname =  'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';
sub SOAP::Transport::HTTP::Client::get_basic_credentials {
  return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
   <soapenv:Header/>
   <soapenv:Body>
      <max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
         <max:MXSRQuery orderby="" operandMode="AND">
            <!--Optional:-->
            <max:WHERE/>
            <!--Optional:-->
            <max:SR>
               <!--0 to 2 repetitions:-->
               <max:TICKETID operator="=">"1001"</max:TICKETID>
               <max:CLASS> SR </max:CLASS>
            </max:SR>
         </max:MXSRQuery>
      </max:QueryMXSR>
   </soapenv:Body>
</soapenv:Envelope>';
$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
--------------------   END ----------------


From: Fazal M Feroze (2011-07-11 11:58)


 
Hi ALL,
I am looking for simple perl program to communicate to  Maximo server (V7x) and query the ServiceRequest  thru WSDL.  Somehow i able to connect the Maximo server,  but  couldn't invoke any MXSR methods..   Please find my code below...  not sure what  I am doing wrong ,  any little help is appreciable
Fyi- the XML code is working perfectly in SoapUI and  Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR
-------------  Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;
my $g_hostname =  'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';
sub SOAP::Transport::HTTP::Client::get_basic_credentials {
  return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
   <soapenv:Header/>
   <soapenv:Body>
      <max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
         <max:MXSRQuery orderby="" operandMode="AND">
            <!--Optional:-->
            <max:WHERE/>
            <!--Optional:-->
            <max:SR>
               <!--0 to 2 repetitions:-->
               <max:TICKETID operator="=">"1001"</max:TICKETID>
               <max:CLASS> SR </max:CLASS>
            </max:SR>
         </max:MXSRQuery>
      </max:QueryMXSR>
   </soapenv:Body>
</soapenv:Envelope>';
$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
--------------------   END ----------------


From: Juniko (2011-07-12 05:13)

Hi All,

Any one know the function of Recent Lead Time Weight in % on Storeroom application?
I read the help but still not understand. Please help....

Regards,

Warm Regards,
Juniko

-----Original Message-----
From: Fazal M Feroze <fazalmf@yahoo.com>
Sender: MAXIMO@yahoogroups.com
Date: Mon, 11 Jul 2011 11:58:49
To: MAXIMO@yahoogroups.com<MAXIMO@yahoogroups.com>
Reply-To: MAXIMO@yahoogroups.com
Subject: [MAXIMO List] Maximo Perl help - urgent



 
Hi ALL,

I am looking for simple perl program to communicate to  Maximo server (V7x) and query the ServiceRequest  thru WSDL.  Somehow i able to connect the Maximo server,  but  couldn't invoke any MXSR methods..   Please find my code below...  not sure what  I am doing wrong ,  any little help is appreciable

Fyi- the XML code is working perfectly in SoapUI and  Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR

-------------  Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;

my $g_hostname =  'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';

sub SOAP::Transport::HTTP::Client::get_basic_credentials {
  return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
   <soapenv:Header/>
   <soapenv:Body>
      <max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
         <max:MXSRQuery orderby="" operandMode="AND">
            <!--Optional:-->
            <max:WHERE/>
            <!--Optional:-->
            <max:SR>
               <!--0 to 2 repetitions:-->
               <max:TICKETID operator="=">"1001"</max:TICKETID>
               <max:CLASS> SR </max:CLASS>
            </max:SR>
         </max:MXSRQuery>
      </max:QueryMXSR>
   </soapenv:Body>
</soapenv:Envelope>';

$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
--------------------   END ----------------