Proxy-config wsdl question

When defining my destenatoin in the proxy-config.xml, Is it possible to point to a wdsl  located on the local file system?
I am trying to connect TIBCO web-services which do not advertise the WSDL.
-jh

You peaked my interest so I did the following.
FIrst, I found a simple service (calculate) online and copied it's WSDL to my local drive.
http://www.dneonline.com/calculator.asmx?WSDL
I added the file reference to it in my proxy-config.xml.
<wsdl>file://c:/calculator.wsdl</wsdl>
No luck!
However, since I had the WSDL, I placed it on my local TOMCAT (LCDS) instance so that I could reference it via HTTP.
<destination id="testWSDLFile">
<properties>
<wsdl>http://localhost:8400/lcds/wsdl/calculator.wsdl</wsdl>
<soap>*</soap>
</properties>
<adapter ref="soap-proxy"/>  
</destination> Once i did that, I could use the Data Service wizard in FlashBuilder and everything seemed to work. I was worried that I might have crossdomain issue-something to consider I suppose. Otherwise .. all good.
Hope that helps some
-bob-

Similar Messages

  • Failed creation of deployable proxy upon wsdl containing "soapenc" types

    Hello all,
    I've tried to create deployable proxy upon wsdl file
    Creation process has failed and following exception was logged:
    com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Proxy generation problem. See nested exception.
    Caused by: java.lang.Exception:  WSDL part <in0> points to unavailable type with qname: <string>
    wsdl is created by Apache Axis version: 1.4. It contains "soapenc" types, e.g.:
       <wsdl:message name="getPageObjectListRequest">
          <wsdl:part name="in0" type="soapenc:string"/>
          <wsdl:part name="in1" type="soapenc:string"/>
          <wsdl:part name="in2" type="soapenc:string"/>
          <wsdl:part name="in3" type="soapenc:string"/>
       </wsdl:message>
    Could you give me any advice? What should I do to create deploable proxy upon such wsdl file?

    I am getting this error by generating a web service from pl/sql procedure. Just one package, just one procedure. Error stack:
    java.lang.NullPointerException
         at oracle.jdevimpl.webservices.generator.WrapperClassGenerator.generate(WrapperClassGenerator.java:262)
         at oracle.jdevimpl.webservices.generator.SPWebServiceGenerator$1.run(SPWebServiceGenerator.java:285)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:551)
         at java.lang.Thread.run(Thread.java:595)
    The pl/sql package header looks like this:
    CREATE OR REPLACE package ADMIN.etis_autent as
    procedure autent(
         ps_kasutajatunnus in varchar2,
         ps_parool in varchar2,
         ps_isikukood out varchar2,
         ps_eesnimi out varchar2,
         ps_perekonnanimi out varchar2
    end etis_autent;
    /

  • ABAP client proxy from WSDL

    I have 2 problems in creating abap client proxies using wsdl
    1.when i try to create client proxy by giving RPC style wsdl(generated by SAP itself for a RFC) the system throws an error and not allowing to create the proxy
    2.The client proxy which i have created for a wsdl(either SAP created document type/any wsdl from commercial websites) gives an error "No receiver could be found"
    could somebody please clarify and help me to solve the problem.
    Thanks in advance.
    Vasanth.

    Hi Vasanth,
    There are many threads and blogs on this topic.
    Choose the search Forum on the Forum page and select "All categories" in the Category field and enter your topic "ABAP client proxy from WSDL" in the search field.
    Rgds,
    Sam Raju

  • Client Proxy through WSDL

    Hi,
    I am creating a Client Proxy through WSDL Link in SE80 Transaction. I am getting an error 'NO Vendor Specified'. Please throw some light.
    Thanks,
    Mathivanan.G

    I have tried that also same error.
    This is my test WSDL File.
    I am not able to paste the File contents i dont know Y
    <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://microsoft.com/webservices/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://microsoft.com/webservices/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
      <wsdl:types>
        <s:schema elementFormDefault="qualified" targetNamespace="http://microsoft.com/webservices/">
          <s:element name="GetPrimeNumbers">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="1" maxOccurs="1" name="max" type="s:int" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="GetPrimeNumbersResponse">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="GetPrimeNumbersResult" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="string" nillable="true" type="s:string" />
        </s:schema>
      </wsdl:types>
      <wsdl:message name="GetPrimeNumbersSoapIn">
        <wsdl:part name="parameters" element="tns:GetPrimeNumbers" />
      </wsdl:message>
      <wsdl:message name="GetPrimeNumbersSoapOut">
        <wsdl:part name="parameters" element="tns:GetPrimeNumbersResponse" />
      </wsdl:message>
      <wsdl:message name="GetPrimeNumbersHttpGetIn">
        <wsdl:part name="max" type="s:string" />
      </wsdl:message>
      <wsdl:message name="GetPrimeNumbersHttpGetOut">
        <wsdl:part name="Body" element="tns:string" />
      </wsdl:message>
      <wsdl:message name="GetPrimeNumbersHttpPostIn">
        <wsdl:part name="max" type="s:string" />
      </wsdl:message>
      <wsdl:message name="GetPrimeNumbersHttpPostOut">
        <wsdl:part name="Body" element="tns:string" />
      </wsdl:message>
      <wsdl:portType name="PrimeNumbersSoap">
        <wsdl:operation name="GetPrimeNumbers">
          <wsdl:input message="tns:GetPrimeNumbersSoapIn" />
          <wsdl:output message="tns:GetPrimeNumbersSoapOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:portType name="PrimeNumbersHttpGet">
        <wsdl:operation name="GetPrimeNumbers">
          <wsdl:input message="tns:GetPrimeNumbersHttpGetIn" />
          <wsdl:output message="tns:GetPrimeNumbersHttpGetOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:portType name="PrimeNumbersHttpPost">
        <wsdl:operation name="GetPrimeNumbers">
          <wsdl:input message="tns:GetPrimeNumbersHttpPostIn" />
          <wsdl:output message="tns:GetPrimeNumbersHttpPostOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="PrimeNumbersSoap" type="tns:PrimeNumbersSoap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="GetPrimeNumbers">
          <soap:operation soapAction="http://microsoft.com/webservices/GetPrimeNumbers" style="document" />
          <wsdl:input>
            <soap:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:binding name="PrimeNumbersHttpGet" type="tns:PrimeNumbersHttpGet">
        <http:binding verb="GET" />
        <wsdl:operation name="GetPrimeNumbers">
          <http:operation location="/GetPrimeNumbers" />
          <wsdl:input>
            <http:urlEncoded />
          </wsdl:input>
          <wsdl:output>
            <mime:mimeXml part="Body" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:binding name="PrimeNumbersHttpPost" type="tns:PrimeNumbersHttpPost">
        <http:binding verb="POST" />
        <wsdl:operation name="GetPrimeNumbers">
          <http:operation location="/GetPrimeNumbers" />
          <wsdl:input>
            <mime:content type="application/x-www-form-urlencoded" />
          </wsdl:input>
          <wsdl:output>
            <mime:mimeXml part="Body" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="PrimeNumbers">
        <wsdl:port name="PrimeNumbersSoap" binding="tns:PrimeNumbersSoap">
          <soap:address location="http://www50.brinkster.com/vbfacileinpt/np.asmx" />
        </wsdl:port>
        <wsdl:port name="PrimeNumbersHttpGet" binding="tns:PrimeNumbersHttpGet">
          <http:address location="http://www50.brinkster.com/vbfacileinpt/np.asmx" />
        </wsdl:port>
        <wsdl:port name="PrimeNumbersHttpPost" binding="tns:PrimeNumbersHttpPost">
          <http:address location="http://www50.brinkster.com/vbfacileinpt/np.asmx" />
        </wsdl:port>
      </wsdl:service>
    </wsdl:definitions>
    Edited by: Mathivanan G on May 13, 2009 1:14 PM

  • Exception when creating ABAP client proxy using WSDL

    Hi Experts,
    I tried to create a client proxy on the CRM system for a web service URL (where the WSDL exists), in the transaction SE80.
    When I tried creating this, i got exception as follows.
    Exception occured in communication framework:error in HTTP framework:404 conn failed http://inld50054696a:8080/clearspace/rpc/rest?forumservice?wsdl
    Please let me know, how to tackle this problem.
    What are all the settings that needs to be done in this regard.
    Regards
    Lakshman

    Hi Vasanth,
    There are many threads and blogs on this topic.
    Choose the search Forum on the Forum page and select "All categories" in the Category field and enter your topic "ABAP client proxy from WSDL" in the search field.
    Rgds,
    Sam Raju

  • I was infected by a virus and this changed proxy config to 127.0.0.1:64727, i removed the virus, but every time i start firefox i find the proxy configuration made by the virus.is there any config file i can change ?

    I was infected by a virus (i can't remember the virus name). Antivirus removed it, but i think it changed some config file on FF, 'cause every time i try to restart it , i find it configured to use proxy 127.0.0.1:64727. I change every time the config, i also tried to change the config on the about:config and set network.proxy.type 5 , no port and no network proxy (so it's all on default) . I changed the config on the gui, i removed the config from windows registry ( IE and chrome start normally, with no proxy), but every time i restart FF i find the proxy config there. How can i fix it ?

    I had the same problem.
    Solution
    '''Clear Virus First'''
    -clear virus using either anti-virus or manually going into task manager and figuring out which processes are bad.
    -If the manual way, go through each process in task manager and right click to "open file location". Depending on where it is located and the name of the process, you can google the process name online to see if it is bad.
    -Delete the bad process file and as added security, create a folder using the name of the process so the file can't be recreated later. (example: If I had a virus "3dcr.exe" in folder c:\user, then delete "3dcr.exe" and create a new folder c:\user\3dcr.exe\ )
    '''Fix Proxy Settings'''
    -If your browser points an proxy server and you can't change the settings because every restart of firefox returns the settings back (even after changing in about:config or prefs.js or options>advanced>network>settings). The answer is to uninstall firefox with all its user preferences and the reinstall it.
    *I know it is a bit brute force, but it was the only method I found to work. Just be sure to save your bookmarks first.

  • OAS and proxy configs in IE5

    I have OAS on an NT4 box connecting into my Solaris cluster w/ 8i. I can hit my webpage local on the NT box but when I go to other boxes I can't see the page unless I take the proxy config out of the IE5 browser. Then I can't see the internet with those machines. Have tried to leave the proxy w/ the bypass button checked and putting the address in my host files no go. Is there a setting that I can change in OAS that will effect this..I know I can config my IE5 browser but I have alot to rollout to so that may be hard to do...It is only on an intranet but it resolves to the fully qualified net name ie:http://iam.here.com/ but will not resolve to http://iam/...Is this possibly a DNS issue or a OAS config issue... we are using a 8080 port setting on all outgoing www and ftp traffic but this should not effect internal traffic.
    Thanks,
    Eric

    if I have IIS for BI Pres Svcs and the BI Server is installed on OASNo -- you have the Presentation Services plugin installed on IIS OR OAS -- and that's all from an OBIEE point of view.
    BI Server is a standalone binary (nqsserver) which runs outside of any application server.
    I can point BIP to the OAS on BI Server?You would install BIP on OAS. However - I don't know how the security integration would work, or if it would. Sorry.
    Maybe someone else here will be able to help, or you could try the BI Publisher forum?

  • [svn] 2611: Bugs: BLZ-200: Setting virtual-host in proxy-config causes ConfigurationException

    Revision: 2611<br />Author:   [email protected]<br />Date:     2008-07-24 11:36:03 -0700 (Thu, 24 Jul 2008)<br /><br />Log Message:<br />-----------<br />Bugs: BLZ-200: Setting virtual-host in proxy-config causes ConfigurationException<br />      BLZ-201: Configure host/port for proxy setting causes ConfigurationException in BlazeDS<br />QA: need a unit test reading the example proxy-config.xml and verifying that all values are read in HTTPProxyAdapter.java<br />Doc: no<br /><br />Came across and fixed another bug: when <max-connections> is not set inside a <max-per-host>, we assumed the default value of 2 instead of the <default-max-connections-per-host> value (if set).<br />Also, some whitespace reformatting in HTTPProxyAdapter.java.<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/BLZ-200<br />    http://bugs.adobe.com/jira/browse/BLZ-201<br /><br />Modified Paths:<br />--------------<br />    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/HTTPProxyAdapt er.java<br />    blazeds/branches/3.0.x/resources/config/proxy-config.xml

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Using auto detect proxy when I close web pages it goes back to manual proxy config help please

    I was using the web o/k restarted my computer, tried to conect to the internet web page came up but would not turn over, said trouble with proxy. Looked in tool, options, advanced, setting. The box next to Manual proxy config was ticked. Changed to auto detect proxy clicked ok then ok. Next it had reverted back to manual proxy, is there a way to save this on auto proxy config as it is a pain having to change it all the time.
    Thanks

    See:
    * http://kb.mozillazine.org/Preferences_not_saved
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Failed to generate client proxy from WSDL definition for this service

    Hi,
    I am using Weblogic 8.1 SP1. I created a webservice which takes a XMLBean object
    as parameter and returns another XMLBean object. The web service works fine when
    tested using the workshop's test browser but when i am trying to generate a client
    proxy trough the workshop's test browser, it displays this warning:
    Failed to generate client proxy from WSDL definition for this service
    and does not generate the proxy.
    I'll appreciate any thoughts on this.
    Thanks
    Sandeep

    Hi Sandeep,
    Could you try invoking clientgen [1] directly to see if this properly
    consumes your WSDL?
    Thanks,
    Bruce
    [1]
    http://e-docs.bea.com/wls/docs81/webserv/anttasks.html#1080160
    Sandeep wrote:
    >
    Hi,
    I am using Weblogic 8.1 SP1. I created a webservice which takes a XMLBean object
    as parameter and returns another XMLBean object. The web service works fine when
    tested using the workshop's test browser but when i am trying to generate a client
    proxy trough the workshop's test browser, it displays this warning:
    Failed to generate client proxy from WSDL definition for this service
    and does not generate the proxy.
    I'll appreciate any thoughts on this.
    Thanks
    Sandeep

  • CSS110501 - CE590 (ACNS 5.1), reverse proxy config issue

    Guys,
    I'm trying to get the following to work:
    Client on internet (no explicit proxy config) is connecting to a webserver. The VIP resides on the CSS which has a reverse proxy config pointing to the CE590.
    |Client|
    |
    |
    | CSS |----------| CE590 |
    |
    |
    | Web |
    I used the config from the Cisco web, but I can't get it to work.
    I can connect to the webserver, but it looks like the CE590 is not acting as a proxy, at least not completely.
    Because it looks like it 'hangs' on collecting the graphics.
    This is my config on the CSS:
    service bktpce1
    protocol tcp
    port 80
    no cache-bypass
    ip address 192.168.0.2
    type transparent-cache
    active
    eql cacheable
    description "This EQL contains extensions of cacheable content"
    extension pdf "Acrobat"
    extension fdf "Acrobat Forms Document"
    extension au "Sound audio/basic"
    extension bmp "Bitmap Image"
    extension z "Compressed data application/x-compress"
    extension gif "GIF Image image/gif"
    extension html "Hypertext Markup Language text/html"
    extension htm
    extension js "Java script application/x-javascript"
    extension mocha
    extension jpeg "JPEG image image/jpeg"
    extension jpg
    extension jpe
    extension jfif
    extension pjpeg
    extension pjp
    extension mp2 "MPEG Audio audio/x-mpeg"
    extension mpa
    extension abs
    extension mpeg "MPEG Video video/mpeg"
    extension mpg
    extension mpe
    extension mpv
    extension vbs
    extension m1v
    extension pcx "PCX Image"
    extension txt "Plain text text/plain"
    extension text
    extension mov "QuickTime video/quicktime"
    extension tiff "TIFF Image image/tiff"
    extension tar "Unix Tape Archive application/x-tar"
    extension avi "Video for Windows video/x-msvideo"
    extension wav "Wave File audio/x-wav"
    extension gz "application/x-gzip"
    extension zip "ZIP file application/x-zip-compressed"
    content p_cm_vip-prod-appl-www
    protocol tcp
    port 80
    vip address 123.13.112.56
    add service x-appl-server1
    active
    content p_nc_vip-prod-appl-www
    sticky-inact-timeout 15
    add service x-appl-server1
    port 80
    url "/*"
    protocol tcp
    vip address 123.13.112.55
    active
    content p_rp-vip-http-web
    protocol tcp
    port 80
    url "/*" eql cacheable
    add service bktpce1
    vip address 123.13.112.55
    active
    This is the config on the CE590:
    ! ACNS version 5.1.15
    http proxy outgoing host 123.13.112.56 80 primary
    http l4-switch enable
    interface FastEthernet 0/0
    ip address 192.168.0.2 255.255.255.248
    no autosense
    bandwidth 100
    full-duplex
    no cdp enable
    exit
    ip default-gateway 192.168.0.1
    no bypass load enable
    rule action use-proxy 123.13.112.56 80 pattern-list 1 protocol all
    Do I need to configure something else?
    Regards,
    Edwin

    I can see traffic hitting the VIPs:
    p_cm_vip-prod-ap Active x-appl-server1 5827
    p_nc_vip-prod-ap Active x-appl-server1 1574
    p_rp-vip-http-we Active bktpce1 1149
    When I look in the apache error logs there are no entries.
    When I look in the appache access logs I only see the following entries from my client host:
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET / HTTP/1.1" 200 5296 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET /outerframe.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC HTTP/1.1" 200 3624 "http://preprod.daarginds.nl/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET /main.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC HTTP/1.1" 200 36569 "http://preprod.daarginds.nl/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET /js/dropdown_initialize.js.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC HTTP/1.1" 200 228 "http://preprod.daarginds.nl/main.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET /js/dropdownC.js.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC HTTP/1.1" 200 15928 "http://preprod.daarginds.nl/main.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    82.4.195.39 - - [02/Aug/2005:10:24:37 +0200] "GET /css/daarginds.css HTTP/1.1" 304 - "http://preprod.daarginds.nl/main.php?language=NL&strSiteCountry=NL&BRCHERKOMST=BRC" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
    When I do a tcpdump on destination port 80 on the server, I see the following:
    preprod.daarginds.nl.http: . ack 52149 win 64860 (DF)
    10:34:05.957776 82.4.195.39.6242 > preprod.daarginds.nl.http: . ack 10204 win 64860 (DF)
    10:34:06.058767 82.4.195.39.6242 > preprod.daarginds.nl.http: P 1403:1905(502) ack 10204 win 64860 (DF)
    10:34:06.058777 82.4.195.39.6243 > preprod.daarginds.nl.http: R 1064:1064(0) ack 53295 win 0 (DF)
    10:34:06.070434 82.4.195.39.6242 > preprod.daarginds.nl.http: R 1905:1905(0) ack 10372 win 0 (DF)
    10:34:27.020617 192.168.0.2.55444 > preprod.daarginds.nl.http: S 1662943048:1662943048(0) win 5840 (DF)
    10:34:27.020866 192.168.0.2.55444 > preprod.daarginds.nl.http: . ack 155787170 win 5840 (DF)
    10:34:27.020889 192.168.0.2.55444 > preprod.daarginds.nl.http: F 0:0(0) ack 1 win 5840 (DF)
    10:34:27.021240 192.168.0.2.55444 > preprod.daarginds.nl.http: . ack 2 win 5840 (DF)
    So the CE is hitting the webserver (although not shown in the apache log files).
    But the 192.168.0.2 you see with the tcpdump is listed every 60 sec, and this is the is-a-live test of the CE.....
    You don't see an entry in tcpdump or in the apache log files when hitting the server with a browser.
    Edwin

  • [svn] 2636: Add the tests for proxy config (blz-200 and blz-201)

    Revision: 2636
    Author: [email protected]
    Date: 2008-07-28 08:07:07 -0700 (Mon, 28 Jul 2008)
    Log Message:
    Add the tests for proxy config (blz-200 and blz-201)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/blz-200
    http://bugs.adobe.com/jira/browse/blz-201
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/proxy-config.mods.xml

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • OD managed client proxy-config

    Hello all,
    we created at the OD-server (OSX 10.5.8) a computergroup for our
    managed clients (OSX 10.6.2).
    Some configs working correct, f.e dock-config (ID com.apple.dock).
    But the proxy-config (ID com.apple.SystemConfiguration)
    wasn't executed at the client.
    The client keep former proxy-entries.
    Is this an error or because of forward reverse proxy?
    Thanks! Wolfgang

    Hi
    I have seen this before a number of times and only on Intel iMacs, old and new. All I can put it down to is a possible screen corruption at the Login Window? Perhaps a rogue or damaged/corrupted font? It may also have something to do with how the setting is being applied locally which might be conflicting with the Managed Preferences applied from the Server?
    I have also seen it initially with an OD Master/Replica pair.
    For me it tends to disappear after a while or if you click the back button or restart. It might be a timing issue with whatever is providing the routing? Perhaps the NTP Server? If you're in a position you could investigate the Switch or Router? Perhaps replace one or the other or both (temporarily) to see if things change?
    Tony

  • Add proxy config with ard2

    How can I add a proxy config to 30 mac with 10.4 with ARD2 ?

    You shouldn't have to enable the root account. I've
    send myriad UNIX commands to my workstations
    (including testing the one in this thread) without
    problems and none of them have the root account
    enabled.
    Not sure why you're hitting that error. Are the
    systems reporting that error on the same version of
    Mac OS X as the systems for which it works correctly?
    Dave, thanks for the advice, the computers are all netbooted from the same image on my osx server... I'm now trying to solve another problem with unix commands.
    I'm trying to get a lab to log into a networked testing program, and select the correct test version simultaneously. So far using osascripts, I've got the whole lab to log into the macs, log into the testing program, but now I need it to select the correct test and level. Here's my script:
    osascript -e 'tell application "System Events" to keystroke "1" using command down'
    osascript -e 'tell application "System Events" to delay 3.0'
    ....NEED COMMAND HERE TO MOVE TO SECOND CHOICE IN A HIGHLIGHTED LIST (the down arrow does this on the keyboard...)
    osascript -e 'tell application "System Events" to delay 3.0'
    osascript -e 'tell application "System Events" to keystroke return'
    osascript -e 'tell application "System Events" to delay 3.0'
    osascript -e 'tell application "System Events" to keystroke "n" using command down'
    I thought I had it working using this command:
    osascript -e 'tell application "System Events" to keystroke "down"'
    but it doesn't seem to work now...
    Tried this one too:
    osascript -e 'tell application "System Events" to keystroke down'
    So, does anyone know what to say that similar to hitting the down arrow on the keyboard?
    Thanks!

  • Using WSDL2java to generate proxy from wsdl

    HI,
    I have a web service (implemented in .NET) which extends soap headers for doing
    Authentication. WSDL is generated out of this web service. But when i use wsdl2java
    (J2EE) to generate a proxy class, there is no interface generated for soap headers.
    Without extending SOAP headers the web service works fine.
    Basically, I'm looking for a way to generate java interfaces (ie. proxies) for
    SOAP headers out of the WSDL file.
    PFA the WSDL file and the proxy
    Any help on this is appreciated.
    [WSOClient.zip]

    I am not sure why it fails in WebSphere. Please try posting
    this question to a WebSphere newsgroup.
    Regards,
    -manoj
    http://manojc.com
    "viswanath" <[email protected]> wrote in message
    news:40aee7fa$1@mktnews1...
    >
    thanks manoj for your reply.
    I'm using IBM WebSphere SDK for Web Services v5.1
    for generation of java client.
    I'm able to generate the client but the problem is
    the WSDl2Java command ignored the SOAPHeaders while
    generating the proxy. Since I'm using SOAP headers for
    authentication the code fails.
    Thanks,
    Viswanath
    "manoj cheenath" <[email protected]> wrote:
    I am not sure which tool you are using
    to generate web service clent. To generate
    a WLS web service client you have to use clientgen.
    Details here:
    http://e-docs.bea.com/wls/docs81/webserv/anttasks.html
    Regards,
    -manoj
    http://manojc.com
    "viswanath" <[email protected]> wrote in message
    news:40ad8a07$[email protected]..
    HI,
    I have a web service (implemented in .NET) which extends soap headersfor
    doing
    Authentication. WSDL is generated out of this web service. But wheni use
    wsdl2java
    (J2EE) to generate a proxy class, there is no interface generated forsoap
    headers.
    Without extending SOAP headers the web service works fine.
    Basically, I'm looking for a way to generate java interfaces (ie.
    proxies)
    for
    SOAP headers out of the WSDL file.
    PFA the WSDL file and the proxy
    Any help on this is appreciated.

Maybe you are looking for

  • HP Color Laserjet 2820 Scanning Drivers

    Win 7 (64bit).  HP Color LaserJet 2820.  Using Windows drivers (since HP doesn't have any). Problem: Since Window's own software does not scan to PDF I want to use a 3rd party program.  I've tried many (from vendors and Sourceforge).  But, every one

  • Nokia lumia 800 video problems.

    Hello, my friend in work has a nokia lumia 800 which a couple of days ago just stopped playing all kinds of videos, be it videos he has taken or on youtube or any thing! Also xbox live doesnt open either. Neither of us are very 'techy' so any suggest

  • Who has the key for unlocking a 6280 ? the phone i...

    If someone can help me..Message Edited by ajak on 07-Jul-2006 05:55 PM

  • Review:  Apple A/V Cable

    Bought A/V Cable at Apple Store tonight! Comes with a USB A/C adapter (USB female connector, which I assume works with the standard USB cable as well as the A/V cable). Connected via RGB to my TV: . Movies worked fine . Video podcasts worked fine . S

  • Converstion failed PDF to Excel

    Trying to convert PDF to Excel and keeps saying conversion failed.