Convert FM into web services

Hi,
  I have a function module and I want to convert it into web services. Is it required that the FM must be RFC enabled?
Regards ,
Godadhar.

yes.
Please check link:
http://help.sap.com/saphelp_nw04/helpdata/en/e9/ae1b9a5d2cef4ea4b579f19d902871/frameset.htm
"To create a Web service from a function group or function module, you can call the Creation Wizard from the Function Builder (SE37). Choose the function module, display it, then choose Utilities --> More Utilities --> Create Web Service --> From the Function Moduleor From the Function Group.
Note that the function group must contain at least one RFC-enabled function module."

Similar Messages

  • Migrating BAPI & RFC function modules into web services

    What is the advantage of migrating BAPI & RFC function modules into web services?

    Hi.
    That's a very good question. Why did you ask it, are you considering doing so?
    I wouldn't think there would be any performance advantages using WebServices.
    You could make your BAPI's available for other systems than Web Dynpro or SAP systems by turning them into WebServices.
    That could be an issue when you want to use different integration engines perhaps.
    A WebService might also be better for dealing with large number of requests I guess.
    When dealing with XML you can also use the advantage of XSLT for validating your data.
    The main advantages would still be the availability of your service for non-SAP systems.
    /Mikael

  • "Cannot log into Web service" error when tying to use Wifi to connect to Google Drive or Facebook

    We have a relatively new Canon Powershot s120.  Up until a few days ago, it worked just fine to connect to the Wifi and upload pictures to both Google Drive and Facebook.  Now, every time I try to connect, I get a message "Cannot log into Web service"
    I have already tried removing Google Drive from the Camera and re-adding it.  I went into the Canon Image Gateway website and disconnected and then reconnected the service.  That didn't do anything.
    Would really appreciate any tips anyone has.
    Thanks!

    Problem sorted - there is a new set of terms and conditions which came out on the 6th August.
    You have to log in under your current user name & password and agree to them and it works again. I spent a frustrating hour doiung this until I found out that this had happened!

  • Problem converting an SLSB into web service

    Hi,
    I am trying to convert an existing Stateless session bean as a web service. My requirement is to have this SLSB as a web service and also be accesible as an EJB to a jsp. So I have defined a remote infertace and home interface. As we know the remote interface extends EJBObject, I need to put the j2ee.jar in the classpath.
    While using wscompile to generate WSDL file, I have given the classpath as follows
    wscompile -define -mapping mapping.xml -d wsdl -classpath <application classpath>;<j2ee.jar path> config-interface.xml
    What I found out is that the wscompile command is not taking in the second argument <j2ee.jar path>. So it errors
    out with a message saying CLassNotFoundException: javax.ejb.EJBObject
    Is it a bug with wscompile, or am I doinf anything wrong here.
    please advise.
    thanx

    Thanks try67.
    Is it alright if download : Adobe Acrobat Professional 9.0 from http://adobe-acrobat-professional.en.softonic.com/download#pathbar.?
    It is 327 MB.
    Thanks again.
    Sam

  • Why so much code getting data out of DB & into web services

    I am new to Java and I am experimenting with web services.
    I am trying to get data out of a database and into a web service
    This is the code I had to build just to get a little bit of data out of a DB and into a web service.
    // Open a database connection and statement.
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance();
    Connection dbConn = DriverManager.getConnection("jdbc:db2:sample","myuser","mypass");
    Statement statement = dbConn.createStatement();
    // Build the message.
    SOAPMessageContext ctx = (SOAPMessageContext) messageContext;
    try {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage m = messageFactory.createMessage();
    SOAPEnvelope env = m.getSOAPPart().getEnvelope();
    SOAPBody body = env.getBody();
    SOAPElement elem =
    body.addBodyElement(env.createName("ns1:getEmployees"));
    elem.addNamespaceDeclaration("ns1",
    "http://www.abc.com/SampleApplication/Employee.wsdl");
    elem.addNamespaceDeclaration("ns2",
    "http://www.abc.com/SampleApplication/Employee.xsd");
    SOAPElement elem1 = new SOAPElementImpl("Response", null, null);
    // Execute the query.
    String sql = "SELECT EMPNO, FIRSTNME, MIDINIT, LASTNAME, HIREDATE FROM EMPLOYEE";
    ResultSet result = statement.executeQuery(sql);
    Isn't there a way with less code to get data out and stick into a web service?

    I left the part of the code out that is bugging me - I was talking about all of the code to get the data into XML..
    here's the whole code..
    // Open a database connection and statement.
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance();
    Connection dbConn = DriverManager.getConnection("jdbc:db2:sample","myuser","mypass");
    Statement statement = dbConn.createStatement();
    // Build the message.
    SOAPMessageContext ctx = (SOAPMessageContext) messageContext;
    try {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage m = messageFactory.createMessage();
    SOAPEnvelope env = m.getSOAPPart().getEnvelope();
    SOAPBody body = env.getBody();
    SOAPElement elem =
    body.addBodyElement(env.createName("ns1:getEmployees"));
    elem.addNamespaceDeclaration("ns1",
    "http://www.abc.com/SampleApplication/Employee.wsdl");
    elem.addNamespaceDeclaration("ns2",
    "http://www.abc.com/SampleApplication/Employee.xsd");
    SOAPElement elem1 = new SOAPElementImpl("Response", null, null);
    // Execute the query.
    String sql = "SELECT EMPNO, FIRSTNME, MIDINIT, LASTNAME, HIREDATE FROM EMPLOYEE";
    ResultSet result = statement.executeQuery(sql);
    SOAPElement employee = new SOAPElementImpl("Employees", "ns2", "http://www.abc.com/SampleApplication/Employee.xsd");
    employee.addChildElement("ns2:EMPNO").addTextNode(result.getString("EMPNO"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("FIRSTNME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("MIDINIT"));
    employee.addChildElement("ns2:LASTNAME").addTextNode(result.getString("LASTNAME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("HIREDATE"));
    elem1.addChildElement(employee);
    elem.addChildElement(elem1);
    ctx.setMessage(m);
    dbConn.close();
    } catch (Throwable e) {
    weblogic.utils.Debug.say("(hbs):e " + e);
    e.printStackTrace(System.out);
    putting the data in the node seems excessive to me.
    thanks
    AP

  • Error passing bool/categorical parameter into web service

    I am working on publishing a web service to produce a prediction based on a model.  One of my parameters is whether or not a given day is a holiday, which was a boolean (TRUE / FALSE) that was calculated during an R script.  When I preview the
    output of my input data, I see lowercase "true" and "false".  When I try to pass this into the web service, I get the following error.
    InputParseError: Parsing of input vector failed. Verify the input vector has the correct number of columns and data types. Additional details: Value "bool" is not defined in enum. Line 1, position 2167.., Error code: BadArgument, Http status code:
    400, Request id: 338eb834-b195-4a09-b6b2-47a0b91e80f1, Timestamp: Fri, 23 Jan 2015 20:51:09 GMT
    I have tried passing in true, 1, TRUE.  
    Does anyone know how I can successfully pass in a value for this parameter to get the service to execute?
    Thanks,
    Jeff

    Hello Jeff,
    This is the error observed in our log:
    Code: InputParseError, Target: ClientID,Location,Procedure,Month,DayOfWeek,Holiday, Message: Parsing of
    input vector failed. Verify the input vector has the correct number of columns and data types. Additional details: Value "bool" is not defined in enum
    You have tried to pass "true"/"TRUE"/1 as input value for "Holiday" right? Do you mind sending us more information to help troubleshoot? I'd like to request 1) your sample R code  2) your sample input. Could you please
    send to my email address?
    Thanks
    Jing

  • Connect to Bex query after logging into Web service

    Hello experts,
    After logging into the web service, I see connections for all HANA and BW infoProviders.
    If I click HANA OLAP connection, I see the "next" button. If I click connections to BW InfoProviders, the "Next" button is grayed out, I only have "OK" to click which takes me to the infoProvider.
    I know if I choose "Local System", I can log into BW and find BEx queries.
    Is this by design? Can't we get list of Bex queries under the connection we highlight somehow?
    Thanks.

    Hi Terry - I am not really following this workflow (could be just me)
    Did someone create OLAP connections to BW in the CMC?  Could you use the camera icon to share your screen shots?
    Tammy

  • "Unable to log URL" error when importing WSDL into Web Service connection

    Hello Experts
    I'm using Xcelsius Engage and I'd like to use Web Service connection.
    I've developed my own Web service (that is using 2 other web service inside it).
    and now I'm trying to import it into the Xcelsius (connection --> Web service connection).
    And I get the follwoing error:
    "Unable to log URL"
    When I browse to my wsdl file in IE the file is loaded with no problem.
    When trying to import other URLs it also works fine (for example: http://www.xignite.com/xFinancials.asmx?wsdl)
    Any idea?
    Thanks,
    Miki

    Hi Matt
    Thanks a lot!!!
    Indeed the solution was in the follwoing thread:
    VB.net code to create XML
    Parsing the query result fixed the problem.
    For others who might have the same problem:
    Here's a working web service (C# code, for vb code follow the link to the thread above):
    public Service () {
        public struct QueryResult
          public string SlpName;
          public string Commission;
        [WebMethod]
      public QueryResult[] RunQuery()
          // Open Connection - Query Data from DB table - Close connection
          SqlConnection connection = new SqlConnection("Data Source=(local);Integrated Security=SSPI;Initial Catalog=SBODemoUS");
          SqlDataAdapter adapter = new SqlDataAdapter(
            "SELECT SlpName, Commission FROM OSLP", connection);
          DataTable DT_QryResult = new DataTable();
          adapter.Fill(DT_QryResult);
          connection.Close();
          // Parse data to be forward to Xcelsius
          QueryResult[] QryRes = null;
          QryRes = new QueryResult[DT_QryResult.Rows.Count];
          int i=0;
          foreach (DataRow row in DT_QryResult.Rows)
            QryRes<i>.SlpName = row["SlpName"].ToString();
            QryRes<i>.Commission = row["commission"].ToString();
            i++;
          return QryRes;
    Best regards,
    Miki

  • Importing test data into "Web Service Navigator Test Scenario" fails

    Hello,
    I'm using NW 7.2 Java and have the following problem: when I try to import a XML file containing test data as scenario in the web service navigator and when I execute the scenario or just click on the details of on entry, all input parameters are gone except the first one!
    The XML file was created by the web service navigator itself. I added a few sample web service calls using the web service test function and exported the resulting scenario afterwards. The XML file looks like this (some parameters blackened):
    <?xml version="1.0" encoding="UTF-8"?>
    <rn1:services WSILURL='' xmlns:rn0='java:sap/standard' xmlns:rn1='http://www.sap.com/webas/2007/02/ws/wsnavigator/' xmlns:rn3='http://schemas.xmlsoap.org/soap/encoding/' xmlns:rn2='http://www.w3.org/2001/XMLSchema'>
      <rn1:service name='OrderService' namespace='http://test.sap.com/Scenario/OrderService/' WSDLURL='host:port/sapws/scenario-processes-models_OrderService/OrderService_SAP_DEFAULT_PROFILE_Service/HTTPAuthOverHTTP_1?wsdl&amp;mode=ws_policy'>
        <rn1:operation name='receiveOrder'>
          <rn1:input>
            <Customer>Customer1</Customer>
            <Product>Product1</Product>
            <Quantity>100</Quantity>
            <DeliveryDate>2010-08-19T14:06:24.691+02:00</DeliveryDate>
            <BlockedOrder>false</BlockedOrder>
          </rn1:input>
          <rn1:output></rn1:output>
        </rn1:operation>
        <rn1:operation name='receiveOrder'>
          <rn1:input>
            <Customer>Customer2</Customer>
            <Product>Product2</Product>
            <Quantity>200</Quantity>
            <DeliveryDate>2010-08-19T14:06:24.691+02:00</DeliveryDate>
            <BlockedOrder>false</BlockedOrder>
          </rn1:input>
          <rn1:output></rn1:output>
        </rn1:operation>
      </rn1:service>
    </rn1:services>
    Thanks in advance for any comments on that issue!!!

    Hi
    Hi,
    You can use XML editors like XMLSPY to send the SOAP request or SOAP client tool provided by SAP for this purpose.
    SOAP client- https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/downloads/tools/sap%20nw%20application%20server/sap%20soap%20client%20tool%20download.abst
    Various methods to Testing SOAP
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7ccd3e4e-0501-0010-95ae-afa58cb46b75
    http://www.soapui.org/gettingstarted/your_first_soapUI_project.html
    Hope it helps,
    Regards,
    Abhishek

  • How To convert BizTalk 2009 Web Services(Receive Locations) to 2013 WebServices ??

    Hi ,
    We are actually going to migrate from  BizTalk 2009 to BizTalk 2013 . As a part of this i want to convert all current BizTalk Artifacts to get compatibly with BizTalk 2013. I was able to convert schemas , maps , Orchestration etc to .net 4.5  directly
    via Visual Studio 2012 Conversion Wizard. But for BizTalk Rcv Location WebServices (.asmx and .svc) , i was not able to do the same. Could anyone give some insight on how to migrate the Rcv Location during the migration from BizTalk 2009 to BizTalk 2013. 
    Abhijith

    well i guess you need not to re expose the schema, i am not pretty sure though. Because your code relies on .net 2.0 and you are moving it to higher version 4.5, it should work.
    So only changes in apppool settings and if required, changes on web.config file for runtime version property will do.
    well i am not pretty sure though, just try and trouble shoot it.
    Please mark the post as answer if this answers your question. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Calling a Web Service from J2EE application running on WebSphere

    This may have been answered before, but could not find using multiple searches that I did on this forum.
    We are just in the process of using the newly installed SAP WAS 6.40 with J2EE engine and I understand from SAP's documentation that all BAPIs and remotely callable RFCs should be invokable via a Web Service call from remote applications. Couple of questions on this:
    1. Is there a documentaion that describes steps to enable BAPIs or RFCs as web services?
    2. Is there a documentation that describes steps to invoke a web service that in turn uses BAPI or RFC (code sample).
    We are J2EE literates but not familiar with SAP WAS, and not sure if calling/invoking the WS would be similar to calling any other WS from other WS Containers.
    Appreciate a response or suggestions.

    Hi Bharat,
    see this weblog , where it gives the steps to create a RFC and convert it into web service.
    /people/thomas.jung3/blog/2005/01/05/develop-a-web-service-that-sends-an-email--in-abap
    Invoking WS is similar to calling any other WS from other containers. Either you have to give the WSDL file location or the external UDDI Server address in WebService creation wizard.
    The WebService exapmles is also avaliable in help.sap.com

  • Desktop Intelligence formula to convert into Web Intelligence formula

    Hi Team,
    I have converted Desk I Report into Web I report but below formula is not working in Web Intelligence report.
    Desk I formula
    ="Selected Period: " + UserResponse(DataProvider([Order Number]) [EIH Query]"Enter Date mm/dd/yyyy  (From)?") + " To: " + UserResponse(DataProvider([Order Number]) [EIH Query]"Enter Date mm/dd/yyyy (To)?")
    converted formula into Web Intelligence but not working. It is showing "# Syntax"
    ="Selected Period: " + UserResponse(DataProvider(<Order Number>) ,"Enter Date mm/dd/yyyy  (From)?") + " To: " + UserResponse(DataProvider(<Order Number>) ,"Enter Date mm/dd/yyyy (To)?")

    Hi,
    Use the following syntax:
    ="Selected Period: " + UserResponse([EIH Query];"Enter Date mm/dd/yyyy (From)?") + " To: " + UserResponse([EIH Query];"Enter Date mm/dd/yyyy (To)?")
    Note: Prompt string should be exactly same and the query name to be used in []
    Regards,
    Rohit

  • Asynchronous web service call doesn't work

    Hi,
    I'm trying to convert a synchronous web service call into an asynchronous call. (Folder-level Javascript, Acrobat Professional 8.1, Windows XP).
    Everything works fine when I call Soap.Request as a synchronous call. It calls the web service and gets the expected result. However, when I try to convert Soap.Request into an asynchronous call by adding the OAsync property, as described on pp. 198-199 of "Developing Acrobat Applications Using JavaScript," NONE of the various OAsync functions (i.e. result, response, wait) are ever called. IOW, the Javascript code continues executing after the Soap.Request call and doesn't wait for my web service call to return. Indeed, the web service method on the server doesn't even BEGIN to execute by the time the Javascript code runs to completion. (I can confirm this by watching my ASP.Net code execute in the Visual Studio debugger. In fact, the Javascript code runs to completion even before the Global.asax Session_Start code begins to execute, much less the web service method itself.) So, the problem is not with the web service, which works fine when Soap.Request is called as a synchronous method.
    To reiterate, my Javascript code is identical to the code on pp. 198-199 of "Developing Acrobat Applications Using JavaScript." In troubleshooting this, I've tried calling the OAsync functions (mySync.wait(), mySync.result(), mySync.response()) after calling the Soap.Request, but nothing works.
    Is there something else that I must add to my Javascript code (e.g. an additional Soap.Request property, or something after calling Soap.Request) to force the Javascript to wait until the web service method returns?
    Thanks,
    Bill

    Hi Lukasz,
    you can also define namespace the later in the operation GetOpenOrders itself, e.g.:
    <tem:GetOpenOrders xmlns:tem=u201Dhttp://tempuri.org/u201D>
    It does not need to be part of the Envelope element.
    Best regards
    Bastian

  • Display image from binary code in web service(Sharepoint portal)

    Hi All,
    We have converted a BAPI into web service.We are able to access it and fetch the data in sharepoint portal. The content which gets published in the sharepoint needs one image also to get displayed.The problem is we have the binary format but we are not able to decode that and display that as image in sharepoint portal.
    We are using VS2003 to make the portal component and then deploy it in sharepoint portal.We are stuck how to decode the binary format and display the image.
    Any Help will be appreicated.
    Regards
    Sachin

    Hi All,
    We have converted a BAPI into web service.We are able to access it and fetch the data in sharepoint portal. The content which gets published in the sharepoint needs one image also to get displayed.The problem is we have the binary format but we are not able to decode that and display that as image in sharepoint portal.
    We are using VS2003 to make the portal component and then deploy it in sharepoint portal.We are stuck how to decode the binary format and display the image.
    Any Help will be appreicated.
    Regards
    Sachin

  • AutoVue Web Services - DMS Args

    I am attempting to use AutoVue web services.
    I have this installed and setup to the point I have a java test client that consumes the ping method fine and returns what is expected.
    When I try to perform the convert functionality the web service hits our java servlet when trying to get at a document in Livelink DMS but the configured dms arguments from the third_party_int.properties are not being sent through and I cannot see why?
    I presume the fact it actually hits our servlet means it can see the DMS option in the config that has the URL in the .properties file but the rest don't seem to be picked up and sent?
    In the java debugger the dms args object is null so I am hoping I have missed something ... Any suggestions or help would be appreciated.
    Nick

    Thanks Reza.
    I tried what you suggested and I still do not get the missing property in the XML.
    After restoring the vuelinkLL.properties file I see the following in the log file if this helps:
    2011-04-18 10:35:08,218 INFO [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - creating JVueClientPorxy
    2011-04-18 10:35:08,218 INFO [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Building JVue Client Pool. Size:200
    2011-04-18 10:37:19,671 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Start of convertGetData().......
    2011-04-18 10:37:19,671 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - convertGetData() = vuelinkLL://http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000
    2011-04-18 10:37:19,671 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - using convert()
    2011-04-18 10:37:19,890 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - initializing vuebean logger...
    2011-04-18 10:37:19,890 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - vuebeanlogger created.
    2011-04-18 10:37:19,890 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - forntlogger verbosity:DEBUG
    2011-04-18 10:37:19,890 INFO JVue Launcher [?:?] - JVM vendor : Sun Microsystems Inc.
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - JVM version: 160_21
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - OS name : Windows 2003
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - OS version : 5.2
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - Max memory : 506816 K
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - JVue Build: 7645 (2010-12-07)
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - Hosts: pims1:5099
    2011-04-18 10:37:19,906 DEBUG JVue Launcher [?:?] - Starting 5 threads in group Root
    2011-04-18 10:37:19,906 INFO JVue Launcher [?:?] - Trying host: pims1:5099
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - Job Job[Channel request dispatcher,5,1] is pushed into the queue
    2011-04-18 10:37:19,921 DEBUG Root W-0 [?:?] - Got job: Job[Channel request dispatcher,5,1]
    2011-04-18 10:37:19,921 DEBUG Root W-0 [?:?] - Prepare job: Job[Channel request dispatcher,5,1]
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - >> Exec(init)
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - << Exec: result = 2
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - exec time: 0, Total : 0
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - >> Exec(getHost)
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - << Exec: result = pims1.corp.test.com:5099
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - exec time: 0, Total : 0
    2011-04-18 10:37:19,921 DEBUG JVue Launcher [?:?] - Connection server: pims1.corp.test.com:5099
    2011-04-18 10:37:19,937 DEBUG JVue Launcher [?:?] - >> Exec(getPK)
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - << Exec: result = [B@1a4e7e0, size: 426
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - exec time: 16, Total : 16
    2011-04-18 10:37:19,953 INFO JVue Launcher [?:?] - Using host: pims1:5099
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - cookie provider cookies =
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - filtered cookies =
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - >> Exec(sessionOpen)
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - << Exec: result = [Ljava.lang.Object;@8731f3, size: 2
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - exec time: 0, Total : 16
    2011-04-18 10:37:19,953 DEBUG JVue Launcher [?:?] - >> BatchExec:
    sessionReadProfile
    sessionRevise
    2011-04-18 10:37:20,015 DEBUG JVue Launcher [?:?] - << BatchExec results:
    [Lcom.cimmetry.core.WIN_INIENTRY;@dddee8, size: 62
      [[B@556e82, size: 4
    2011-04-18 10:37:20,015 DEBUG JVue Launcher [?:?] - Total exec time: 78
    2011-04-18 10:37:20,203 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:20,515 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:20,828 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:21,140 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:21,453 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:21,515 INFO JVue Launcher [?:?] - Using HeavyWeight client area
    2011-04-18 10:37:21,515 DEBUG AWT-EventQueue-0 [?:?] - Changing mode to: VIEW
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - >> Exec(clbRegisterUser)
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - << Exec: result = User Administrator_57976 id=57976
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - exec time: 0, Total : 78
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - Starting 3 threads in group Collaboration
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - Job Job[Remote Event Dispatcher,5,1] is pushed into the queue
    2011-04-18 10:37:21,515 DEBUG JVue Launcher [?:?] - Job Job[File open,5,1] is pushed into the queue
    2011-04-18 10:37:21,515 DEBUG Root W-1 [?:?] - Got job: Job[File open,5,1]
    2011-04-18 10:37:21,515 DEBUG Root W-1 [?:?] - Prepare job: Job[File open,5,1]
    2011-04-18 10:37:21,515 DEBUG Collaboration W-1 [?:?] - Got job: Job[Remote Event Dispatcher,5,1]
    2011-04-18 10:37:21,531 DEBUG Collaboration W-1 [?:?] - Prepare job: Job[Remote Event Dispatcher,5,1]
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - slept 300 ms for VueBean becomes available
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - activateObject called
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - validateObject called
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - updateJVueInstance starts...
    2011-04-18 10:37:21,968 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Job Job[Script Manager,5,1] is pushed into the queue
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - vb.getDMS(): null
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - *** Start DMS setFile......
    2011-04-18 10:37:21,968 DEBUG Root W-2 [?:?] - Got job: Job[Script Manager,5,1]
    2011-04-18 10:37:21,968 DEBUG Root W-2 [?:?] - Prepare job: Job[Script Manager,5,1]
    2011-04-18 10:37:21,968 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Creating new document for http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000
    2011-04-18 10:37:21,984 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(fileCreate)
    2011-04-18 10:37:21,984 DEBUG Script Manager[Root W-2] [?:?] - setDMS(http://pims1:8080/CaptureVueforLivelink/servlet/com.cadcapture.vuelink.livelink.LivelinkVuelink)
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = DocID: 12, URL: http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000, DMS Info: <vuelink url="http://pims1:8080/CaptureVueforLivelink/servlet/com.cadcapture.vuelink.livelink.LivelinkVuelink"><DMSArgs></DMSArgs></vuelink>, DMS ID: null, Name: null Display Name: null, Type: 0, Parent: [null]
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 16, Total : 94
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - cookie provider cookies =
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - filtered cookies =
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> ExecAsync(fileOpen)
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << ExecAsync: result = ChannelResponse channel: 0, request: 1, result: null, set: false
    2011-04-18 10:37:22,000 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(getPartialResults)
    2011-04-18 10:37:22,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = null
    2011-04-18 10:37:22,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 15, Total : 109
    2011-04-18 10:37:22,359 DEBUG File open[Root W-1] [?:?] - >> Exec(clbJoinSession)
    2011-04-18 10:37:22,359 DEBUG File open[Root W-1] [?:?] - << Exec: result = null
    2011-04-18 10:37:22,359 DEBUG File open[Root W-1] [?:?] - exec time: 0, Total : 109
    2011-04-18 10:37:22,359 DEBUG File open[Root W-1] [?:?] - Completed job: Job[File open,5,2]
    2011-04-18 10:37:22,515 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(getPartialResults)
    2011-04-18 10:37:22,531 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = com.cimmetry.core.TaskResults@17fe679
    2011-04-18 10:37:22,531 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 16, Total : 125
    2011-04-18 10:37:23,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(getPartialResults)
    2011-04-18 10:37:23,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = null
    2011-04-18 10:37:23,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 0, Total : 125
    2011-04-18 10:37:23,015 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(documentInfo)
    2011-04-18 10:37:23,031 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = [ DocumentInfo  name = http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000, size = 7524, type = 5, dim  = PAN_CtlDimensions[ width = 0.0, height = 0.0, depth 0.0 ], coords = [(0.0, 0.0, 0.0); (0.0, 0.0, 0.0)], ins = Insertion Info - default page: 0, offset: (0.0, 0.0, 0.0), scale: (0.0, 0.0, 0.0), rotation: 0.0, flip: 0, DPI: (0.0, 0.0, 0.0), units: 4]
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 16, Total : 141
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Starting 2 threads in group Document
    2011-04-18 10:37:23,046 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Created new document for http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - loadPage(1)
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> ExecAsync(pageInfo)
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << ExecAsync: result = ChannelResponse channel: 0, request: 3, result: null, set: false
    2011-04-18 10:37:23,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(getPartialResults)
    2011-04-18 10:37:23,062 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = com.cimmetry.core.TaskResults@70a698
    2011-04-18 10:37:23,062 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 16, Total : 157
    2011-04-18 10:37:23,546 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(getPartialResults)
    2011-04-18 10:37:23,546 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = null
    2011-04-18 10:37:23,546 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 0, Total : 157
    2011-04-18 10:37:23,546 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(documentInfo)
    2011-04-18 10:37:23,562 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = [ DocumentInfo  name = http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000, size = 7524, type = 5, dim  = PAN_CtlDimensions[ width = 0.0, height = 0.0, depth 0.0 ], coords = [(0.0, 0.0, 0.0); (0.0, 0.0, 0.0)], ins = Insertion Info - default page: 0, offset: (0.0, 0.0, 0.0), scale: (0.0, 0.0, 0.0), rotation: 0.0, flip: 0, DPI: (0.0, 0.0, 0.0), units: 4]
    2011-04-18 10:37:23,562 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 0, Total : 157
    2011-04-18 10:37:23,562 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - File size: 7524 bytes
    2011-04-18 10:37:23,562 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Rendering format: TILED(PNG)
    2011-04-18 10:37:23,578 ERROR [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Error: Wrong page size ext [(0.0, 0.0, 0.0); (0.0, 0.0, 0.0)], using page size instead [(0.0, 0.0, 0.0); (0.0, 0.0, 0.0)]
    2011-04-18 10:37:23,578 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - SetFile() done in 1610 ms.
    2011-04-18 10:37:23,578 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - *** vb file (DMS)...http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000
    2011-04-18 10:37:23,578 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Starting conversion ...
    2011-04-18 10:37:23,578 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - vueBean file name:http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000
    2011-04-18 10:37:23,578 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> BatchExec:
    fileGetResourceInfoState
    fileGetBookmarks
    2011-04-18 10:37:23,578 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << BatchExec results:
    [Lcom.cimmetry.core.PAN_RESOURCEINFO;@8a0152, size: 0
      null
    2011-04-18 10:37:23,578 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Total exec time: 157
    2011-04-18 10:37:23,578 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> Exec(fileMarkupGetList)
    2011-04-18 10:37:23,593 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << Exec: result = [ Property : CSI_Markups, null ..., child:
    [0]= [ Property : GUI, null ..., children:
    [0]= [ Property : Display, null ..., child:
    [0]= [ Property : CSI_DocName, 12, no children ] ]
    [1]= [ Property : Edit, null ..., no children ] ] ]
    2011-04-18 10:37:23,593 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - exec time: 15, Total : 172
    2011-04-18 10:37:23,593 ERROR [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - convert()failed.Invalid page number (1). it should be between 1 and (-1)
    java.lang.IllegalArgumentException: Invalid page number (1). it should be between 1 and (-1)
         at com.oracle.autovue.services.JVueClientProxy.convert(Unknown Source)
         at com.oracle.autovue.services.JVueClientProxy.convertGetData(Unknown Source)
         at com.oracle.autovue.services.VueBeanWS.convertGetData(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:92)
         at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:74)
         at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:151)
         at com.sun.xml.ws.server.sei.EndpointMethodHandlerImpl.invoke(EndpointMethodHandlerImpl.java:268)
         at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:100)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
         at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:403)
         at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:532)
         at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:253)
         at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
         at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:171)
         at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:708)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:103)
         at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:311)
         at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:336)
         at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:98)
         at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3717)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    2011-04-18 10:37:23,593 WARN [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - convert option:ConvertOption[|Format:PDF|ScaleType:TYPE_SCALE|ScaleFactor:100|Width:0.0|Height:0.0|PageType:RANGE|FromPage:1|ToPage:1|ColorDepth:-1|FileName:|StepsPerInch:72.0|CameraView:NONE]
    2011-04-18 10:37:24,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Closing file DocID: 12, URL: http://pims1:80/livelink/livelink.exe?func=ll&objId=55686&objAction=ItemsInfo&vernum=1&viewType=1&parentID=55461&EnterpriseID=2000, DMS Info: null, DMS ID: null, Name: null Display Name: null, Type: 0, Parent: [null]
    2011-04-18 10:37:24,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - >> ExecAsync(fileClose)
    2011-04-18 10:37:24,046 DEBUG [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - << ExecAsync: result = ChannelResponse channel: 0, request: 7, result: null, set: false
    2011-04-18 10:37:24,046 DEBUG Document W-0 [?:?] - Thread Document W-0 has been stopped
    2011-04-18 10:37:24,046 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - validateObject called
    2011-04-18 10:37:24,046 INFO [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - passivateObject called
    2011-04-18 10:37:24,046 ERROR [ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)' [?:?] - Caught: javax.xml.ws.WebServiceException: convert failed:Invalid page number (1). it should be between 1 and (-1) ConvertOption[|Format:PDF|ScaleType:TYPE_SCALE|ScaleFactor:100|Width:0.0|Height:0.0|PageType:RANGE|FromPage:1|ToPage:1|ColorDepth:-1|FileName:|StepsPerInch:72.0|CameraView:NONE]
    javax.xml.ws.WebServiceException: convert failed:Invalid page number (1). it should be between 1 and (-1) ConvertOption[|Format:PDF|ScaleType:TYPE_SCALE|ScaleFactor:100|Width:0.0|Height:0.0|PageType:RANGE|FromPage:1|ToPage:1|ColorDepth:-1|FileName:|StepsPerInch:72.0|CameraView:NONE]
         at com.oracle.autovue.services.JVueClientProxy.convert(Unknown Source)
         at com.oracle.autovue.services.JVueClientProxy.convertGetData(Unknown Source)
         at com.oracle.autovue.services.VueBeanWS.convertGetData(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:92)
         at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:74)
         at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:151)
         at com.sun.xml.ws.server.sei.EndpointMethodHandlerImpl.invoke(EndpointMethodHandlerImpl.java:268)
         at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:100)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
         at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:403)
         at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:532)
         at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:253)
         at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
         at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:171)
         at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:708)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:103)
         at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:311)
         at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:336)
         at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:98)
         at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3717)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.IllegalArgumentException: Invalid page number (1). it should be between 1 and (-1)
         ... 43 more
    2011-04-18 10:37:24,046 DEBUG Document W-1 [?:?] - Thread Document W-1 has been stopped

Maybe you are looking for

  • Quta balance as on date

    Hi Experts, I am writing a PCR to retrieve quota balance as on last day of the year (For example 31.12.2010). I have used HRS=FR01C where 01 is leave quota type for PL.When time evaluation runs for 31.12.2010, it gives me PL balance as on that date b

  • Creation of material in material type "hers"

    Can anybody please tell me in detail how to create a material in material type "hers"

  • SWF created in CS4 Flash does not play from web server

    I published a Flash movie in CS4, which includes the following ActionScript 3.0 code to allow people to click the movie to open a new web page; but it will not play from the web server...however, it plays just fine from my local hard drive in Firefox

  • How do i get my message to not be in the middle..

    So i don't know what i did but my skype message are just in the middle i can't move it back... i redownload skype and look in settings how do i fix this?  Mod Edit: Edited post to comply with the Skype Community Guidelines and Skype Etiquette

  • Quicktime RTSP multiple video tracks

    I use QT to view my camera using RTSP/RTP H.264 protocols. After DESCRIBE request, QT sent two SETUPs to confirm two video tracks and assign RTP port numbers, but it failed to display two tracks separately. In the movie property, I saw only one video