JXRPC: reading the wsdl file

Hi, this is probably a daft quetion so bare with me !
Ive got a small jaxrpc DII client working which looks like this
QName serviceName = new QName("http://www.xmethods.net/sd/CurrencyExchangeService.wsdl", "CurrencyExchangePort");
ServiceFactory factory = ServiceFactory.newInstance();
Service service = factory.createService(serviceName);
Call call = service.createCall();
QName operationName = new QName("urn:xmethods-CurrencyExchange","getRateRequest");
call.setOperationName(operationName);
call.addParameter("country1",XMLType.XSD_STRING,String.class,ParameterMode.IN);
call.addParameter("country2",XMLType.XSD_STRING,String.class,ParameterMode.IN);
call.setReturnType(XMLType.XSD_FLOAT);
call.setProperty(Call.OPERATION_STYLE_PROPERTY,"rpc");
Call.ENCODINGSTYLE_URI_PROPERTY,"http://schemas.xmlsoap.org/soap/encoding/");
call.setTargetEndpointAddress("http://services.xmethods.net:80/soap");
Object[] actualArgs ={"Spain","France"};
Float rate = (Float) call.invoke(actualArgs);
System.out.println("Rate = '"+rate+"'");
.... which is fine and working ok.
However, instead of having the input / output parameters hard coded in the client is it not possible to read the wsdl document and dynamically calculate what input / output parameters are required? and then prompt the user for them? (In the same way that quickTry by binding point works http://www.bindingpoint.com/quicktryv2.aspx )
Hope someone can point me in the right direction. Many thanks

Kathy,
Thanks for your response! Im now having a different problem which Im positive is something really daft..
This is the client code now using the method you suggested
ServiceFactory factory = ServiceFactory.newInstance();
Service service = factory.createService(new URL("http://www.xmethods.net/sd/2001/BNQuoteService.wsdl"), new QName("http://www.xmethods.net/sd/BNQuoteService.wsdl","BNQuoteService"));
Call[] calls = service.getCalls(new QName("http://www.xmethods.net/sd/BNQuoteService.wsdl","BNQuotePort"));
calls[0].setTargetEndpointAddress("http://services.xmethods.net:80/soap/servlet/rpcrouter");
System.err.println("operation = " calls[0].getOperationName().getLocalPart() " ");
System.err.println("is in/out required = " calls[0].isParameterAndReturnSpecRequired(calls[0].getOperationName()) " ");
System.err.println("param type = "+calls[0].getParameterTypeByName("isbn").getLocalPart());
System.err.println("target Endpoint = "+calls[0].getTargetEndpointAddress());
Object[] actualArgs = {"`"};
String sReturn = ""+ calls[0].invoke(actualArgs);
System.out.println("result = "+sReturn+" ");
the output Im getting sugests that the wsdl doc is being read successfully however it still falls over on the invoke() call.....
operation = getPrice
is in/out required = false
param type = string
target Endpoint = http://services.xmethods.net:80/soap/servlet/rpcrouter
java.rmi.ServerException: service 'http://www.xmethods.net/sd/BNQuoteService.wsdl' unknown
     at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:372)
     at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:224)
     at com.sun.xml.rpc.client.dii.CallInvokerImpl.doInvoke(CallInvokerImpl.java:61)
     at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:446)
     at com.isa.utils.JAXRPCUtils.test2(JAXRPCUtils.java:39)
     at com.isa.utils.JAXRPCUtils.main(JAXRPCUtils.java:258)
any ideas ?

