SSRS Webservice - Conversion Error on Method CreateSubscription - Powershell

I am migrating subscriptions. I have two reporting servers. I am calling GetSubscriptionProperties on the source server and populating variables to pass into the method 'CreateSubscription' from the destination server. I am getting an error when I try to
pass in the variables from the GetSubscriptionProperties output into the CreateSubscription: 
"Cannot convert the 
"Microsoft.PowerShell.Commands.NewWebserviceProxy.AutogeneratedTypes.WebServiceProxy1tserver_reportservice2005_asmx.ExtensionSettings" value of type 
"Microsoft.PowerShell.Commands.NewWebserviceProxy.AutogeneratedTypes.WebServiceProxy1tserver_reportservice2005_asmx.ExtensionSettings" to type 
"Microsoft.PowerShell.Commands.NewWebserviceProxy.AutogeneratedTypes.WebServiceProxy3tserver_reportservice2005_asmx.ExtensionSettings"."
I had to remove the -namespace from my proxy definition and define the types manually for the source objects to work with GetSubscriptionProperites, but am not sure what to do for the CreateSubscription issue.
-----------------------------CODE BELOW-----------------------
$ReportName = "Report"
#SET SOURCE WEBSERVICE CONNECTION
$ReportServerUriSource = "http://source/reportserver/reportservice2005.asmx";
$global:ssrs = New-WebServiceProxy -Uri $ReportServerUriSource -UseDefaultCredential;
$type = $ssrs.GetType().Namespace
#SET DESTINATION WEBSERVICE CONNECTION
$ReportServerUri = "http://destination/reportserver/reportservice2005.asmx";
$global:Proxy = New-WebServiceProxy -Uri $ReportServerUri -UseDefaultCredential
$type2 = $proxy.GetType().Namespace
#Define Object Types for Subscription property call
$ExtensionSettingsDataType = ($type + '.ExtensionSettings')
$ActiveStateDataType = ($type + '.ActiveState')
$ParmValueDataType = ($type + '.ParameterValue')
$ExtensionSettingsObj = New-Object ($ExtensionSettingsDataType)
$ActiveStateObj = New-Object ($ActiveStateDataType)
$ParmValueObj = New-Object ($ParmValueDataType)
$Description = $null
$Status = $null
$EventType = $null
$MatchData = $null
$Reports = ($ssrs.ListChildren("/", $true) | WHERE-OBJECT {$_.Type -eq "Report"});
$ReportsD = ($proxy.ListChildren("/", $true) | WHERE-OBJECT {$_.Type -eq "Report"});
FOREACH ($Report IN $Reports | WHERE-OBJECT {$_.Name -eq $ReportName})
$Subscriptions = $ssrs.ListSubscriptions($Report.Path, $Report.Owner) | WHERE-OBJECT {$_.LastExecuted -gt [datetime]::parse("01/01/2014")}
$DestinationPath = ($ReportsD | WHERE-OBJECT {$_.Name -eq $ReportName}).Path
FOREACH ($Sub IN $Subscriptions)
IF($Sub.IsDataDriven.ToString() -eq "False")
#GET SUBSCRIPTION PROPERTIES FROM SOURCE
$SubscriptionProperties = $SSRS.GetSubscriptionProperties($Sub.SubscriptionID.ToString(),` [ref]$ExtensionSettingsObj, ` [ref]$description, ` [ref]$ActiveStateObj, ` [ref]$status, ` [ref]$eventType, ` [ref]$matchdata, ` [ref]$ParmValueObj)
#CREATE SUBSCRIPTION IN DESTINATION
$proxy.CreateSubscription($DestinationPath, $ExtensionSettingsObj, $description, $eventType, $matchdata, $ParmValueObj)
ELSE

You would have to declare a new object using the destination type...  I quickly threw something together.  Not sure if it would work... see below.  Part of me wonders if you need to go through all the work anyway.  The method is calling
for values, not an object, per se.  Had you tried passing in the values of the object in question (e.g., $ParmValueObj.Value ... or ... $ExtensionSettingsObj.Value)?
###### Connect to web services
$ssrsProxy = New-WebServiceProxy -Uri $webServiceUrl -UseDefaultCredential
$ssrsProxyDest = New-WebServiceProxy -Uri $webServiceUrl2 -UseDefaultCredential
#Get Subscriptions
$items = $ssrsProxy.ListSubscriptions($folderDestination)
#Get the namespace type of destination web service
$type = $ssrsProxyDest.GetType().Namespace
#Create data types based on the proxy we connect to
$SubESType = ($type + '.ExtensionSettings')
#Create Property object
$SubExtensionSettings = New-Object ($SubESType)
$SubExtensionSettings.Extension = "ParameterValues"
foreach($item in $items){
#Declare some variables
[ref]$ExtensionSettings = $null
[ref]$Description = $null
[ref]$Active = $null
[ref]$Status = $null
[ref]$EventType = $null
[ref]$MatchData = $null
[ref]$Parameters = $null
#Get some subscription properties
$results = $ssrsProxy.GetSubscriptionProperties($item.SubscriptionID,$ExtensionSettings,$Description,$Active,$Status,$EventType,$MatchData,$Parameters)
#Copy from one object to another...
$SubExtensionSettings = $ExtensionSettings
Write-Host " ----- This is the original data ---------"
$ExtensionSettings.Value
Write-Host " ----- This is the copied data ---------"
$SubExtensionSettings.Value

Similar Messages

  • Unit Conversion Error in Direct Input method for data transfer

    Hi Experts,
    I am getting a error "E MG 427: Conversion error: field BMMH6-MEINH; content PAK" When I am uploading Alt. UoM using BMHH6 structure in Direct Input. I checked value for UoM in converted data it is "PAC". I think system is internally converting it to PAK so the error is coming.
    Please let me know what need to be done to avoid this error.
    Thanks in Advance..
    -Harkamal

    Hi
    Before passing this unit to the program
    check the conversion Exit in the Domain of the Field
    and use the fun module
    CONVERSION_EXIT_ALPHA_INPUT and pass that value and see how it takes
    otherwise use the fun module UNIT_CONVERSION_SIMPLE and pass the value to program
    Regards
    Anji

  • ResultSet XML Conversion Error

    Hi,
    BPEL, SOA 11g, DB2 Stored procedure,
    In a BPEL service I am getting this error while invoking a DB2 Stored procedure with Strong XSD. I am using assign to copy the input parameter to the input parameters of Stored procedure.
    not able to figure out why this error message is coming.
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'JDE_DBA' failed due to: ResultSet XML Conversion Error. An error occurred while converting from a ResultSet to XML. Unable to convert a ResultSet to XML. Cause: java.lang.NullPointerException ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:381) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:298) 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 com.sun.el.parser.AstValue.invoke(AstValue.java:157) at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283) a
    ---------------- BPEL Code --------
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Fri Dec 10 10:24:23 PST 2010
    Author: chaitanyad
    Purpose: Synchronous BPEL Process
    -->
    <process name="UPCMatchOrder"
    targetNamespace="http://xmlns.oracle.com/CD_JDE_Application_jws/JDE_UPCMatchOrder/UPCMatchOrder"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:client="http://xmlns.oracle.com/CD_JDE_Application_jws/JDE_UPCMatchOrder/UPCMatchOrder"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/db/CD_JDE_Application/JDE_UPCMatchOrder/JDE_DBA"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/db/QAMODA73/X56714P/">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="upcmatchorder_client" partnerLinkType="client:UPCMatchOrder" myRole="UPCMatchOrderProvider"/>
    <partnerLink name="JDE_DBA" partnerRole="JDE_DBA_role"
    partnerLinkType="ns1:JDE_DBA_plt"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable" messageType="client:UPCMatchOrderRequestMessage"/>
    <!-- Reference to the message that will be returned to the requester-->
    <variable name="outputVariable" messageType="client:UPCMatchOrderResponseMessage"/>
    <variable name="Invoke_1_InputVariable" messageType="ns1:args_in_msg"/>
    <variable name="Invoke_1_OutputVariable" messageType="ns1:args_out_msg"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <!-- Receive input from requestor. (Note: This maps to operation defined in UPCMatchOrder.wsdl) -->
    <receive name="receiveInput" partnerLink="upcmatchorder_client" portType="client:UPCMatchOrder" operation="process" variable="inputVariable" createInstance="yes"/>
    <!-- Generate reply to synchronous request -->
    <assign name="Assign_3">
    <copy>
    <from variable="inputVariable" part="InputMessage"/>
    <to variable="Invoke_1_InputVariable" part="InputParameters"/>
    </copy>
    </assign>
    <invoke name="Invoke_1" inputVariable="Invoke_1_InputVariable"
    outputVariable="Invoke_1_OutputVariable" partnerLink="JDE_DBA"
    portType="ns1:JDE_DBA_ptt" operation="JDE_DBA"/>
    <assign name="Assign_2">
    <copy>
    <from variable="Invoke_1_OutputVariable" part="OutputParameters"/>
    <to variable="outputVariable" part="OutputMessage"/>
    </copy>
    </assign>
    <reply name="replyOutput" partnerLink="upcmatchorder_client" portType="client:UPCMatchOrder" operation="process" variable="outputVariable"/>
    </sequence>
    </process>
    Regards,
    -CD

    Hi Sanjay,
    The JDBC sender adapter returns the rows selected from the database in the follwoing format.
    <resultset>
    <row>
    <column-name1>column-value</ column-name1>
    <column-name2>column-value</ column-name2>
    <column-name3>column-value</ column-name3>
    </row>
    <row>
    <column-name1>column-value</ column-name1>
    <column-name2>column-value</ column-name2>
    <column-name3>column-value</ column-name3>
    </row>
    </resultset>
    This error occurs , when the source datatype you have created for the JDBC adapter does not match with this format. I would suggest that you check the source format along with the occurence of your field.
    Regards,
    Bhavesh

  • XML to ABAP Conversion Error - CX_SY_CONVERSION_DATA_LOSS

    REPORT  y_rpt_test                              .
    TYPE-POOLS sscr.
    DATA: restrict TYPE sscr_restrict,
    opt_list TYPE sscr_opt_list,
    *** TYPE sscr_***.
    DATA: options TYPE STANDARD TABLE OF rfc_db_opt ,
    fields TYPE STANDARD TABLE OF rfc_db_fld ,
    meta TYPE STANDARD TABLE OF ywas_metadata ,
    xml_out TYPE string .
    data: xml_out_x type xstring.
    DATA: wa_options LIKE LINE OF options,
    wa_fields LIKE LINE OF fields ,
    wa_meta LIKE LINE OF meta .
    FIELD-SYMBOLS: <outtab> TYPE ANY TABLE,
    <l_line> TYPE ANY,
    <l_field> TYPE ANY.
    DATA: new_table TYPE REF TO data.
    DATA: new_line TYPE REF TO data.
    DATA: xslt_error TYPE REF TO cx_xslt_exception ,
    xslt_message TYPE string .
    DATA: it_fieldcat TYPE lvc_t_fcat,
    is_fieldcat LIKE LINE OF it_fieldcat.
    TYPES: BEGIN OF s_text,
             partnum(18)     TYPE c,
             LONG_DESC(3000)    TYPE c,
           END OF s_text.
    data: lt_outtab type standard table of s_text,
          is_outtab type s_text.
    data: it_temp_text(1000)  TYPE c OCCURS 0 with header line.
    data : l_file TYPE string value 'C:xmlload.xml'.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = l_file
        FILETYPE                      = 'ASC'
      tables
        data_tab                      = it_temp_text.
    loop at it_temp_text.
        concatenate xml_out it_temp_text into xml_out.
    endloop.
        IF NOT xml_out IS INITIAL .
          TRY .
              CALL TRANSFORMATION (`ZTEST1`)
              SOURCE XML xml_out
              RESULT outtab = lt_outtab.
            CATCH cx_xslt_exception INTO xslt_error.
              xslt_message = xslt_error->get_text( ).
              WRITE:/ xslt_message .
          ENDTRY.
        ENDIF .
        break-point.
        write : / 'test'.
    ==========================================================
    I am using above code to convert input XML file into internal table I am getting conversion error. My input XML file looks is as follows. It is throwing this error in call transformation. Appreciate your help in Advance.
    <MODIFIED BY MODERATOR - RESPECT THE 2,500 CHAR LIMIT>
    Code Formatted by: Alvaro Tejada Galindo on Jan 4, 2010 3:31 PM

    Thanks for quick response.
    I think the problem is with special characters in the input XML file. If I don't have special characters in XML file then it works fine.
    Anyway here is the XSLT code. This is a generic XSLT code which I used from one of the examples
    posted on this site.
    <?xml version="1.0" encoding="iso-8859-1"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:xa="urn:schemas-microsoft-com:xml-analysis:mddataset" xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <xsl:output method="xml" />
    <xsl:variable name="fieldNames" select="//asx:abap/asx:values/FIELDCAT" />
    <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    <asx:values>
    <!--FIELDCAT>
    <xsl:apply-templates select="//YWAS_METADATA" />
    </FIELDCAT-->
    <OUTTAB>
    <xsl:apply-templates select="//item" />
    </OUTTAB>
    </asx:values>
    </asx:abap>
    </xsl:template>
    <xsl:template match="//YWAS_METADATA">
    <item>
    <xsl:for-each select="*">
    <!--column ><xsl:apply-templates/></column-->
    <xsl:copy>
    <xsl:apply-templates select="@*|*|text()"/>
    </xsl:copy>
    </xsl:for-each>
    </item>
    </xsl:template>
    <xsl:template match="//item">
    <item>
    <xsl:for-each select="*">
    <!--column ><xsl:apply-templates/></column-->
    <xsl:copy>
    <xsl:apply-templates select="@*|*|text()"/>
    </xsl:copy>
    </xsl:for-each>
    </item>
    </xsl:template>
    </xsl:stylesheet>

  • Conversion error in checkboxgroup component.....

    hi
    i have a checkboxgroup component. first time when i go this particular page no validation error occurs. but when i go to a different page and return back conversion error occurs in that component.
    getSubmittedValue() method for that component returns some value when error occurs.
    can anyone give some suggestions to resolve the error. or suggestions on the value to be converted for checkboxgroup

    the actual code is
    <cg:checkboxGroup binding="#{view$UsersSMSReport.action_chkbxgrp}" columns="1" id="action_chkbxgrp" style="width: 100%;"/>
    <cg:message binding="#{view$UsersSMSReport.action_msg}" for="action_chkbxgrp" id="action_msg"/>
    where cg is the our own tag discriptor file
    we use jsp-api.jar and jstl.jar for customization of components.
    the taglib file for this tag refers to class
    CGCheckboxGroupTag extends UIComponentTag
    the setProperties method in above class contains code for convertor
    if(converter != null)
    if(isValueReference(converter))
    javax.faces.el.ValueBinding _vb = getFacesContext().getApplication().createValueBinding(converter);
    component.setValueBinding("converter", vb);
    } else
    javax.faces.convert.Converter _converter = FacesContext.getCurrentInstance().getApplication().createConverter(converter);
    component.getAttributes().put("converter", converter);
    the design time class for this component is
    CGCheckboxGroupBeanInfoBase extends SimpleBeanInfo
    they are compiled into a tld file and added as complib file in project
    the same component sometimes i get conversion error in validation phase and sometimes i get error in page displaying
    java.lang.NullPointerException
    ClassName:com.sun.rave.web.ui.util.ConversionUtilities
    FileName ConversionUtilities.java
    MethodName: convertValueToArray

  • Numeric or value error: hex to raw conversion error , pls help

    I am having problem with a sproc which accepts a Raw parameter.
    I have a table called Profile:
    CREATE TABLE PROFILES
    PROFILEID INTEGER NOT NULL,
    USERID INTEGER NOT NULL,
    PROFILE RAW(255)
    and a sproc named addprofile
    CREATE OR REPLACE PROCEDURE addprofile
    profile IN RAW,
    userName IN VARCHAR2
    AS
    userId INT;
    BEGIN
    GetUserIdByName( userName, userId);
    INSERT INTO Profiles
    ( ProfileID,userId , profile )
    VALUES ( Profiles_ProfileID_SEQ.NEXTVAL,AddProfile.userId ,
    AddProfile.profile );
    END;
    I am calling the Ent Library's Insert profile method which is part of DbProfileProvider.cs (Security App block). It is trying to persist a serialized profile object into the database.
    private void InsertProfile(string userName, byte[] serializedProfile,
    Data.Database securityDb, IDbTransaction transaction)
    DBCommandWrapper cmd = securityDb.GetStoredProcCommandWrapper
    (SPAddProfile);
    cmd.AddInParameter("userName", DbType.String, userName);
    cmd.AddInParameter("profile", DbType.Binary, serializedProfile);
    securityDb.ExecuteNonQuery(cmd, transaction);
    I get the following error:
    Any suggestion on what needs to be changed to get this working? thanks!
    Exception Details: Oracle.DataAccess.Client.OracleException: ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error ORA-06512: at line 1
    Stack trace:
    [OracleException: ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error
    ORA-06512: at line 1]
    Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure)
    Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, String procedure, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src)
    Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
    Microsoft.Practices.EnterpriseLibrary.Data.Database.DoExecuteNonQuery(DBCommandWrapper command)
    Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteNonQuery(DBCommandWrapper command, IDbTransaction transaction)
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.InsertProfile(String userName, Byte[] serializedProfile, Database securityDb, IDbTransaction transaction)
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.SetProfile(IIdentity identity, Object profile)
    [InvalidOperationException: Error saving the profile for the following user 'test'.]
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.SetProfile(IIdentity identity, Object profile)
    EntLibSecuritySample.DFO.Security.SecurityHelper.SetUserProfile(IIdentity identity, Object Profile) in C:\DFO\Sample\Security\EntLibSecuritySample\SecurityHelper.vb:285
    [ApplicationException: An error has occurred saving profile object to Datastore. See stack trace for further information]
    EntLibSecuritySample.DFO.Security.SecurityHelper.SetUserProfile(IIdentity identity, Object Profile) in C:\DFO\Sample\Security\EntLibSecuritySample\SecurityHelper.vb:287
    EntLibSecuritySample.ProfilePage.cmdSaveProfile_Click(Object sender, EventArgs e) in C:\DFO\Sample\Security\EntLibSecuritySample\profile.aspx.vb:59
    System.Web.UI.WebControls.Button.OnClick(EventArgs e)
    System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    System.Web.UI.Page.ProcessRequestMain() +1292

    Harsh,
    I am not a user of the Enterprise Library so I can not speak to the specifics of that. However, here is a short sample that is based on the information you've provided. Perhaps it will be useful.
    Database:
    create table profiles
      profileid integer not null,
      userid    integer not null,
      profile   raw(255)
    create or replace procedure addprofile
      p_profileid in integer,
      p_userid    in integer,
      p_profile   in raw
    as
    begin
      insert into
        profiles (profileid, userid, profile)
        values (p_profileid, p_userid, p_profile);
    end;
    /C# code:
    using System;
    using System.Data;
    using System.Text;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    namespace HarshTest
      /// <summary>
      /// Summary description for Class1.
      /// </summary>
      class Class1
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main(string[] args)
          // connect to local db using o/s authentication
          OracleConnection con = new OracleConnection("User ID=/; Pooling=False");
          con.Open();
          // create command object and set properties
          OracleCommand cmd = new OracleCommand();
          cmd.Connection = con;
          cmd.CommandText = "ADDPROFILE";
          cmd.CommandType = CommandType.StoredProcedure;
          // parameter object for profileid
          OracleParameter p_profileid = new OracleParameter();
          p_profileid.OracleDbType = OracleDbType.Int32;
          p_profileid.Value = 1;
          p_profileid.Direction = ParameterDirection.Input;
          // parameter object for userid
          OracleParameter p_userid = new OracleParameter();
          p_userid.OracleDbType = OracleDbType.Int32;
          p_userid.Value = 1;
          p_userid.Direction = ParameterDirection.Input;
          // create a byte array for the raw value
          ASCIIEncoding encoder = new ASCIIEncoding();
          byte[] byteArray = encoder.GetBytes("TestProfile");
          // parameter object for profile
          OracleParameter p_profile = new OracleParameter();
          p_profile.OracleDbType = OracleDbType.Raw;
          p_profile.Value = byteArray;
          p_profile.Direction = ParameterDirection.Input;
          // add parameters to collection
          cmd.Parameters.Add(p_profileid);
          cmd.Parameters.Add(p_userid);
          cmd.Parameters.Add(p_profile);
          // execute the stored procedure
          try
            cmd.ExecuteNonQuery();
          catch (OracleException ex)
            Console.WriteLine(ex.Message);
          // clean up objects
          p_profile.Dispose();
          p_userid.Dispose();
          p_profileid.Dispose();
          cmd.Dispose();
          con.Dispose();
    }Maybe the part about creating the byte array is what you are missing...
    - Mark

  • Import Webservice mode error?

    Hi All,
    When I Import  Webservice model it's rising the following errors.\
    com.sap.engine cannot resolved.
    Javax.xml.rpc cannot be resolved.
    Regards,
    Pradeep

    Hi Sumit,
    Error messages are :
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_delete.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_getAttributes.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_getContent.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_send.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_setActionFlags.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 67
    Error               javax.xml.rpc cannot be resolved or is not a type     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 69
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 72
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 75
    Error               javax.xml.rpc cannot be resolved     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 78
    Error               com.sap.engine cannot be resolved     Request_IciMessageViDocument_setContent.java     Webservice_proj/gen_wdp/packages/test     line 81
    Error               The import javax.xml.rpc cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 4
    Error               The import javax.xml.rpc cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 6
    Error               The import com.sap.engine cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 8
    Error               The import com.sap.engine cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 9
    Error               The import com.sap.engine cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 10
    Error               The import com.sap.engine cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 11
    Error               com.sap.engine cannot be resolved or is not a valid superclass     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 14
    Error               com.sap.engine cannot be resolved or is not a valid superinterface     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 14
    Error               com.sap.engine cannot be resolved (or is not a valid type) for the field IciMessageConfBindingStub.typeRegistry     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 17
    Error               The method setEndpoint(String) is undefined for the type Object     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 21
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 22
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 22
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 23
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 23
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 24
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 24
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 25
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 25
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 26
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 26
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 27
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 27
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 28
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 28
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 29
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 29
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 30
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 30
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 31
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 31
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 32
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 32
    Error               localProtocols cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 33
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 33
    Error               localFeatures cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 34
    Error               PropertyContext cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 34
    Error               com.sap.engine cannot be resolved (or is not a valid type) for the argument binding of the method setTransportBinding     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 37
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 39
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 39
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 40
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 40
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 42
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 42
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 43
    Error               com.sap.engine cannot be resolved     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 43
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 43
    Error               com.sap.engine cannot be resolved (or is not a valid type) for the argument _registry of the method setTypeRegistry     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 47
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 48
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 49
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 49
    Error               transportBinding cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 50
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 50
    Error               featureConfiguration cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 52
    Error               typeRegistry cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 52
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 55
    Error               The method beginLogFrame() is undefined for the type Object     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 57
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 59
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 59
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 60
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 60
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 61
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 62
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 63
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 64
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 65
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 66
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 66
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 67
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 68
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 69
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 70
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 71
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 72
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 72
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 73
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 74
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 75
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 76
    Error               inputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 77
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 79
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 79
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 80
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 80
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 81
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 82
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 83
    Error               outputParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 84
    Error               faultParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 86
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 86
    Error               faultParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 87
    Error               ServiceParam cannot be resolved or is not a type     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 87
    Error               faultParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 88
    Error               faultParams cannot be resolved or is not a field     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 89
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 132
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 209
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 286
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 363
    Error               Cannot throw the type SoapException     IciMessageConfBindingStub.java     Webservice_proj/src/packages/test/proxies     line 440
    Error               com.sap.engine cannot be resolved (or is not a valid return type) for the method getOpMetadata     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 518
    Error               com.sap.engine cannot be resolved (or is not a valid type) for the argument opStruct of the method invoke     IciMessageConfBindingStub.java     Webserviceproj/src/packages/test/proxies     line 869
    Error               javax.xml.rpc cannot be resolved or is not a valid superinterface     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 7
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 9
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 10
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getIciMessageConfPortDocument     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 11
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 12
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 13
    Error               com.sap.engine cannot be resolved (or is not a valid return type) for the method getLogicalPortConfiguration     IciMessageService.java     Webservice_proj/src/packages/test/proxies     line 15
    Error               Class must implement the inherited abstract method IciMessageService.getLogicalPortNames()     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 3
    Error               com.sap.engine cannot be resolved or is not a valid superclass     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 3
    Error               The method loadProtocolsFromPropertyFile(InputStream) is undefined for the type IciMessageServiceImpl     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 9
    Error               The method init(InputStream) is undefined for the type IciMessageServiceImpl     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 11
    Error               typeRegistry cannot be resolved or is not a field     IciMessageServiceImpl.java     Webserviceproj/src/packages/test/proxies     line 12
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 12
    Error               typeRegistry cannot be resolved or is not a field     IciMessageServiceImpl.java     Webserviceproj/src/packages/test/proxies     line 13
    Error               com.sap.engine cannot be resolved (or is not a valid type) for the argument componentFactory of the method IciMessageServiceImpl     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 16
    Error               componentFactory cannot be resolved or is not a field     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 18
    Error               The method init(InputStream) is undefined for the type IciMessageServiceImpl     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 19
    Error               typeRegistry cannot be resolved or is not a field     IciMessageServiceImpl.java     Webserviceproj/src/packages/test/proxies     line 20
    Error               com.sap.engine cannot be resolved or is not a type     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 20
    Error               typeRegistry cannot be resolved or is not a field     IciMessageServiceImpl.java     Webserviceproj/src/packages/test/proxies     line 21
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 24
    Error               The method getPort(QName, null) is undefined for the type IciMessageServiceImpl     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 25
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 27
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getIciMessageConfPortDocument     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 30
    Error               The method getPort(QName, Class) is undefined for the type Object     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 31
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 35
    Error               The method getPort(QName, Class) is undefined for the type Object     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 36
    Error               javax.xml.rpc cannot be resolved (or is not an exception type) for the method getLogicalPort     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 39
    Error               The method getLogicalPort(Class) is undefined for the type Object     IciMessageServiceImpl.java     Webservice_proj/src/packages/test/proxies     line 40
    Error               javax.xml.rpc cannot be resolved or is not a valid superinterface     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 7
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 9
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 10
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 11
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 12
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 13
    Error               Cannot throw the type SoapException     IciMessageViDocument.java     Webservice_proj/src/packages/test/proxies     line 14
    Error               com.sap.engine cannot be resolved or is not a valid superclass     SoapException.java     Webservice_proj/src/packages/test/proxies     line 3
    Error               com.sap.engine cannot be resolved or is not a valid superclass     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 10
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field Delete.ATTRIBUTEINFO     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 21
    Error               ATTRIBUTEINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 25
    Error               ATTRIBUTEINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine cannot be resolved or is not a type     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field Delete.FIELDINFO     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 30
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 34
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               com.sap.engine cannot be resolved or is not a type     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               com.sap.engine cannot be resolved or is not a type     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 38
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 39
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 40
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 41
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 42
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 43
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 44
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 45
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 46
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 47
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 48
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 49
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 50
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 51
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 52
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 53
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 54
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 55
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 56
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getFields     Delete.java     Webserviceproj/src/packages/test/proxies/types     line 77
    Error               com.sap.engine[] cannot be resolved or is not a type     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 79
    Error               The method getFields() is undefined for the type Object     Delete.java     Webserviceproj/src/packages/test/proxies/types     line 79
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 80
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 80
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 83
    Error               FIELDINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 87
    Error               The method getNumberOfFields() is undefined for the type Object     Delete.java     Webserviceproj/src/packages/test/proxies/types     line 87
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getAttributes     Delete.java     Webserviceproj/src/packages/test/proxies/types     line 90
    Error               ATTRIBUTEINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 91
    Error               ATTRIBUTEINFO cannot be resolved     Delete.java     Webservice_proj/src/packages/test/proxies/types     line 95
    Error               com.sap.engine cannot be resolved or is not a valid superclass     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 10
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field DeleteResponse.ATTRIBUTEINFO     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 21
    Error               ATTRIBUTEINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 25
    Error               ATTRIBUTEINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine cannot be resolved or is not a type     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field DeleteResponse.FIELDINFO     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 30
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 34
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               com.sap.engine cannot be resolved or is not a type     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               com.sap.engine cannot be resolved or is not a type     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 38
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 39
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 40
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 41
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 42
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 43
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 44
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 45
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 46
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 47
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 48
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 49
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 50
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 51
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 52
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 53
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 54
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 55
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 56
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getFields     DeleteResponse.java     Webserviceproj/src/packages/test/proxies/types     line 84
    Error               com.sap.engine[] cannot be resolved or is not a type     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 86
    Error               The method getFields() is undefined for the type Object     DeleteResponse.java     Webserviceproj/src/packages/test/proxies/types     line 86
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 87
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 87
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 90
    Error               FIELDINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 94
    Error               The method getNumberOfFields() is undefined for the type Object     DeleteResponse.java     Webserviceproj/src/packages/test/proxies/types     line 94
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getAttributes     DeleteResponse.java     Webserviceproj/src/packages/test/proxies/types     line 97
    Error               ATTRIBUTEINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 98
    Error               ATTRIBUTEINFO cannot be resolved     DeleteResponse.java     Webservice_proj/src/packages/test/proxies/types     line 102
    Error               com.sap.engine cannot be resolved or is not a valid superclass     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 10
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field GetAttributes.ATTRIBUTEINFO     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 21
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 25
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field GetAttributes.FIELDINFO     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 30
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 34
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 38
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 39
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 40
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 41
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 42
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 43
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 44
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 45
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 46
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 47
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 48
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 49
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 50
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 51
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 52
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 53
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 54
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 55
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 56
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getFields     GetAttributes.java     Webserviceproj/src/packages/test/proxies/types     line 77
    Error               com.sap.engine[] cannot be resolved or is not a type     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 79
    Error               The method getFields() is undefined for the type Object     GetAttributes.java     Webserviceproj/src/packages/test/proxies/types     line 79
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 80
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 80
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 83
    Error               FIELDINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 87
    Error               The method getNumberOfFields() is undefined for the type Object     GetAttributes.java     Webserviceproj/src/packages/test/proxies/types     line 87
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getAttributes     GetAttributes.java     Webserviceproj/src/packages/test/proxies/types     line 90
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 91
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributes.java     Webservice_proj/src/packages/test/proxies/types     line 95
    Error               com.sap.engine cannot be resolved or is not a valid superclass     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 10
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field GetAttributesResponse.ATTRIBUTEINFO     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 21
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 25
    Error               ATTRIBUTEINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 26
    Error               com.sap.engine[] cannot be resolved (or is not a valid type) for the field GetAttributesResponse.FIELDINFO     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 30
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 34
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 35
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               com.sap.engine cannot be resolved or is not a type     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 36
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 38
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 39
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 40
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 41
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 42
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 43
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 44
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 45
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 46
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 47
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 48
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 49
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 50
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 51
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 52
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 53
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 54
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 55
    Error               FIELDINFO cannot be resolved     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 56
    Error               com.sap.engine[] cannot be resolved (or is not a valid return type) for the method getFields     GetAttributesResponse.java     Webserviceproj/src/packages/test/proxies/types     line 77
    Error               com.sap.engine[] cannot be resolved or is not a type     GetAttributesResponse.java     Webservice_proj/src/packages/test/proxies/types     line 79
    Error        

  • Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).

    Hi,
    I have a file where fields are wrapped with ".
    =========== file sample
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    "asdsa","asdsadasdas","1123"
    ==========
    I am having a .net method to remove the wrap characters and write out a file without wrap characters.
    ======================
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    asdsa,asdsadasdas,1123
    ======================
    the .net code is here.
    ========================================
    public static string RemoveCharacter(string sFileName, char cRemoveChar)
                object objLock = new object();
                //VirtualStream objInputStream = null;
                //VirtualStream objOutStream = null;
                FileStream objInputFile = null, objOutFile = null;
                lock(objLock)
                    try
                        objInputFile = new FileStream(sFileName, FileMode.Open);
                        //objInputStream = new VirtualStream(objInputFile);
                        objOutFile = new FileStream(sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString(), FileMode.Create);
                        //objOutStream = new VirtualStream(objOutFile);
                        int nByteRead;
                        while ((nByteRead = objInputFile.ReadByte()) != -1)
                            if (nByteRead != (int)cRemoveChar)
                                objOutFile.WriteByte((byte)nByteRead);
                    finally
                        objInputFile.Close();
                        objOutFile.Close();
                    return sFileName.Substring(0, sFileName.LastIndexOf('\\')) + "\\" + Guid.NewGuid().ToString();
    ==================================
    however when I run the bulk load utility I get the error 
    =======================================
    Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 3 (NumberOfMultipleMatches).
    ==========================================
    the bulk insert statement is as follows
    =========================================
     BULK INSERT Temp  
     FROM '<file name>' WITH  
      FIELDTERMINATOR = ','  
      , KEEPNULLS  
    ==========================================
    Does anybody know what is happening and what needs to be done ?
    PLEASE HELP
    Thanks in advance 
    Vikram

    To load that file with BULK INSERT, use this format file:
    9.0
    4
    1 SQLCHAR 0 0 "\""      0 ""    ""
    2 SQLCHAR 0 0 "\",\""   1 col1  Latin1_General_CI_AS
    3 SQLCHAR 0 0 "\",\""   2 col2  Latin1_General_CI_AS
    4 SQLCHAR 0 0 "\"\r\n"  3 col3  Latin1_General_CI_AS
    Note that the format file defines four fields while the fileonly seems to have three. The format file defines an empty field before the first quote.
    Or, since you already have a .NET program, use a stored procedure with table-valued parameter instead. I have an example of how to do this here:
    http://www.sommarskog.se/arrays-in-sql-2008.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • PL/SQL: numeric or value error: character to number conversion error in TRG

    Hi,
    I've got strange issue with one trigger which during update of table reports (DB is 9.2.0.8):
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at "UDR_LOG", line 345
    ORA-04088: error during execution of trigger 'UDR_LOG'but line 345 is:
    END IF;
    so its kind of strange
    the code looks like
    343 IF nvl(to_char(:old.PKD_ID),'''') <> nvl(to_char(:new.PKD_ID),'''') THEN
    344     v_zmn := v_zmn || 'PKD_ID''' || to_char(:old.PKD_ID) || '''' || to_char(:new.PKD_ID) || '''';
    345    END IF;
    so its concatenation not to_number usage .error is triggered by update statement on any column .
    I'm sorry I cant provide You with whole trigger code .
    So if You could only recommend any investigation method that would be great .
    Regards
    Greg

    Hi, Greg,
    When there's an error in a trigger, the line numbers in the error messages are relative to the first DECLARE or BEGIN statement; often, that's a few lines after CREATE OR REPLACE TRIGGER. Post a few lines after what you already posted.
    If you can't find the error, then create another table for testing this, and create a smaller trigger on that table, which does only enough to cause the error. Then you'll be able to post the complete trigger, and the code needed to re-create the problem.

  • Conversion Error setting value ''{0}'' for ''{1}''

    Hi
    I have to populate a drop-down list on my page with the values coming from the DB.
    JSF code:
    <td align="right"><div id="wait" style="visibility:hidden;">Select an existing Application</div></td>
    <td align="left"><div id="wait1" style="visibility:hidden;" >
    <h:selectOneMenu id="exist" value="#{processApplication.selectedOwner}" styleClass="selectOneMenu">
    <f:selectItems value="#{processApplication.existingOwners}"></f:selectItems>
    </h:selectOneMenu>
    </div>
    </td>
    processApplication bean:
    public List<SelectItem> getExistingOwners() {                    
    //existingOwners = this.getOwners();
    try{
         List < SelectItem > existingOwners = new ArrayList < SelectItem > ( ) ;
         SelectItem si_0 = new SelectItem();
         SelectItem si_1 = new SelectItem();
    SelectItem si_2 = new SelectItem();
         si_0.setValue("11");
         si_0.setLabel("sri");
         si_1.setValue("21");
         si_1.setLabel("ADAMS");
         existingOwners.add(si_0);
         existingOwners.add(si_1);
         logger.info("values in the list" +existingOwners.get(1).getValue());
              }catch(Exception e){
                   logger.debug(e.getCause());
                   e.printStackTrace();
              return existingOwners;
         public void setExistingOwners(List<SelectItem> existingOwners) {
              try{
              this.existingOwners = existingOwners;
              }catch(Exception e){
                   logger.debug("%%%%");
                   logger.debug(e.getCause());
                   e.printStackTrace();
    public String getSelectedOwner() {
         try{
         List<SelectItem> test = this.getExistingOwners();
         selectedOwner = (String)test.get(1).getValue();
         logger.debug("selected owner from the list" +selectedOwner);
         }catch(Exception e){
         logger.debug(e.getCause());
         e.printStackTrace();
         return selectedOwner;
         public void setSelectedOwner(String selectedOwner) {
              this.selectedOwner = selectedOwner;
    public List<SelectItem> getExistingOwners() should actually be a call to the DB to get the list.
    But since i was getting exception I tried to hard code the list in the method itself.
    But , I get this exception:
    logger.info values in the list 21
    [6/15/09 12:49:45:687 EDT] 0000003d ServletWrappe E SRVE0068E: Uncaught exception thrown in one of the service methods of the servlet: /processApplication.jsp. Exception thrown : javax.servlet.ServletException: Conversion Error setting value ''{0}'' for ''{1}''.
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:658)
         at com.ibm._jsp._processApplication._jspService(_processApplication.java:149)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:118)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:701)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:646)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
    Earlier, I had a drop down list that was working perfectly fine.
    But its values came from a Helper class and not the DB.
    What is it that Iam missing or doing wrong?
    Please help me.
    Thanks.

    Based on your example on the link that you referred to I tried to do this
    fillSelectItems();
    as the initialization block (I read what it means)
    changed my getter method to
    public List<SelectItem> getExistingOwners() { return existingOwners; }
    private void fillSelectItems() {
    this.existingOwners = new ArrayList<SelectItem>();
    try{
         existingOwners.clear();
         List test = this.getOwners();
         SelectItem[] myitem = new SelectItem[test.size()];
         for(int i=0;i<test.size();i++) {
         Object[] arrayOne = (Object[])test.get(i);
    try{
         SelectItem tmp = new SelectItem();
         tmp.setLabel(arrayOne[0].toString()+(String)arrayOne[1]);
         tmp.setValue((Integer)arrayOne[0]);
         myitem[i] = tmp;
    this.existingOwners.add(myitem);
    }catch(Exception e){
              logger.debug(e.getCause());
              e.printStackTrace();
         }catch(Exception e){
              logger.debug(e.getCause());
              e.printStackTrace();
    Basically, I moved what I had earlier in getter method I have it now in the fillSelectItems()
    Butthen, I get a NullPointerException.

  • Web service call on hosted env fails with hex to raw conversion error

    Hi,
    I use Enciva to run some hosted Apex applications, and I've had a call open with them for a few days re: setting up a web service call to an e-mail checker, provided by a company called Rolosoft. The e-mail checker runs fine from outside the hosted environment, but I get the following error trying to call from the Apex application:
    ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error
    Has anyone hit this error before with web services, I've tried manual and RESTful but get the same error message.
    Thanks,
    Mike

    Hello,
    We encounter the same issue using manual WebService !
    Environnement Settings :
    Oracle 11g R2 - Windows W2K3 - NLS_CHARACTERSET : AL32UTF8
    Apex 4.1
    Any suggestions, helps ?
    Thanks,
    G.

  • Conversion Error: I/O error while communicating with native process

    Hi,
    I am trying to use Oracle Outside In Technology Image Export for conversion of images. I am trying to run the example ExportTest that comes with the downloaded SDK.
    I get the below error while running the ExportTest example.
    Conversion Error: I/O error while communicating with native process .
    Am I missing any settings?
    Please guide to the right forum if this is not the one for posting queries on Oracle Outside In Technology Image Export.
    Thank you.

    Hi Revanth,
    I am using Image Export 8.3.7 and I am trying to run the java class "ExportTest" that is in the location sdk\samplecode\ExJava\Examples\ExportTest\src of the download.
    My input folder has one jpg - puzzle.jpg (this is just a simple jpg), I am trying to convert it to TIFF. ExportTest.java uses the classes in Export.jar . Export.jar is located in the sdk\samplecode\ExJava\Examples\ExportTest . You can see source files of the Export.jar at location sdk\samplecode\ExJava\Java API\src of the download. I am running the 'ExportTest' by providing the arguments (input folder, output folder and ix.cfg - this file comes with the download). So now when I run this class I was getting the error I mentioned in this post. Inorder to find more details about the error I modified the 'Export.java' (at sdk\samplecode\ExJava\Java API\src\com\outsideinsdk) just to printStackTrace when the exception occurs and rebuilt the 'Export.jar' and ran the 'ExportTest.java'.
    And below is the stack trace that I got :
    java.io.IOException: CreateProcess: nullexporter.exe "inputpath_u=AGkAbgBwAHUAdA
    BcAHAAdQB6AHoAbABlAC4ASgBQAEc=" "outputpath_u=AG8AdQBwAHUAdABcAHAAdQB6AHoAbABlAC
    4ASgBQAEcALgBUAEkARgBG" "outputid=FI_TIFF" "fallbackformat=FI_TEXT" "tiffcolorsp
    ace=24BitRGB" "preferoitrendering=false" "tiffcompression=Packbits" "mapbuffersi
    ze=8192" "defaultprintfontheight=20" "graphicwidthlimit=0" "reordermethod=off" "
    unmappablechar=0x002A" "timezone=0" "graphicheightlimit=0" "defaultmarginleft=14
    40" "ssshowheadings=false" "quickthumbnail=false" "graphicoutputdpi=0" "ssdirect
    ion=AcrossandDown" "defaultmarginbottom=1440" "ssshowgridlines=false" "dbshowhea
    dings=false" "readbuffersize=2" "whattoexport=all" "graphicsizelimit=0" "imagewa
    termarkopacity=0" "blue=-1" "handlenewfileinfo=no" "outputid=FI_TIFF" "lzwcompre
    ssion=enabled" "usedocpagesettings=true" "defaultmarginright=1440" "numberofstat
    callbacks=0" "dbfittopage=NoScaling" "tempbuffersize=2048" "pdffilterreorderbidi
    =no" "imagecropping=nocropping" "defaultmargintop=1440" "documentmemorymode=larg
    e" "m?
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:66)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:566)
    at java.lang.Runtime.exec(Runtime.java:491)
    at java.lang.Runtime.exec(Runtime.java:457)
    at com.outsideinsdk.Export.convert(Export.java:262)
    at com.outsideinsdk.ExportTest.convert(ExportTest.java:142)
    at com.outsideinsdk.ExportTest.main(ExportTest.java:214)
    hope this helps to find the problem.
    Thank you

  • Jquery Ajax calling code-behind Error - 405 (Method Not Allowed)

    Hi,
    I am working on a web form with Jquery, Ajax to call a code-behind (webservice), but I get the following error: 405 (Method Not Allowed).
    See code...
    ../Ops/new-item.aspx
    <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="new-item.aspx.cs" Inherits="WebAppFrekuency.Ops.new_item" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
    <script src="../Scripts/js-new.js" type="text/javascript"></script>
    <script src="../Scripts/jquery-1.11.1.js" type="text/javascript"></script>
    </asp:Content>
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <div id="message">
    Mensaje
    </div>
    <div id="form">
    <input type="text" id="barcode" name="barcode" /> <button id="submit" type="button">Crear</button>
    </div>
    </asp:Content>
    ../Scripts/js-new.js
    $(document).ready(function () {
    //Informacion de contacto
    var error = false;
    var message = "";
    $("#submit").click(function () {
    if ($("#barcode").val() == "") {
    $("#barcode").css("border", "1px solid red");
    error = true;
    message = "Error - El campo codigo de barras es obligatorio";
    else {
    $("#barcode").css("border", "");
    message = "";
    if (error == false) {
    var formData = '{name:"' + $("#barcode").val() + '"}';
    // process the form
    $.ajax({
    type: "POST", // define the type of HTTP verb we want to use (POST for our form)
    url: "new-item.apsx/Search", // the url where we want to POST
    data: formData, // our data object
    contentType: "application/json; charset=utf-8",
    dataType: "json", // what type of data do we expect back from the server
    success: OnSuccess,
    failure: function (response) {
    alert("Falla - " + response.d);
    // using the done promise callback
    event.preventDefault();
    } else { alert(message); }
    function OnSuccess(response) {
    alert("Exito - " + response.d);
    ../Ops/new-item.aspx.cs
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Net;
    using System.IO;
    namespace WebAppFrekuency.Ops
    public partial class new_item : System.Web.UI.Page
    protected void Page_Load(object sender, EventArgs e)
    [System.Web.Services.WebMethod]
    public static string Search(string epc)
    return "YES";
    Any ideas why I am getting this error?
    Thanks,

    I read the article, but problem persists,  next is the web.config file
    <?xml version="1.0"?>
    <!--
    For more information on how to configure your ASP.NET application, please visit
    http://go.microsoft.com/fwlink/?LinkId=169433
    -->
    <configuration>
    <connectionStrings>
    <add name="ApplicationServices"
    connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
    providerName="System.Data.SqlClient" />
    </connectionStrings>
    <system.web>
    <compilation debug="true" targetFramework="4.0" />
    <authentication mode="Forms">
    <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
    </authentication>
    <membership>
    <providers>
    <clear/>
    <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
    enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
    maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
    applicationName="/" />
    </providers>
    </membership>
    <profile>
    <providers>
    <clear/>
    <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
    </providers>
    </profile>
    <roleManager enabled="false">
    <providers>
    <clear/>
    <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
    <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
    </providers>
    </roleManager>
    <webServices>
    <protocols>
    <add name="HttpGet"/>
    <add name="HttpPost"/>
    </protocols>
    </webServices>
    </system.web>
    <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <httpProtocol>
    <customHeaders>
    <add name="Access-Control-Allow-Origin" value="*" />
    <add name="Access-Control-Allow-Headers" value="Content-Type" />
    </customHeaders>
    </httpProtocol>
    </system.webServer>
    </configuration>
    and the machine.config file looks like
    <?xml version="1.0"?>
    <!--
    Please refer to machine.config.comments for a description and
    the default values of each configuration section.
    For a full documentation of the schema please refer to
    http://go.microsoft.com/fwlink/?LinkId=42127
    To improve performance, machine.config should contain only those
    settings that differ from their defaults.
    -->
    <configuration>
    <configSections>
    <section name="oracle.dataaccess.client" type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="appSettings" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" restartOnExternalChanges="false" requirePermission="false" />
    <section name="connectionStrings" type="System.Configuration.ConnectionStringsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" requirePermission="false" />
    <section name="mscorlib" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="runtime" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="assemblyBinding" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="satelliteassemblies" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="startup" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="system.codedom" type="System.CodeDom.Compiler.CodeDomConfigurationHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.data" type="System.Data.Common.DbProviderFactoriesConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.data.dataset" type="System.Configuration.NameValueFileSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" restartOnExternalChanges="false" />
    <section name="system.data.odbc" type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.data.oledb" type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.data.oracleclient" type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.data.sqlclient" type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.diagnostics" type="System.Diagnostics.SystemDiagnosticsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="system.runtime.remoting" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="system.windows.forms" type="System.Windows.Forms.WindowsFormsSection, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="windows" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" />
    <section name="uri" type="System.Configuration.UriSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <sectionGroup name="system.runtime.caching" type="System.Runtime.Caching.Configuration.CachingSectionGroup, System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    <section name="memoryCache" type="System.Runtime.Caching.Configuration.MemoryCacheSection, System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    </sectionGroup>
    <sectionGroup name="system.xml.serialization" type="System.Xml.Serialization.Configuration.SerializationSectionGroup, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="schemaImporterExtensions" type="System.Xml.Serialization.Configuration.SchemaImporterExtensionsSection, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="dateTimeSerialization" type="System.Xml.Serialization.Configuration.DateTimeSerializationSection, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="xmlSerializer" type="System.Xml.Serialization.Configuration.XmlSerializerSection, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    <sectionGroup name="system.net" type="System.Net.Configuration.NetSectionGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="authenticationModules" type="System.Net.Configuration.AuthenticationModulesSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="connectionManagement" type="System.Net.Configuration.ConnectionManagementSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="defaultProxy" type="System.Net.Configuration.DefaultProxySection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <sectionGroup name="mailSettings" type="System.Net.Configuration.MailSettingsSectionGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="smtp" type="System.Net.Configuration.SmtpSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    <section name="requestCaching" type="System.Net.Configuration.RequestCachingSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="settings" type="System.Net.Configuration.SettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="webRequestModules" type="System.Net.Configuration.WebRequestModulesSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    <sectionGroup name="system.runtime.serialization" type="System.Runtime.Serialization.Configuration.SerializationSectionGroup, System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="dataContractSerializer" type="System.Runtime.Serialization.Configuration.DataContractSerializerSection, System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    <sectionGroup name="system.serviceModel" type="System.ServiceModel.Configuration.ServiceModelSectionGroup, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="behaviors" type="System.ServiceModel.Configuration.BehaviorsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="bindings" type="System.ServiceModel.Configuration.BindingsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="client" type="System.ServiceModel.Configuration.ClientSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="comContracts" type="System.ServiceModel.Configuration.ComContractsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="commonBehaviors" type="System.ServiceModel.Configuration.CommonBehaviorsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowDefinition="MachineOnly" allowExeDefinition="MachineOnly" />
    <section name="diagnostics" type="System.ServiceModel.Configuration.DiagnosticSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="extensions" type="System.ServiceModel.Configuration.ExtensionsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="machineSettings" type="System.ServiceModel.Configuration.MachineSettingsSection, SMDiagnostics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowDefinition="MachineOnly" allowExeDefinition="MachineOnly" />
    <section name="protocolMapping" type="System.ServiceModel.Configuration.ProtocolMappingSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="serviceHostingEnvironment" type="System.ServiceModel.Configuration.ServiceHostingEnvironmentSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowDefinition="MachineToApplication" />
    <section name="services" type="System.ServiceModel.Configuration.ServicesSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="standardEndpoints" type="System.ServiceModel.Configuration.StandardEndpointsSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="routing" type="System.ServiceModel.Routing.Configuration.RoutingSection, System.ServiceModel.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <section name="tracking" type="System.ServiceModel.Activities.Tracking.Configuration.TrackingSection, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </sectionGroup>
    <sectionGroup name="system.serviceModel.activation" type="System.ServiceModel.Activation.Configuration.ServiceModelActivationSectionGroup, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    <section name="diagnostics" type="System.ServiceModel.Activation.Configuration.DiagnosticSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="net.pipe" type="System.ServiceModel.Activation.Configuration.NetPipeSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <section name="net.tcp" type="System.ServiceModel.Activation.Configuration.NetTcpSection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </sectionGroup>
    <sectionGroup name="system.transactions" type="System.Transactions.Configuration.TransactionsSectionGroup, System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null">
    <section name="defaultSettings" type="System.Transactions.Configuration.DefaultSettingsSection, System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
    <section name="machineSettings" type="System.Transactions.Configuration.MachineSettingsSection, System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" allowDefinition="MachineOnly" allowExeDefinition="MachineOnly" />
    </sectionGroup>
    <sectionGroup name="system.web" type="System.Web.Configuration.SystemWebSectionGroup, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    <section name="anonymousIdentification" type="System.Web.Configuration.AnonymousIdentificationSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="authentication" type="System.Web.Configuration.AuthenticationSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="authorization" type="System.Web.Configuration.AuthorizationSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="browserCaps" type="System.Web.Configuration.HttpCapabilitiesSectionHandler, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="clientTarget" type="System.Web.Configuration.ClientTargetSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="compilation" type="System.Web.Configuration.CompilationSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" requirePermission="false" />
    <section name="customErrors" type="System.Web.Configuration.CustomErrorsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="deployment" type="System.Web.Configuration.DeploymentSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineOnly" />
    <section name="deviceFilters" type="System.Web.Mobile.DeviceFiltersSection, System.Web.Mobile, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="fullTrustAssemblies" type="System.Web.Configuration.FullTrustAssembliesSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="globalization" type="System.Web.Configuration.GlobalizationSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="healthMonitoring" type="System.Web.Configuration.HealthMonitoringSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="hostingEnvironment" type="System.Web.Configuration.HostingEnvironmentSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="httpCookies" type="System.Web.Configuration.HttpCookiesSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="httpModules" type="System.Web.Configuration.HttpModulesSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="httpRuntime" type="System.Web.Configuration.HttpRuntimeSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="identity" type="System.Web.Configuration.IdentitySection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="machineKey" type="System.Web.Configuration.MachineKeySection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="membership" type="System.Web.Configuration.MembershipSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="mobileControls" type="System.Web.UI.MobileControls.MobileControlsSection, System.Web.Mobile, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="pages" type="System.Web.Configuration.PagesSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" requirePermission="false" />
    <section name="partialTrustVisibleAssemblies" type="System.Web.Configuration.PartialTrustVisibleAssembliesSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="processModel" type="System.Web.Configuration.ProcessModelSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineOnly" allowLocation="false" />
    <section name="profile" type="System.Web.Configuration.ProfileSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="protocols" type="System.Web.Configuration.ProtocolsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToWebRoot" />
    <section name="roleManager" type="System.Web.Configuration.RoleManagerSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="securityPolicy" type="System.Web.Configuration.SecurityPolicySection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="sessionPageState" type="System.Web.Configuration.SessionPageStateSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="sessionState" type="System.Web.Configuration.SessionStateSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="siteMap" type="System.Web.Configuration.SiteMapSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="trace" type="System.Web.Configuration.TraceSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="trust" type="System.Web.Configuration.TrustSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="urlMappings" type="System.Web.Configuration.UrlMappingsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="webControls" type="System.Web.Configuration.WebControlsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="webParts" type="System.Web.Configuration.WebPartsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="webServices" type="System.Web.Services.Configuration.WebServicesSection, System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <section name="xhtmlConformance" type="System.Web.Configuration.XhtmlConformanceSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <sectionGroup name="caching" type="System.Web.Configuration.SystemWebCachingSectionGroup, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    <section name="cache" type="System.Web.Configuration.CacheSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="outputCache" type="System.Web.Configuration.OutputCacheSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="outputCacheSettings" type="System.Web.Configuration.OutputCacheSettingsSection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    <section name="sqlCacheDependency" type="System.Web.Configuration.SqlCacheDependencySection, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication" />
    </sectionGroup>
    </sectionGroup>
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
    <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
    <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
    </sectionGroup>
    </sectionGroup>
    </sectionGroup>
    <sectionGroup name="system.xaml.hosting" type="System.Xaml.Hosting.Configuration.XamlHostingSectionGroup, System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <section name="httpHandlers" type="System.Xaml.Hosting.Configuration.XamlHostingSection, System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </sectionGroup>
    <section name="system.webServer" type="System.Configuration.IgnoreSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </configSections>
    <configProtectedData defaultProvider="RsaProtectedConfigurationProvider">
    <providers>
    <add name="RsaProtectedConfigurationProvider" type="System.Configuration.RsaProtectedConfigurationProvider,System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" description="Uses RsaCryptoServiceProvider to encrypt and decrypt" keyContainerName="NetFrameworkConfigurationKey" cspProviderName="" useMachineContainer="true" useOAEP="false" />
    <add name="DataProtectionConfigurationProvider" type="System.Configuration.DpapiProtectedConfigurationProvider,System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" description="Uses CryptProtectData and CryptUnProtectData Windows APIs to encrypt and decrypt" useMachineProtection="true" keyEntropy="" />
    </providers>
    </configProtectedData>
    <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
    <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.7.5.0" />
    </dependentAssembly>
    <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
    <assemblyIdentity name="MySql.Data.Entity" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.7.5.0" />
    </dependentAssembly>
    <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
    <assemblyIdentity name="MySql.Web" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.7.5.0" />
    </dependentAssembly>
    </assemblyBinding>
    </runtime>
    <connectionStrings>
    <add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
    providerName="System.Data.SqlClient" />
    <add name="LocalMySqlServer" connectionString="" />
    <add name="OraAspNetConString" connectionString=" " />
    </connectionStrings>
    <system.data>
    <DbProviderFactories>
    <add name="Oracle Data Provider for .NET" invariant="Oracle.DataAccess.Client" description="Oracle Data Provider for .NET" type="Oracle.DataAccess.Client.OracleClientFactory, Oracle.DataAccess, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
    <add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
    <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
    <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
    </DbProviderFactories>
    </system.data>
    <system.serviceModel>
    <extensions>
    <behaviorExtensions>
    <add name="persistenceProvider" type="System.ServiceModel.Configuration.PersistenceProviderElement, System.WorkflowServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="workflowRuntime" type="System.ServiceModel.Configuration.WorkflowRuntimeElement, System.WorkflowServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="enableWebScript" type="System.ServiceModel.Configuration.WebScriptEnablingElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="webHttp" type="System.ServiceModel.Configuration.WebHttpElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="serviceDiscovery" type="System.ServiceModel.Discovery.Configuration.ServiceDiscoveryElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="endpointDiscovery" type="System.ServiceModel.Discovery.Configuration.EndpointDiscoveryElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="etwTracking" type="System.ServiceModel.Activities.Configuration.EtwTrackingBehaviorElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="routing" type="System.ServiceModel.Routing.Configuration.RoutingExtensionElement, System.ServiceModel.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="soapProcessing" type="System.ServiceModel.Routing.Configuration.SoapProcessingExtensionElement, System.ServiceModel.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="workflowIdle" type="System.ServiceModel.Activities.Configuration.WorkflowIdleElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="workflowUnhandledException" type="System.ServiceModel.Activities.Configuration.WorkflowUnhandledExceptionElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="bufferedReceive" type="System.ServiceModel.Activities.Configuration.BufferedReceiveElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="sendMessageChannelCache" type="System.ServiceModel.Activities.Configuration.SendMessageChannelCacheElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="sqlWorkflowInstanceStore" type="System.ServiceModel.Activities.Configuration.SqlWorkflowInstanceStoreElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="workflowInstanceManagement" type="System.ServiceModel.Activities.Configuration.WorkflowInstanceManagementElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior" type="Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior, Microsoft.VisualStudio.Diagnostics.ServiceModelSink, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </behaviorExtensions>
    <bindingElementExtensions>
    <add name="webMessageEncoding" type="System.ServiceModel.Configuration.WebMessageEncodingElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="context" type="System.ServiceModel.Configuration.ContextBindingElementExtensionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <add name="byteStreamMessageEncoding" type="System.ServiceModel.Configuration.ByteStreamMessageEncodingElement, System.ServiceModel.Channels, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="discoveryClient" type="System.ServiceModel.Discovery.Configuration.DiscoveryClientElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </bindingElementExtensions>
    <bindingExtensions>
    <add name="wsHttpContextBinding" type="System.ServiceModel.Configuration.WSHttpContextBindingCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <add name="netTcpContextBinding" type="System.ServiceModel.Configuration.NetTcpContextBindingCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <add name="webHttpBinding" type="System.ServiceModel.Configuration.WebHttpBindingCollectionElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="basicHttpContextBinding" type="System.ServiceModel.Configuration.BasicHttpContextBindingCollectionElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </bindingExtensions>
    <endpointExtensions>
    <add name="dynamicEndpoint" type="System.ServiceModel.Discovery.Configuration.DynamicEndpointCollectionElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="discoveryEndpoint" type="System.ServiceModel.Discovery.Configuration.DiscoveryEndpointCollectionElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="udpDiscoveryEndpoint" type="System.ServiceModel.Discovery.Configuration.UdpDiscoveryEndpointCollectionElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="announcementEndpoint" type="System.ServiceModel.Discovery.Configuration.AnnouncementEndpointCollectionElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="udpAnnouncementEndpoint" type="System.ServiceModel.Discovery.Configuration.UdpAnnouncementEndpointCollectionElement, System.ServiceModel.Discovery, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="workflowControlEndpoint" type="System.ServiceModel.Activities.Configuration.WorkflowControlEndpointCollectionElement, System.ServiceModel.Activities, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="webHttpEndpoint" type="System.ServiceModel.Configuration.WebHttpEndpointCollectionElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add name="webScriptEndpoint" type="System.ServiceModel.Configuration.WebScriptEndpointCollectionElement, System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </endpointExtensions>
    </extensions>
    <client>
    <metadata>
    <policyImporters>
    <extension type="System.ServiceModel.Channels.ContextBindingElementImporter, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" />
    </policyImporters>
    <wsdlImporters>
    <extension type="System.ServiceModel.Channels.ContextBindingElementImporter, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" />
    </wsdlImporters>
    </metadata>
    </client>
    <tracking>
    <profiles>
    <trackingProfile name="">
    <workflow activityDefinitionId="*">
    <workflowInstanceQueries>
    <workflowInstanceQuery>
    <states>
    <state name="*" />
    </states>
    </workflowInstanceQuery>
    </workflowInstanceQueries>
    <activityStateQueries>
    <activityStateQuery activityName="*">
    <states>
    <state name="Faulted" />
    </states>
    </activityStateQuery>
    </activityStateQueries>
    <faultPropagationQueries>
    <faultPropagationQuery faultSourceActivityName="*" faultHandlerActivityName="*" />
    </faultPropagationQueries>
    </workflow>
    </trackingProfile>
    </profiles>
    </tracking>
    <commonBehaviors>
    <endpointBehaviors>
    <Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior />
    </endpointBehaviors>
    <serviceBehaviors>
    <Microsoft.VisualStudio.Diagnostics.ServiceModelSink.Behavior />
    </serviceBehaviors>
    </commonBehaviors>
    </system.serviceModel>
    <system.web>
    <processModel autoConfig="true" />
    <httpHandlers />
    <membership>
    <providers>
    <add name="OracleMembershipProvider" type="Oracle.Web.Security.OracleMembershipProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" applicationName="" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
    <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
    <add name="MySQLMembershipProvider" type="MySql.Web.Security.MySQLMembershipProvider, MySql.Web, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" connectionStringName="LocalMySqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Clear" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
    </providers>
    </membership>
    <profile>
    <providers>
    <add name="OracleProfileProvider" type="Oracle.Web.Profile.OracleProfileProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" applicationName="" />
    <add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <add name="MySQLProfileProvider" type="MySql.Web.Profile.MySQLProfileProvider, MySql.Web, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" connectionStringName="LocalMySqlServer" applicationName="/" />
    </providers>
    </profile>
    <roleManager>
    <providers>
    <add name="OracleRoleProvider" type="Oracle.Web.Security.OracleRoleProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" applicationName="" />
    <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <add name="MySQLRoleProvider" type="MySql.Web.Security.MySQLRoleProvider, MySql.Web, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" connectionStringName="LocalMySqlServer" applicationName="/" />
    </providers>
    </roleManager>
    <siteMap>
    <providers>
    <add name="OracleSiteMapProvider" type="Oracle.Web.SiteMap.OracleSiteMapProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" applicationName="" securityTrimmingEnabled="true" />
    </providers>
    </siteMap>
    <webParts>
    <personalization>
    <providers>
    <add name="OraclePersonalizationProvider" type="Oracle.Web.Personalization.OraclePersonalizationProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" applicationName="" />
    </providers>
    </personalization>
    </webParts>
    <healthMonitoring>
    <providers>
    <add name="OracleWebEventProvider" type="Oracle.Web.Management.OracleWebEventProvider, Oracle.Web, Version=4.112.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" connectionStringName="OraAspNetConString" buffer="true" bufferMode="OracleNotification" />
    </providers>
    </healthMonitoring>
    <webServices>
    <protocols>
    <add name="HttpSoap"/>
    <add name="HttpPost"/>
    <add name="HttpGet"/>
    <add name="Documentation"/>
    </protocols>
    </webServices>
    </system.web>
    </configuration>
    Thanks,
    Mario

  • Error calling method of a PBNI object

    Dear All,
    We are facing issue of "Error calling method of a PBNI object". We are calling web services of WCF after some time to refresh data.We need help to solve this issue as we have to go live with client.
    It's really urgent!
    Regards
    Imran Zaheer

    Hi Chris,
    Thanks for your concern.
    1) PB version & Build?
         PB builder 12.5.2 build 5609
    2) MS-Window version?
         Windows 7 professional.
    3) Why are you using PBNI and what kind of class are you utilizing in that context?
         We are calling webservices through soap objects.
    4) What error(s) codes and messages are you getting?
        we get "Error calling method of a PBNI object"
    5) Why are you not using PB.net that supports WCF natively (I wish PB classic did)?
        For this we need to convert our whole application in PB.Net which is not feasible for us.
    6) Can you lightly describe your over-all architecture and application approach to Web Services?
         We have replace EASERVER with WCFserver and we are calling webservices for fetching( pulling) data from WCF server. It's a soft of 3 tier architecture.
    Regards .... Imran

  • ORA-06502: numeric or value error: character to number conversion error

    I met the following error when I ran Donald's PL/SQL function to_number_or_null. Could somebody here help me find the resolution? Thanks!
    SQL> create or replace FUNCTION to_number_or_null (
    2 aiv_number in varchar2 )
    3 return number is
    4 /*
    5 to_number_or_null.fun
    6 by Donald J. Bales on 12/15/2006
    7 An errorless to_number( ) method
    8 */
    9 begin
    10 return to_number(aiv_number);
    11 exception
    12 when INVALID_NUMBER then
    13 return NULL;
    14 end to_number_or_null;
    15 /
    Function created.
    SQL> select to_number_or_null('A') from dual;
    select to_number_or_null('A') from dual
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at "CAROL.TO_NUMBER_OR_NULL", line 10

    Only INVALID_NUMBER exception is handled and also VALUE_ERROR should be handeled. You can resolve it by handling VALUE_ERROR exception or by adding WHEN OTHERS as I did in following example.
    SQL> create or replace FUNCTION to_number_or_null (
      2      aiv_number in varchar2 )
      3      return number is
      4     /*
      5     to_number_or_null.fun
      6     by Donald J. Bales on 12/15/2006
      7     An errorless to_number( ) method
      8     */
      9  begin
    10     return to_number(aiv_number);
    11     exception
    12     when INVALID_NUMBER then
    13      return NULL;
    14     when OTHERS then
    15      return null;
    16     end to_number_or_null;
    17  /
    Function created.
    SQL> select to_number_or_null('A') from dual;
    TO_NUMBER_OR_NULL('A')
    ----------------------With kind regards
    Krystian Zieja

Maybe you are looking for