Similar Messages

  • Not able to read the wsdl file from server Premature EOF encounter

    Hi All,
    I am facing issue while accessing a web Service from server. Here is the clear view about it.
    I created a simple SyncBpel process in a composite and deployed in to the server and it is working fine. Later i created a new Asyn bpel process in a composite and in the external reference i dragged a web Service and imported the wsdl url from server of the SyncBpel and wired the Asynbpel process to webserive .
    Now here i am facing peculiar behavior which i am not able to trace it out.
    1) For the first time when i import the url of syncBpel from the server i am not facing any error and it is working fine as expected but when i close the Jdeveloper and open it i am not able to user the web Service and it is saying as "Not able to read the wsdl file from server Premature EOF encounter"
    2)When i close and open the Jdeveloper i can see the url of the wsdl which imported in webserver is changing from http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL to http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/BPELsync.wsdl
    3)when I open and see the url http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL I can see the soap address as *<soap:address location="http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel!1.0*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c/bpelsync_client_ep"/>*
    I don’t understand why the soap end contains “*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c” and this kind of url for soap address is coming to all the bpel process which I am deploying in the server.
    I checked the in Jdeveloper where webproxy is uncheck and the server is also up but still I am facing issue of reading the error.
    Can someone please help in resolving the issue.
    I am using SOA 11g 11.1.1.5 and Jdeveloper 11.1.1.5
    Many thanks.
    Tarak
    Edited by: user11896572 on Jan 17, 2012 5:22 PM

    Hi,
    Setting default from the jdeveloper -
    During composite deployment from Jdeveloper (wizard driven), you will be given an option to choose the version of the composite and there will also be an option for you to choose if the composite needs to be deployed as default.
    Setting default from the em console -
    After deploying a composite, login to the em console and click on the composite that you want to set as default, and you will find a tab - "Set as Default". please note that this tab will not be seen, if the composite is already set as default.
    Refer -
    http://docs.oracle.com/cd/E12839_01/integration.1111/e10226/soacompapp_mang.htm
    8.2 Managing the State of Deployed SOA Composite Applications
    Thanks

  • Modifying and reading the WSDL file

    I�ve got some questions about modifying and reading the WSDL file:�
    READING
    I want to read the elements of a determinated type (for example, documentation) from an WSDL that is in an URI. How can I do it?
    I�ve been trying with the api from IBM WSDL4J, but I wasnt able to create an Element from type "documentation" to search it (if that is the way...)
    MODIFYING
    How can I insert in an WSDL file a new element (for example documentation) in an exactly place?
    Any help is grateful,
    Thanks in advance
    Gobellot

    The problem is I want to insert documentation elements (and that is not done automatically by the jwsdp (unless i dont know how to do it, please tell me if there is a way) and I want to interpret too some things from the documentation elements so I have to read it separately because de wsdltojava doesnt do anything special for that.
    thanks anyway
    Gobellot

  • WSIL-Servlet cannot read existing WSDL-Files

    I've posted this question before in the adapters-forum, but the longer i think over it, i am sure that it belongs to this forum. So i'd like to apologize for cross-posting this one.
    I've installed SoaSuite 10.1.3.3 and OracleAdapters 10.1.3.1 with the SAP/mySAP-Adapter. I configured a jca-Connection to an existing SAP-Applicationserver. I was able to publish BAPI_COMPANYCODE_GETLIST as a webservice. Executing it using http://hostname/iwafjca/service.jsp also worked fine. I was also able to configure a BPEL-Process in jdeveloper with an invocation of the Service and deploy it to the SoaSuite-Applicationserver. I also was able to execute that process with the desired result.
    But since i restarted the SoaSuite the execution within the BPEL-Engine no longer works. The same is with the Service-Explorer inside jdeveloper: When i open the according Adapter-Services-Node and go down to <connection-name> > adapters > applications i only find "Exception: No services found". The iwafjca-URL still works. I've searched through some Logfiles and found the following Lines in $ORACLE_HOME/opmn/default_group~home~default_group~1.log:
    2007-12-10 14:52:22,098> <INFO> <collaxa> <ServerManager::loadProcesses> Done loading processes for all domains
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> IN X WSIL Registry the url /adapters/applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /adapters/applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key 9
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Delegating to the browser with key adapters with url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> IN X WSIL Registry the url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /applications/BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key 13
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Delegating to the browser with key applications with url /BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> string processing url /BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> the start key 0the end key -1
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> Sub dir null
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> processURL BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> >>>>><<<<<<<< Fiel name BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    <2007-12-10 14:53:25,638> <DEBUG> <default.collaxa.cube.ws> >>>>><<<<<<<< Trying to read the wsdl file stored at:null\BAPI_COMPANYCODE_GETLIST_invoke.wsdl
    07/12/10 14:53:25 java.io.FileNotFoundException: null\BAPI_COMPANYCODE_GETLIST_invoke.wsdl (Das System kann den angegebenen Pfad nicht finden) (on english something like: System cannot find the Path specified)
    07/12/10 14:53:25      at java.io.FileInputStream.open(Native Method)
    Apparently the URL, which the WSIL-Servlet uses is null instead of something like http://servername/.../.
    Does anyone know about this error and can point me out what to do to 'persist' the WSDLs within the WSIL-Servlet?
    Thank you very much
    Magnus

    Did you try to redeploy all your projects. somehow some files from your project are missing. ( at this moment I haven't got an explanation for this ).

  • How to Customize the WSDL file in Weblogic

    Hello All
    I am trying to make a web service deployed inside weblogic to be accessible through a loadbalancer that use HTTPS protocol.
    The wsdl file url is accessible through the load balancer via https and all works fine expect the schemalocation attributes within the wsdl
    <types>
      <xsd:schema>
      <xsd:import namespace="http://interfaces.package.com/" schemaLocation="http://domainname:80/I2SS-Interface-context-root/InterfacePort?xsd=1"/>
      </xsd:schema>
    </types>
    I don't know which element is generating the wsdl (weblogic or JAXWS SOAPBinding) . But I need that the schema location attributes contains https url and using the port 443.
    Please can you help me to customize this file.
    Thanks

    change your web-inf directory name to WEB-INF. This should fix your problem.
              Kumar.
              Alex wrote:
              > I write a jap and a web.xml files and also pack these files into a war file.
              > When I use the console to deploy the war, the console think the war is a
              > application, not web application.
              > I attach the test.war.
              >
              > Name: test.war
              > test.war Type: unspecified type (application/octet-stream)
              > Encoding: x-uuencode
              

  • Error in loading the WSDL file. Check the error log for more details

    Hello,
    I am trying to create a Import Adaptive Webservice Model. I am using the WSDL:
    http://www.abysal.com/soap/AbysalEmail.wsdl
    I am getting the below error when I choose WSDL source as UDDI or file (I am not using any logical destination)
    "Error in loading the WSDL file. Check the error log for more details."
    Where can i see the error log? And what is the solution to fix this?
    I am able to create the model if i save the wsdl locally on my machine and choose Local File System or File as the WSDL source. But at runtime this fails as the application tries to read the WSDL for metadata info and it looks into the application server for this file.
    I also tried creating the old webservice model. And it is able to create the model. But I feel I need to use the new model as this one is deprecated.
    Thanks,
    Sachin

    Hi
    For the logs you can search in this directory
    Goto Window->Show view->Other->PDE Runtim->Error Log
    please try this may it would help you out, try to create a model for you Web Service using Web Service Model (DEPRECATED)
    See this link:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/integration%2bof%2bweb%2bservices%2b-%2bdifferent%2bscenarios

  • Error in loading the WSDL file

    hi
    when i am creating a Adaptive Webservice model with the sneak preview 2004s
    while Choosing the published service from UDDI
    i am getting and error called
    "Error in loading the WSDL file"
    i have gone through the log files it basically saying that
    Caused by: java.io.IOException: Cannot connect to http://192.168.1.69:50100/QuickCarRentalService/Config1?wsdl, passing via http proxy: :80: Connection refused: connect
    but i am not using any proxy server
    what all changes i need to do in proxy server settings
    Regards
    JM

    Hi John,
    For changing the Proxy Settings in NWDS.
    Navigate to Window --> Preferences.
    Under Work Bench, Select Proxy Settings.
    There is a Check box saying "Use Proxy Sever", uncheck this one;
    and try imprting you WSDL file again.
    Hope it helps.
    Regards,
    Alka.

  • WSDL URL is invalid or the WSDL file is not valid or incorrect

    Hi All,
    I am using Oracle Soa Suite 11g. I have got Oracle database, Oracle weblogic admin server, Oracle SOA server all installed on my laptop.
    I have deployed a sample BPEL process. When I am trying to test the process it is giving an error
    "Either the WSDL URL is invalid or the WSDL file is not valid or incorrect. - WSDLException: faultCode=PARSER_ERROR: Failed to read wsdl file at: "http://KSNPavan-PC:8001/soa-infra/services/default/MyHumanWorkFlowSample1Project/vacationrequestprocess_client_ep?WSDL", caused by: java.net.ConnectException. : java.net.ConnectException: Connection refused: connect "
    Now, when I change the url address to
    "http://localhost:8001/soa-infra/services/default/MyHumanWorkFlowSample1Project/vacationrequestprocess_client_ep?WSDL"
    (Please note the difference in host name from KSNPavan-PC to localhost.)
    and click parse wsdl it is working well. I mean the test page is opening successfully and I am able to test the service.
    Testing the service from admin console is fine. Now I want to use this BPEL process service in another BPEL process. So, when I am piciking this service wsdl in JDeveloper it is throwing me the same error and I am unable to go ahead.
    Can anyone please tell me whetherI have to set property in the admin server console so that it always take local host in all the wsdl urls and solve my problem.
    Thank you,
    KSN Pavan.

    Hi All,
    My problem has got solved with the help of my colleagues. Actually the problem was that the host name KSNPavan-PC is not there in the C:\Windows\System32\Drivers\etc\hosts file. I Added the host name in the file with the IP same as that of local host and everything isworking well now.
    Thank you,
    KSN Pavan

  • Either the WSDL URL is invalid or the WSDL file is not valid or incorrect.

    Hi ,
    i deployed one bpel process in weblogic.
    when i am click on test below is error is coming. ( its on oracle soa 11)
    below is coming for all the process. previously it is working fine.
    Either the WSDL URL is invalid or the WSDL file is not valid or incorrect. - WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://xxxx:8001/soa-infra/services/default/ReadJMS/readtraxjms_client_ep?WSDL: HTTP connection error code is 503
    Please help me how it is resolved.
    Regards
    jan

    Hi Jan,
    We had the same issue in 11.1.1.3 and we used to restart the server to fix it. Hopefully before going to PROD we upgraded to 11.1.1.5 and next time we saw this issue was only when there was some problem with the OHS (it was down etc.).
    Which version you're on?
    Regards,
    Neeraj Sehgal

  • Stub generation problem with the wsdl file

    Hi all
    I'm trying to write a simle webservice client based on JAX. My webservice is working fine I've tested it with a standalone app. In my webservice I'm using complex type. Problem is that i can't generate properly stubs. This is a msg I'm getting during the generation
    warning: ignoring operation "getEmployee": message part does not refer to a schema element declaration
    warning: Port "EmployeeIFPort" does not contain any usable operationsBecause of that my method to get the Object from the webservice is not generated.
    This is the wsdl file.
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="EmployeeService" targetNamespace="urn:Foo" xmlns:tns="urn:Foo" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
      <types>
        <schema targetNamespace="urn:Foo" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:Foo" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
          <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
          <complexType name="Employee">
            <sequence>         
              <element name="name" type="xsd:string"/>
              <element name="surname" type="xsd:string"/>
           <element name="age" type="xsd:int"/>
         </sequence>
         </complexType>
        </schema>
       </types>
      <message name="EmployeeIF_getEmployee">
        <part name="String_1" type="xsd:string"/>
        <part name="String_2" type="xsd:string"/>
        <part name="int_3" type="xsd:int"/>
      </message>
      <message name="EmployeeIF_getEmployeeResponse">
        <part name="result" type="tns:Employee"/>
      </message>
      <portType name="EmployeeIF">
        <operation name="getEmployee" parameterOrder="String_1 String_2 int_3">
          <input message="tns:EmployeeIF_getEmployee"/>
          <output message="tns:EmployeeIF_getEmployeeResponse"/>
        </operation>
      </portType>
      <binding name="EmployeeIFBinding" type="tns:EmployeeIF">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="getEmployee">
          <soap:operation soapAction=""/>
          <input>
            <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
          </input>
          <output>
            <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
          </output>
        </operation>
      </binding>
      <service name="EmployeeService">
        <port name="EmployeeIFPort" binding="tns:EmployeeIFBinding">
          <soap:address location="http://localhost:8080/EmployeeService/getEmployee"/>
        </port>
      </service>
    </definitions>However the complex type class Employee is generated properly as well as other stub classes like the interface EmployeeIF, EmployeeIF_getEmployee_RequestStruct and EmployeeIF_getEmployee_ResponseStruct (I mean i think they are generated properly). As I said befor the problem is that the webservice method from the EmployeeIF.getEmployee() is not generated in the EmployeeIF_Stub. Any ideas why? I'm using WTK 2.5
    thx in advance :)

    Here i Followed  Url &sap-user=XXX&sap-password=YYY to the WSDL-URL with XXX and YYY being your username and password and you will be authenticated.
    Later i Struck. Actual my requirement is I have two views i want to take a value from the first view and then return value displayed in the second view. All input/output parameters are the taken from the WSDL file. Can you please Help me.

  • Element tag in the WSDL file.

    I have the following interface for the webservice:
    public interface DocumentProvider extends Remote {
    public void deleteDocument(String documentId) throws
    RemoteException;
    I use the wscompile command to generate the wsdl file and it creates a complex type like this:
    <complexType name="deleteDocument">
    <sequence>
    <element name="String_1" type="string" nillable="true"/>
    </sequence>
    </complextType>
    Is there an option in the wscompile command to change "String_1" to "Document" as it is called in the interface.
    I have run out of idea, pls. help if you know how.
    TIA

    I suggest, if possible, that you switch from JAX-RPC to JAX-WS. JAX-WS is the latest APIs for doing Web Services. JAX-RPC is no longer actively developed. The JAX-WS RI is an open source project on java.net (http://jax-ws.dev.java.net) that is widely used, actively developed, much faster than JAX-RPC. With JAX-WS you have much more control of the mapping Java <-> WSDL. For example, your interface below could be written like the following to achieve what you want.
    @WebService
    public class DocumentProvider {
    public void deleteDocument(@WebParam(name="Document")String documentId) { ... }
    Notice that an interface is no longer needed, you can use a POJO directly as long as you annotate it with @WebService. Also, you no longer need to extend Remote or throw RemoteExceptions. Check it out, I think you will really like it.

  • Where can I find the wsdl file ?

    Hi,
    i want to know the real path of the wsdl files. in other words, after putting the axis directiry in the JBoss server/all/deploy, the axis server generate a wsdl file from a wsdd file. where does it put the wsdl file.
    Please help.
    Thanks.
    Ahmed

    It doesn't create a file on the file system but generates the wsdl on the fly when requested.

  • I am Facing Problem with the WSDl File which is in the local SAP Server

    Hi All,
               Can you please give me solution of my Problem. Here i am working with the WSDl which is create from the SAP Local System. Now i want to take the wsdl file URL from the local server to my system.Here i Struck. can you please help me .
    thanks
    Siva...

    Here i Followed  Url &sap-user=XXX&sap-password=YYY to the WSDL-URL with XXX and YYY being your username and password and you will be authenticated.
    Later i Struck. Actual my requirement is I have two views i want to take a value from the first view and then return value displayed in the second view. All input/output parameters are the taken from the WSDL file. Can you please Help me.

  • Powershell script - how to read a registry hive and store the value in text file and then again read the text file to write the values back in registry

    Hi All,
    powershell script Method required to read a value from registry and then taking the backup of that values in some text file.
    For example the hive is
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\Path
    and under path i need to take back up  of values in some text file and then put some value in the registry after back is taken in text file.
    Also how to read the text file values so that we can again write to registry hive  back from the back up text file.
    Your help is much appreciated.
    Umeed4u

    I think you need to read this first:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/a0def745-4831-4de0-a040-63b63e7be7ae/posting-guidelines?forum=ITCG
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • I have the latest downloadable version of LR5.  It crashed while it was createing 1:1 previews during an import. After a Win7(64) restart, it shows a message that LR needs to quit because it can't read the preview files and it will try to fix it the next

    I have the latest downloadable version of LR5.  It crashed while it was createing 1:1 previews during an import. After a Win7(64) restart, it shows a message that LR needs to quit because it can't read the preview files and it will try to fix it the next time is launches.  I get the same message the next and every subsequent time it launches so I can't launch LR at all now.
    I get that the preview file got corrupted somehow.  Is there some way to fix this problem without building a new catalog?

    Use Windows Explorer to open the folder containing your catalog. You will see a folder with the extension .lrdata. You need to delete that folder and then start Lightroom again. Lightroom will generate a new previews folder.

Maybe you are looking for

  • No MobileMe Calendars

    Suddenly, regardless of which MobileMe account in Preferences/Mail,Contacts,Calendar I choose so sync to my iPod Touch the Calendars to do not appear. Addresses and Mail seem to work fine. I am using iCal beta, but found that my Exchange account cale

  • Which linux and install question

    We tried to lay down OEL using Enterprise Linux 4 Update 5 for x86 . From edelivery we see a few options - new license and media pack. Which option do we select? We have the 99$ license. Also there are options for Enterprise Linux 4 Update 5 for x86

  • Readonly and form submission

    Hi, I have a real problem with form submissions and readonly text fields. The problem occurs when I have a readonly text field and a field which is requirted to have a value. An example: <f:view>    <h:form>       <h:inputText          id="test"     

  • Driver For Belkin

    Can anybody tell where I can get a driver for a Belkin Bluetooth adapter, I have looked on the apple and belkin sites and found nothing. ( F8T012 Driver BTW 4.0.1.2401 version 2 mac) CC.

  • Help!! trying to open CR2 raw files in my cs5 program

    why can i not download cry raw files in my cs5 program